OSDN Git Service

Cleanup: remove C++ checking
[android-x86/external-stagefright-plugins.git] / omx / SoftFFmpegVideo.cpp
1 /*
2  * Copyright 2012 Michael Chen <omxcodec@gmail.com>
3  * Copyright 2015 The CyanogenMod Project
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #define LOG_TAG "SoftFFmpegVideo"
19 #include <utils/Log.h>
20
21 #include "SoftFFmpegVideo.h"
22 #include "FFmpegComponents.h"
23
24 #include <media/stagefright/foundation/ADebug.h>
25 #include <media/stagefright/foundation/AUtils.h>
26 #include <media/stagefright/foundation/hexdump.h>
27 #include <media/stagefright/MediaDefs.h>
28
29 #define DEBUG_PKT 0
30 #define DEBUG_FRM 0
31 #define DEBUG_EXTRADATA 0
32
33 static int decoder_reorder_pts = -1;
34
35 namespace android {
36
37 static const CodecProfileLevel kM4VProfileLevels[] = {
38     { OMX_VIDEO_MPEG4ProfileSimple, OMX_VIDEO_MPEG4Level5 },
39     { OMX_VIDEO_MPEG4ProfileAdvancedSimple, OMX_VIDEO_MPEG4Level5 },
40 };
41
42 SoftFFmpegVideo::SoftFFmpegVideo(
43         const char *name,
44         const char *componentRole,
45         OMX_VIDEO_CODINGTYPE codingType,
46         const CodecProfileLevel *profileLevels,
47         size_t numProfileLevels,
48         const OMX_CALLBACKTYPE *callbacks,
49         OMX_PTR appData,
50         OMX_COMPONENTTYPE **component,
51         enum AVCodecID codecID)
52     : SoftVideoDecoderOMXComponent(name, componentRole, codingType,
53             profileLevels, numProfileLevels, 352, 288, callbacks, appData, component),
54       mCodingType(codingType),
55       mFFmpegAlreadyInited(false),
56       mCodecAlreadyOpened(false),
57       mCtx(NULL),
58       mImgConvertCtx(NULL),
59       mFrame(NULL),
60       mEOSStatus(INPUT_DATA_AVAILABLE),
61       mExtradataReady(false),
62       mIgnoreExtradata(false),
63       mStride(320),
64       mSignalledError(false) {
65
66     ALOGD("SoftFFmpegVideo component: %s codingType=%d appData: %p", name, codingType, appData);
67
68     initPorts(
69             kNumInputBuffers,
70             1024 * 1024 /* inputBufferSize */,
71             kNumOutputBuffers,
72             name);
73
74     CHECK_EQ(initDecoder(codecID), (status_t)OK);
75 }
76
77 SoftFFmpegVideo::~SoftFFmpegVideo() {
78     ALOGV("~SoftFFmpegVideo");
79     deInitDecoder();
80     if (mFFmpegAlreadyInited) {
81         deInitFFmpeg();
82     }
83 }
84
85 void SoftFFmpegVideo::setDefaultCtx(AVCodecContext *avctx, const AVCodec *codec) {
86     int fast = 1;
87
88     avctx->workaround_bugs   = 1;
89     avctx->idct_algo         = 0;
90     avctx->skip_frame        = AVDISCARD_DEFAULT;
91     avctx->skip_idct         = AVDISCARD_DEFAULT;
92     avctx->skip_loop_filter  = AVDISCARD_ALL;
93     avctx->error_concealment = 3;
94     avctx->thread_count      = 0;
95
96     if (fast)   avctx->flags2 |= AV_CODEC_FLAG2_FAST;
97 #ifdef CODEC_FLAG_EMU_EDGE
98     if (codec->capabilities & AV_CODEC_CAP_DR1)
99         avctx->flags |= CODEC_FLAG_EMU_EDGE;
100 #endif
101 }
102
103 status_t SoftFFmpegVideo::initDecoder(enum AVCodecID codecID) {
104     status_t status;
105
106     status = initFFmpeg();
107     if (status != OK) {
108         return NO_INIT;
109     }
110     mFFmpegAlreadyInited = true;
111
112     mCtx = avcodec_alloc_context3(NULL);
113     if (!mCtx)
114     {
115         ALOGE("avcodec_alloc_context failed.");
116         return NO_MEMORY;
117     }
118
119     mCtx->codec_type = AVMEDIA_TYPE_VIDEO;
120     mCtx->codec_id = codecID;
121     mCtx->extradata_size = 0;
122     mCtx->extradata = NULL;
123     mCtx->width = mWidth;
124     mCtx->height = mHeight;
125     return OK;
126 }
127
128 void SoftFFmpegVideo::deInitDecoder() {
129     if (mCtx) {
130         if (avcodec_is_open(mCtx)) {
131             avcodec_flush_buffers(mCtx);
132         }
133         if (mCtx->extradata) {
134             av_free(mCtx->extradata);
135             mCtx->extradata = NULL;
136             mCtx->extradata_size = 0;
137         }
138         if (mCodecAlreadyOpened) {
139             avcodec_close(mCtx);
140             mCodecAlreadyOpened = false;
141         }
142         av_free(mCtx);
143         mCtx = NULL;
144     }
145     if (mFrame) {
146         av_frame_free(&mFrame);
147         mFrame = NULL;
148     }
149     if (mImgConvertCtx) {
150         sws_freeContext(mImgConvertCtx);
151         mImgConvertCtx = NULL;
152     }
153 }
154
155 OMX_ERRORTYPE SoftFFmpegVideo::internalGetParameter(
156         OMX_INDEXTYPE index, OMX_PTR params) {
157     //ALOGV("internalGetParameter index:0x%x", index);
158     switch (index) {
159         case OMX_IndexParamVideoWmv:
160         {
161             OMX_VIDEO_PARAM_WMVTYPE *profile =
162                 (OMX_VIDEO_PARAM_WMVTYPE *)params;
163
164             if (profile->nPortIndex != kInputPortIndex) {
165                 return OMX_ErrorUndefined;
166             }
167
168             profile->eFormat = OMX_VIDEO_WMVFormatUnused;
169
170             return OMX_ErrorNone;
171         }
172
173         case OMX_IndexParamVideoRv:
174         {
175             OMX_VIDEO_PARAM_RVTYPE *profile =
176                 (OMX_VIDEO_PARAM_RVTYPE *)params;
177
178             if (profile->nPortIndex != kInputPortIndex) {
179                 return OMX_ErrorUndefined;
180             }
181
182             profile->eFormat = OMX_VIDEO_RVFormatUnused;
183
184             return OMX_ErrorNone;
185         }
186
187         default:
188         {
189             if (index != (OMX_INDEXTYPE)OMX_IndexParamVideoFFmpeg) {
190                 return SoftVideoDecoderOMXComponent::internalGetParameter(index, params);
191             }
192
193             OMX_VIDEO_PARAM_FFMPEGTYPE *profile =
194                 (OMX_VIDEO_PARAM_FFMPEGTYPE *)params;
195
196             if (profile->nPortIndex != kInputPortIndex) {
197                 return OMX_ErrorUndefined;
198             }
199
200             profile->eCodecId = AV_CODEC_ID_NONE;
201             profile->nWidth   = 0;
202             profile->nHeight  = 0;
203
204             return OMX_ErrorNone;
205         }
206     }
207 }
208
209 OMX_ERRORTYPE SoftFFmpegVideo::isRoleSupported(
210                 const OMX_PARAM_COMPONENTROLETYPE *roleParams) {
211     for (size_t i = 0;
212          i < sizeof(kVideoComponents) / sizeof(kVideoComponents[0]);
213          ++i) {
214         if (strncmp((const char *)roleParams->cRole,
215                 kVideoComponents[i].mRole, OMX_MAX_STRINGNAME_SIZE - 1) == 0) {
216             return OMX_ErrorNone;
217         }
218     }
219     ALOGE("unsupported role: %s", (const char *)roleParams->cRole);
220     return OMX_ErrorUndefined;
221 }
222
223 OMX_ERRORTYPE SoftFFmpegVideo::internalSetParameter(
224         OMX_INDEXTYPE index, const OMX_PTR params) {
225     //ALOGV("internalSetParameter index:0x%x", index);
226     switch (index) {
227         case OMX_IndexParamStandardComponentRole:
228         {
229             const OMX_PARAM_COMPONENTROLETYPE *roleParams =
230                 (const OMX_PARAM_COMPONENTROLETYPE *)params;
231             return isRoleSupported(roleParams);
232         }
233
234         case OMX_IndexParamPortDefinition:
235         {
236             OMX_PARAM_PORTDEFINITIONTYPE *newParams =
237                 (OMX_PARAM_PORTDEFINITIONTYPE *)params;
238             OMX_VIDEO_PORTDEFINITIONTYPE *video_def = &newParams->format.video;
239             OMX_PARAM_PORTDEFINITIONTYPE *def = &editPortInfo(newParams->nPortIndex)->mDef;
240
241             uint32_t oldWidth = def->format.video.nFrameWidth;
242             uint32_t oldHeight = def->format.video.nFrameHeight;
243             uint32_t newWidth = video_def->nFrameWidth;
244             uint32_t newHeight = video_def->nFrameHeight;
245             if (newWidth != oldWidth || newHeight != oldHeight) {
246                 bool outputPort = (newParams->nPortIndex == kOutputPortIndex);
247                 if (outputPort) {
248                     ALOGV("OMX_IndexParamPortDefinition (output) width=%d height=%d", newWidth, newHeight);
249
250                     // only update (essentially crop) if size changes
251                     mWidth = newWidth;
252                     mHeight = newHeight;
253
254                     updatePortDefinitions(true, true);
255                     // reset buffer size based on frame size
256                     newParams->nBufferSize = def->nBufferSize;
257                 } else {
258                     // For input port, we only set nFrameWidth and nFrameHeight. Buffer size
259                     // is updated when configuring the output port using the max-frame-size,
260                     // though client can still request a larger size.
261                     ALOGV("OMX_IndexParamPortDefinition (input) width=%d height=%d", newWidth, newHeight);
262                     def->format.video.nFrameWidth = newWidth;
263                     def->format.video.nFrameHeight = newHeight;
264                     mCtx->width = newWidth;
265                     mCtx->height = newHeight;
266                 }
267             }
268             return SoftVideoDecoderOMXComponent::internalSetParameter(index, params);
269         }
270
271         case OMX_IndexParamVideoWmv:
272         {
273             OMX_VIDEO_PARAM_WMVTYPE *profile =
274                 (OMX_VIDEO_PARAM_WMVTYPE *)params;
275
276             if (profile->nPortIndex != kInputPortIndex) {
277                 return OMX_ErrorUndefined;
278             }
279
280             if (profile->eFormat == OMX_VIDEO_WMVFormat7) {
281                 mCtx->codec_id = AV_CODEC_ID_WMV1;
282             } else if (profile->eFormat == OMX_VIDEO_WMVFormat8) {
283                 mCtx->codec_id = AV_CODEC_ID_WMV2;
284             } else if (profile->eFormat == OMX_VIDEO_WMVFormat9) {
285                 mCtx->codec_id = AV_CODEC_ID_WMV3;
286             } else {
287                 mCtx->codec_id = AV_CODEC_ID_VC1;
288             }
289
290             return OMX_ErrorNone;
291         }
292
293         case OMX_IndexParamVideoRv:
294         {
295             OMX_VIDEO_PARAM_RVTYPE *profile =
296                 (OMX_VIDEO_PARAM_RVTYPE *)params;
297
298             if (profile->nPortIndex != kInputPortIndex) {
299                 return OMX_ErrorUndefined;
300             }
301
302             if (profile->eFormat == OMX_VIDEO_RVFormatG2) {
303                 mCtx->codec_id = AV_CODEC_ID_RV20;
304             } else if (profile->eFormat == OMX_VIDEO_RVFormat8) {
305                 mCtx->codec_id = AV_CODEC_ID_RV30;
306             } else if (profile->eFormat == OMX_VIDEO_RVFormat9) {
307                 mCtx->codec_id = AV_CODEC_ID_RV40;
308             } else {
309                 ALOGE("unsupported rv codec: 0x%x", profile->eFormat);
310                 return OMX_ErrorUndefined;
311             }
312
313             return OMX_ErrorNone;
314         }
315
316         default:
317         {
318             if (index != (OMX_INDEXTYPE)OMX_IndexParamVideoFFmpeg) {
319                 return SoftVideoDecoderOMXComponent::internalSetParameter(index, params);
320             }
321
322             OMX_VIDEO_PARAM_FFMPEGTYPE *profile =
323                 (OMX_VIDEO_PARAM_FFMPEGTYPE *)params;
324
325             if (profile->nPortIndex != kInputPortIndex) {
326                 return OMX_ErrorUndefined;
327             }
328
329             mCtx->codec_id = (enum AVCodecID)profile->eCodecId;
330             mCtx->width    = profile->nWidth;
331             mCtx->height   = profile->nHeight;
332
333             ALOGD("got OMX_IndexParamVideoFFmpeg, "
334                 "eCodecId:%d(%s), width:%u, height:%u",
335                 profile->eCodecId,
336                 avcodec_get_name(mCtx->codec_id),
337                 profile->nWidth,
338                 profile->nHeight);
339
340             return OMX_ErrorNone;
341         }
342     }
343 }
344
345 int32_t SoftFFmpegVideo::handleExtradata() {
346     List<BufferInfo *> &inQueue = getPortQueue(kInputPortIndex);
347     BufferInfo *inInfo = *inQueue.begin();
348     OMX_BUFFERHEADERTYPE *inHeader = inInfo->mHeader;
349
350 #if DEBUG_EXTRADATA
351     ALOGI("got extradata, ignore: %d, size: %u",
352             mIgnoreExtradata, inHeader->nFilledLen);
353     hexdump(inHeader->pBuffer + inHeader->nOffset, inHeader->nFilledLen);
354 #endif
355
356     if (mIgnoreExtradata) {
357         ALOGI("got extradata, size: %u, but ignore it", inHeader->nFilledLen);
358     } else {
359         if (!mExtradataReady) {
360             //if (mMode == MODE_H264)
361             //it is possible to receive multiple input buffer with OMX_BUFFERFLAG_CODECCONFIG flag.
362             //for example, H264, the first input buffer is SPS, and another is PPS!
363             int orig_extradata_size = mCtx->extradata_size;
364             mCtx->extradata_size += inHeader->nFilledLen;
365             mCtx->extradata = (uint8_t *)realloc(mCtx->extradata,
366                     mCtx->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
367             if (!mCtx->extradata) {
368                 ALOGE("ffmpeg video decoder failed to alloc extradata memory.");
369                 return ERR_OOM;
370             }
371
372             memcpy(mCtx->extradata + orig_extradata_size,
373                     inHeader->pBuffer + inHeader->nOffset,
374                     inHeader->nFilledLen);
375             memset(mCtx->extradata + mCtx->extradata_size, 0,
376                     AV_INPUT_BUFFER_PADDING_SIZE);
377         }
378     }
379
380     inQueue.erase(inQueue.begin());
381     inInfo->mOwnedByUs = false;
382     notifyEmptyBufferDone(inHeader);
383
384     return ERR_OK;
385 }
386
387 int32_t SoftFFmpegVideo::openDecoder() {
388     if (mCodecAlreadyOpened) {
389         return ERR_OK;
390     }
391
392     if (!mExtradataReady) {
393 #if DEBUG_EXTRADATA
394         ALOGI("extradata is ready, size: %d", mCtx->extradata_size);
395         hexdump(mCtx->extradata, mCtx->extradata_size);
396 #endif
397         mExtradataReady = true;
398     }
399
400     //find decoder again as codec_id may have changed
401     mCtx->codec = avcodec_find_decoder(mCtx->codec_id);
402     if (!mCtx->codec) {
403         ALOGE("ffmpeg video decoder failed to find codec");
404         return ERR_CODEC_NOT_FOUND;
405     }
406
407     setDefaultCtx(mCtx, mCtx->codec);
408
409     ALOGD("begin to open ffmpeg decoder(%s) now",
410             avcodec_get_name(mCtx->codec_id));
411
412     int err = avcodec_open2(mCtx, mCtx->codec, NULL);
413     if (err < 0) {
414         ALOGE("ffmpeg video decoder failed to initialize. (%s)", av_err2str(err));
415         return ERR_DECODER_OPEN_FAILED;
416     }
417     mCodecAlreadyOpened = true;
418
419     ALOGD("open ffmpeg video decoder(%s) success",
420             avcodec_get_name(mCtx->codec_id));
421
422     mFrame = av_frame_alloc();
423     if (!mFrame) {
424         ALOGE("oom for video frame");
425         return ERR_OOM;
426     }
427
428     return ERR_OK;
429 }
430
431 void SoftFFmpegVideo::initPacket(AVPacket *pkt,
432         OMX_BUFFERHEADERTYPE *inHeader) {
433     memset(pkt, 0, sizeof(AVPacket));
434     av_init_packet(pkt);
435
436     if (inHeader) {
437         pkt->data = (uint8_t *)inHeader->pBuffer + inHeader->nOffset;
438         pkt->size = inHeader->nFilledLen;
439         pkt->pts = inHeader->nTimeStamp;
440         pkt->dts = inHeader->nTimeStamp;
441     } else {
442         pkt->data = NULL;
443         pkt->size = 0;
444         pkt->pts = AV_NOPTS_VALUE;
445     }
446
447 #if DEBUG_PKT
448     if (pkt->pts != AV_NOPTS_VALUE)
449     {
450         ALOGV("pkt size:%d, pts:%lld", pkt->size, pkt->pts);
451     } else {
452         ALOGV("pkt size:%d, pts:N/A", pkt->size);
453     }
454 #endif
455 }
456
457 int32_t SoftFFmpegVideo::decodeVideo() {
458     int len = 0, err = 0;
459     int gotPic = false;
460     int32_t ret = ERR_OK;
461     List<BufferInfo *> &inQueue = getPortQueue(kInputPortIndex);
462     BufferInfo *inInfo = NULL;
463     OMX_BUFFERHEADERTYPE *inHeader = NULL;
464
465     if (!inQueue.empty()) {
466         inInfo = *inQueue.begin();
467         if (inInfo != NULL)  {
468             inHeader = inInfo->mHeader;
469         }
470     }
471
472     if (mEOSStatus == INPUT_EOS_SEEN && (!inHeader || inHeader->nFilledLen == 0)
473         && !(mCtx->codec->capabilities & AV_CODEC_CAP_DELAY)) {
474         return ERR_FLUSHED;
475     }
476
477     AVPacket pkt;
478     initPacket(&pkt, inHeader);
479
480     err = avcodec_decode_video2(mCtx, mFrame, &gotPic, &pkt);
481     av_packet_unref(&pkt);
482
483     if (err < 0) {
484         ALOGE("ffmpeg video decoder failed to decode frame. (%d)", err);
485         //don't send error to OMXCodec, skip!
486         ret = ERR_NO_FRM;
487     } else {
488         if (!gotPic) {
489             ALOGI("ffmpeg video decoder failed to get frame.");
490             //stop sending empty packets if the decoder is finished
491             if ((mEOSStatus != INPUT_DATA_AVAILABLE && (mCtx->codec->capabilities & AV_CODEC_CAP_DELAY) &&
492                 !inHeader) || inHeader->nFilledLen == 0) {
493                 ret = ERR_FLUSHED;
494             } else {
495                 ret = ERR_NO_FRM;
496             }
497         } else {
498             ret = ERR_OK;
499         }
500     }
501
502     if (!inQueue.empty()) {
503         inQueue.erase(inQueue.begin());
504         if (inInfo) {
505             inInfo->mOwnedByUs = false;
506             notifyEmptyBufferDone(inHeader);
507         }
508     }
509
510     return ret;
511 }
512
513 int32_t SoftFFmpegVideo::drainOneOutputBuffer() {
514     List<BufferInfo *> &outQueue = getPortQueue(kOutputPortIndex);
515     BufferInfo *outInfo = *outQueue.begin();
516     OMX_BUFFERHEADERTYPE *outHeader = outInfo->mHeader;
517
518     uint8_t *data[4];
519     int linesize[4];
520
521     int64_t pts = AV_NOPTS_VALUE;
522     uint8_t *dst = outHeader->pBuffer;
523
524     uint32_t width = outputBufferWidth();
525     uint32_t height = outputBufferHeight();
526
527     data[0] = dst;
528     data[1] = dst + width * height;
529     data[2] = data[1] + (width / 2  * height / 2);
530     linesize[0] = width;
531     linesize[1] = width / 2;
532     linesize[2] = width / 2;
533
534     ALOGV("drainOneOutputBuffer: frame_width=%d frame_height=%d width=%d height=%d ctx_width=%d ctx_height=%d", mFrame->width, mFrame->height, width, height, mCtx->width, mCtx->height);
535
536     int sws_flags = SWS_BICUBIC;
537     mImgConvertCtx = sws_getCachedContext(mImgConvertCtx,
538            mFrame->width, mFrame->height, (AVPixelFormat)mFrame->format, width, height,
539            AV_PIX_FMT_YUV420P, sws_flags, NULL, NULL, NULL);
540     if (mImgConvertCtx == NULL) {
541         ALOGE("Cannot initialize the conversion context");
542         return ERR_SWS_FAILED;
543     }
544     sws_scale(mImgConvertCtx, mFrame->data, mFrame->linesize,
545             0, height, data, linesize);
546
547     outHeader->nOffset = 0;
548     outHeader->nFilledLen = (outputBufferWidth() * outputBufferHeight() * 3) / 2;
549     outHeader->nFlags = 0;
550     if (mFrame->key_frame) {
551         outHeader->nFlags |= OMX_BUFFERFLAG_SYNCFRAME;
552     }
553
554     //process timestamps
555 #ifndef LIBAV_CONFIG_H
556     if (decoder_reorder_pts == -1) {
557         pts = av_frame_get_best_effort_timestamp(mFrame);
558     } else
559 #endif
560     if (decoder_reorder_pts) {
561         pts = mFrame->pkt_pts;
562     } else {
563         pts = mFrame->pkt_dts;
564     }
565
566     if (pts == AV_NOPTS_VALUE) {
567         pts = 0;
568     }
569     outHeader->nTimeStamp = pts; //FIXME pts is right???
570
571 #if DEBUG_FRM
572     ALOGV("mFrame pkt_pts: %lld pkt_dts: %lld used %lld", mFrame->pkt_pts, mFrame->pkt_dts, pts);
573 #endif
574
575     outQueue.erase(outQueue.begin());
576     outInfo->mOwnedByUs = false;
577     notifyFillBufferDone(outHeader);
578
579     return ERR_OK;
580 }
581
582 void SoftFFmpegVideo::drainEOSOutputBuffer() {
583     List<BufferInfo *> &outQueue = getPortQueue(kOutputPortIndex);
584     BufferInfo *outInfo = *outQueue.begin();
585     CHECK(outInfo != NULL);
586     outQueue.erase(outQueue.begin());
587     OMX_BUFFERHEADERTYPE *outHeader = outInfo->mHeader;
588
589     ALOGD("ffmpeg video decoder fill eos outbuf");
590
591     outHeader->nTimeStamp = 0;
592     outHeader->nFilledLen = 0;
593     outHeader->nFlags = OMX_BUFFERFLAG_EOS;
594
595     outInfo->mOwnedByUs = false;
596     notifyFillBufferDone(outHeader);
597
598     mEOSStatus = OUTPUT_FRAMES_FLUSHED;
599 }
600
601 void SoftFFmpegVideo::drainAllOutputBuffers() {
602     List<BufferInfo *> &outQueue = getPortQueue(kOutputPortIndex);
603    if (!mCodecAlreadyOpened) {
604         drainEOSOutputBuffer();
605         mEOSStatus = OUTPUT_FRAMES_FLUSHED;
606        return;
607    }
608
609     while (!outQueue.empty()) {
610         int32_t err = decodeVideo();
611         if (err < ERR_OK) {
612             notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL);
613             mSignalledError = true;
614             return;
615         } else if (err == ERR_FLUSHED) {
616             drainEOSOutputBuffer();
617             return;
618         } else if (err == ERR_NO_FRM) {
619             continue;
620         } else {
621             CHECK_EQ(err, ERR_OK);
622         }
623         if (drainOneOutputBuffer() != ERR_OK) {
624             notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL);
625             mSignalledError = true;
626             return;
627         }
628     }
629 }
630
631 bool SoftFFmpegVideo::handlePortSettingsChange() {
632     CropSettingsMode crop = kCropUnSet;
633     uint32_t width  = outputBufferWidth();
634     uint32_t height = outputBufferHeight();
635     if (width != (uint32_t)mCtx->width || height != (uint32_t)mCtx->height) {
636         crop = kCropSet;
637         if (mCropWidth != width || mCropHeight != height) {
638             mCropLeft = 0;
639             mCropTop = 0;
640             mCropWidth = width;
641             mCropHeight = height;
642             crop = kCropChanged;
643         }
644     }
645
646     bool portWillReset = false;
647     SoftVideoDecoderOMXComponent::handlePortSettingsChange(
648             &portWillReset, mCtx->width, mCtx->height, crop);
649     return portWillReset;
650 }
651
652 void SoftFFmpegVideo::onQueueFilled(OMX_U32 portIndex __unused) {
653     if (mSignalledError || mOutputPortSettingsChange != NONE) {
654         return;
655     }
656
657     if (mEOSStatus == OUTPUT_FRAMES_FLUSHED) {
658         return;
659     }
660
661     List<BufferInfo *> &inQueue = getPortQueue(kInputPortIndex);
662     List<BufferInfo *> &outQueue = getPortQueue(kOutputPortIndex);
663
664     while (((mEOSStatus != INPUT_DATA_AVAILABLE) || !inQueue.empty())
665             && !outQueue.empty()) {
666
667         if (mEOSStatus == INPUT_EOS_SEEN) {
668             drainAllOutputBuffers();
669             return;
670         }
671
672         BufferInfo *inInfo = *inQueue.begin();
673         if (inInfo == NULL) {
674             continue;
675         }
676         OMX_BUFFERHEADERTYPE *inHeader = inInfo->mHeader;
677         if (inHeader == NULL) {
678             continue;
679         }
680
681         if (inHeader->nFlags & OMX_BUFFERFLAG_EOS) {
682             mEOSStatus = INPUT_EOS_SEEN;
683             continue;
684         }
685
686         if (inHeader->nFlags & OMX_BUFFERFLAG_CODECCONFIG) {
687             ALOGD("ffmpeg got codecconfig buffer");
688             if (handleExtradata() != ERR_OK) {
689                 notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL);
690                 mSignalledError = true;
691             }
692             continue;
693         }
694
695         if (!mCodecAlreadyOpened) {
696             if (openDecoder() != ERR_OK) {
697                 notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL);
698                 mSignalledError = true;
699                 return;
700             }
701         }
702
703         int32_t err = decodeVideo();
704         if (err < ERR_OK) {
705             notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL);
706             mSignalledError = true;
707             return;
708         } else if (err == ERR_FLUSHED) {
709             drainEOSOutputBuffer();
710             return;
711         } else if (err == ERR_NO_FRM) {
712             continue;
713         } else {
714             CHECK_EQ(err, ERR_OK);
715         }
716
717         if (handlePortSettingsChange()) {
718             ALOGV("PORT RESET w=%d h=%d", mCtx->width, mCtx->height);
719             return;
720         }
721
722         if (drainOneOutputBuffer() != ERR_OK) {
723             notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL);
724             mSignalledError = true;
725             return;
726         }
727     }
728 }
729
730 void SoftFFmpegVideo::onPortFlushCompleted(OMX_U32 portIndex) {
731     ALOGV("ffmpeg video decoder flush port(%u)", portIndex);
732     if (portIndex == kInputPortIndex) {
733         if (mCtx && avcodec_is_open(mCtx)) {
734             //Make sure that the next buffer output does not still
735             //depend on fragments from the last one decoded.
736             avcodec_flush_buffers(mCtx);
737         }
738         mEOSStatus = INPUT_DATA_AVAILABLE;
739     }
740 }
741
742 void SoftFFmpegVideo::onReset() {
743     ALOGV("onReset()");
744     enum AVCodecID codecID = mCtx->codec_id;
745     deInitDecoder();
746     initDecoder(codecID);
747     SoftVideoDecoderOMXComponent::onReset();
748     mSignalledError = false;
749     mExtradataReady = false;
750     mEOSStatus = INPUT_DATA_AVAILABLE;
751 }
752
753 SoftOMXComponent* SoftFFmpegVideo::createSoftOMXComponent(
754         const char *name, const OMX_CALLBACKTYPE *callbacks,
755         OMX_PTR appData, OMX_COMPONENTTYPE **component) {
756
757     OMX_VIDEO_CODINGTYPE codingType = OMX_VIDEO_CodingAutoDetect;
758     char *componentRole = NULL;
759     enum AVCodecID codecID = AV_CODEC_ID_NONE;
760
761     for (size_t i = 0; i < kNumVideoComponents; ++i) {
762         if (!strcasecmp(name, kVideoComponents[i].mName)) {
763             componentRole = strdup(kVideoComponents[i].mRole);
764             codingType = kVideoComponents[i].mVideoCodingType;
765             codecID = kVideoComponents[i].mCodecID;
766             break;
767         }
768     }
769
770     if (componentRole == NULL) {
771         TRESPASS();
772     }
773
774     if (!strcmp(name, "OMX.ffmpeg.mpeg4.decoder")) {
775         return new SoftFFmpegVideo(name, componentRole, codingType,
776                 kM4VProfileLevels, ARRAY_SIZE(kM4VProfileLevels),
777                 callbacks, appData, component, codecID);
778     }
779
780     return new SoftFFmpegVideo(name, componentRole, codingType,
781                 NULL, 0,
782                 callbacks, appData, component, codecID);
783 }
784
785 }  // namespace android