OSDN Git Service

stagefright-plugins: Clean up warnings for invalid format strings
[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_NDEBUG 0
19 #define LOG_TAG "SoftFFmpegVideo"
20 #include <utils/Log.h>
21
22 #include "SoftFFmpegVideo.h"
23 #include "FFmpegComponents.h"
24
25 #include <media/stagefright/foundation/ADebug.h>
26 #include <media/stagefright/foundation/AUtils.h>
27 #include <media/stagefright/foundation/hexdump.h>
28 #include <media/stagefright/MediaDefs.h>
29
30 #define DEBUG_PKT 0
31 #define DEBUG_FRM 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->lowres            = 0;
90     if(avctx->lowres > codec->max_lowres){
91         ALOGW("The maximum value for lowres supported by the decoder is %d",
92                 codec->max_lowres);
93         avctx->lowres= codec->max_lowres;
94     }
95     avctx->idct_algo         = 0;
96     avctx->skip_frame        = AVDISCARD_DEFAULT;
97     avctx->skip_idct         = AVDISCARD_DEFAULT;
98     avctx->skip_loop_filter  = AVDISCARD_ALL;
99     avctx->error_concealment = 3;
100     avctx->thread_count      = 0;
101
102     if(avctx->lowres) avctx->flags |= CODEC_FLAG_EMU_EDGE;
103     if (fast)   avctx->flags2 |= CODEC_FLAG2_FAST;
104     if(codec->capabilities & CODEC_CAP_DR1)
105         avctx->flags |= CODEC_FLAG_EMU_EDGE;
106 }
107
108 status_t SoftFFmpegVideo::initDecoder(enum AVCodecID codecID) {
109     status_t status;
110
111     status = initFFmpeg();
112     if (status != OK) {
113         return NO_INIT;
114     }
115     mFFmpegAlreadyInited = true;
116
117     mCtx = avcodec_alloc_context3(NULL);
118     if (!mCtx)
119     {
120         ALOGE("avcodec_alloc_context failed.");
121         return NO_MEMORY;
122     }
123
124     mCtx->codec_type = AVMEDIA_TYPE_VIDEO;
125     mCtx->codec_id = codecID;
126     mCtx->extradata_size = 0;
127     mCtx->extradata = NULL;
128     mCtx->width = mWidth;
129     mCtx->height = mHeight;
130     return OK;
131 }
132
133 void SoftFFmpegVideo::deInitDecoder() {
134     if (mCtx) {
135         if (avcodec_is_open(mCtx)) {
136             avcodec_flush_buffers(mCtx);
137         }
138         if (mCtx->extradata) {
139             av_free(mCtx->extradata);
140             mCtx->extradata = NULL;
141             mCtx->extradata_size = 0;
142         }
143         if (mCodecAlreadyOpened) {
144             avcodec_close(mCtx);
145             mCodecAlreadyOpened = false;
146         }
147         av_free(mCtx);
148         mCtx = NULL;
149     }
150     if (mFrame) {
151         av_frame_free(&mFrame);
152         mFrame = NULL;
153     }
154     if (mImgConvertCtx) {
155         sws_freeContext(mImgConvertCtx);
156         mImgConvertCtx = NULL;
157     }
158 }
159
160 OMX_ERRORTYPE SoftFFmpegVideo::internalGetParameter(
161         OMX_INDEXTYPE index, OMX_PTR params) {
162     //ALOGV("internalGetParameter index:0x%x", index);
163     switch (index) {
164         case OMX_IndexParamVideoWmv:
165         {
166             OMX_VIDEO_PARAM_WMVTYPE *profile =
167                 (OMX_VIDEO_PARAM_WMVTYPE *)params;
168
169             if (profile->nPortIndex != kInputPortIndex) {
170                 return OMX_ErrorUndefined;
171             }
172
173             profile->eFormat = OMX_VIDEO_WMVFormatUnused;
174
175             return OMX_ErrorNone;
176         }
177
178         case OMX_IndexParamVideoRv:
179         {
180             OMX_VIDEO_PARAM_RVTYPE *profile =
181                 (OMX_VIDEO_PARAM_RVTYPE *)params;
182
183             if (profile->nPortIndex != kInputPortIndex) {
184                 return OMX_ErrorUndefined;
185             }
186
187             profile->eFormat = OMX_VIDEO_RVFormatUnused;
188
189             return OMX_ErrorNone;
190         }
191
192         default:
193         {
194             if (index != (OMX_INDEXTYPE)OMX_IndexParamVideoFFmpeg) {
195                 return SoftVideoDecoderOMXComponent::internalGetParameter(index, params);
196             }
197
198             OMX_VIDEO_PARAM_FFMPEGTYPE *profile =
199                 (OMX_VIDEO_PARAM_FFMPEGTYPE *)params;
200
201             if (profile->nPortIndex != kInputPortIndex) {
202                 return OMX_ErrorUndefined;
203             }
204
205             profile->eCodecId = AV_CODEC_ID_NONE;
206             profile->nWidth   = 0;
207             profile->nHeight  = 0;
208
209             return OMX_ErrorNone;
210         }
211     }
212 }
213
214 OMX_ERRORTYPE SoftFFmpegVideo::isRoleSupported(
215                 const OMX_PARAM_COMPONENTROLETYPE *roleParams) {
216     for (size_t i = 0;
217          i < sizeof(kVideoComponents) / sizeof(kVideoComponents[0]);
218          ++i) {
219         if (strncmp((const char *)roleParams->cRole,
220                 kVideoComponents[i].mRole, OMX_MAX_STRINGNAME_SIZE - 1) == 0) {
221             return OMX_ErrorNone;
222         }
223     }
224     ALOGE("unsupported role: %s", (const char *)roleParams->cRole);
225     return OMX_ErrorUndefined;
226 }
227
228 OMX_ERRORTYPE SoftFFmpegVideo::internalSetParameter(
229         OMX_INDEXTYPE index, const OMX_PTR params) {
230     //ALOGV("internalSetParameter index:0x%x", index);
231     switch (index) {
232         case OMX_IndexParamStandardComponentRole:
233         {
234             const OMX_PARAM_COMPONENTROLETYPE *roleParams =
235                 (const OMX_PARAM_COMPONENTROLETYPE *)params;
236             return isRoleSupported(roleParams);
237         }
238
239         case OMX_IndexParamPortDefinition:
240         {
241             OMX_PARAM_PORTDEFINITIONTYPE *newParams =
242                 (OMX_PARAM_PORTDEFINITIONTYPE *)params;
243             OMX_VIDEO_PORTDEFINITIONTYPE *video_def = &newParams->format.video;
244             OMX_PARAM_PORTDEFINITIONTYPE *def = &editPortInfo(newParams->nPortIndex)->mDef;
245
246             uint32_t oldWidth = def->format.video.nFrameWidth;
247             uint32_t oldHeight = def->format.video.nFrameHeight;
248             uint32_t newWidth = video_def->nFrameWidth;
249             uint32_t newHeight = video_def->nFrameHeight;
250             if (newWidth != oldWidth || newHeight != oldHeight) {
251                 bool outputPort = (newParams->nPortIndex == kOutputPortIndex);
252                 if (outputPort) {
253                     ALOGV("OMX_IndexParamPortDefinition (output) width=%d height=%d", newWidth, newHeight);
254
255                     // only update (essentially crop) if size changes
256                     mWidth = newWidth;
257                     mHeight = newHeight;
258
259                     updatePortDefinitions(true, true);
260                     // reset buffer size based on frame size
261                     newParams->nBufferSize = def->nBufferSize;
262                 } else {
263                     // For input port, we only set nFrameWidth and nFrameHeight. Buffer size
264                     // is updated when configuring the output port using the max-frame-size,
265                     // though client can still request a larger size.
266                     ALOGV("OMX_IndexParamPortDefinition (input) width=%d height=%d", newWidth, newHeight);
267                     def->format.video.nFrameWidth = newWidth;
268                     def->format.video.nFrameHeight = newHeight;
269                     mCtx->width = newWidth;
270                     mCtx->height = newHeight;
271                 }
272             }
273             return SoftVideoDecoderOMXComponent::internalSetParameter(index, params);
274         }
275
276         case OMX_IndexParamVideoWmv:
277         {
278             OMX_VIDEO_PARAM_WMVTYPE *profile =
279                 (OMX_VIDEO_PARAM_WMVTYPE *)params;
280
281             if (profile->nPortIndex != kInputPortIndex) {
282                 return OMX_ErrorUndefined;
283             }
284
285             if (profile->eFormat == OMX_VIDEO_WMVFormat7) {
286                 mCtx->codec_id = AV_CODEC_ID_WMV1;
287             } else if (profile->eFormat == OMX_VIDEO_WMVFormat8) {
288                 mCtx->codec_id = AV_CODEC_ID_WMV2;
289             } else if (profile->eFormat == OMX_VIDEO_WMVFormat9) {
290                 mCtx->codec_id = AV_CODEC_ID_WMV3;
291             } else {
292                 mCtx->codec_id = AV_CODEC_ID_VC1;
293             }
294
295             return OMX_ErrorNone;
296         }
297
298         case OMX_IndexParamVideoRv:
299         {
300             OMX_VIDEO_PARAM_RVTYPE *profile =
301                 (OMX_VIDEO_PARAM_RVTYPE *)params;
302
303             if (profile->nPortIndex != kInputPortIndex) {
304                 return OMX_ErrorUndefined;
305             }
306
307             if (profile->eFormat == OMX_VIDEO_RVFormatG2) {
308                 mCtx->codec_id = AV_CODEC_ID_RV20;
309             } else if (profile->eFormat == OMX_VIDEO_RVFormat8) {
310                 mCtx->codec_id = AV_CODEC_ID_RV30;
311             } else if (profile->eFormat == OMX_VIDEO_RVFormat9) {
312                 mCtx->codec_id = AV_CODEC_ID_RV40;
313             } else {
314                 ALOGE("unsupported rv codec: 0x%x", profile->eFormat);
315                 return OMX_ErrorUndefined;
316             }
317
318             return OMX_ErrorNone;
319         }
320
321         default:
322         {
323             if (index != (OMX_INDEXTYPE)OMX_IndexParamVideoFFmpeg) {
324                 return SoftVideoDecoderOMXComponent::internalSetParameter(index, params);
325             }
326
327             OMX_VIDEO_PARAM_FFMPEGTYPE *profile =
328                 (OMX_VIDEO_PARAM_FFMPEGTYPE *)params;
329
330             if (profile->nPortIndex != kInputPortIndex) {
331                 return OMX_ErrorUndefined;
332             }
333
334             mCtx->codec_id = (enum AVCodecID)profile->eCodecId;
335             mCtx->width    = profile->nWidth;
336             mCtx->height   = profile->nHeight;
337
338             ALOGD("got OMX_IndexParamVideoFFmpeg, "
339                 "eCodecId:%d(%s), width:%u, height:%u",
340                 profile->eCodecId,
341                 avcodec_get_name(mCtx->codec_id),
342                 profile->nWidth,
343                 profile->nHeight);
344
345             return OMX_ErrorNone;
346         }
347     }
348 }
349
350 int32_t SoftFFmpegVideo::handleExtradata() {
351     List<BufferInfo *> &inQueue = getPortQueue(kInputPortIndex);
352     BufferInfo *inInfo = *inQueue.begin();
353     OMX_BUFFERHEADERTYPE *inHeader = inInfo->mHeader;
354
355     ALOGI("got extradata, ignore: %d, size: %u",
356             mIgnoreExtradata, inHeader->nFilledLen);
357     hexdump(inHeader->pBuffer + inHeader->nOffset, inHeader->nFilledLen);
358
359     if (mIgnoreExtradata) {
360         ALOGI("got extradata, size: %u, but ignore it", inHeader->nFilledLen);
361     } else {
362         if (!mExtradataReady) {
363             //if (mMode == MODE_H264)
364             //it is possible to receive multiple input buffer with OMX_BUFFERFLAG_CODECCONFIG flag.
365             //for example, H264, the first input buffer is SPS, and another is PPS!
366             int orig_extradata_size = mCtx->extradata_size;
367             mCtx->extradata_size += inHeader->nFilledLen;
368             mCtx->extradata = (uint8_t *)realloc(mCtx->extradata,
369                     mCtx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
370             if (!mCtx->extradata) {
371                 ALOGE("ffmpeg video decoder failed to alloc extradata memory.");
372                 return ERR_OOM;
373             }
374
375             memcpy(mCtx->extradata + orig_extradata_size,
376                     inHeader->pBuffer + inHeader->nOffset,
377                     inHeader->nFilledLen);
378             memset(mCtx->extradata + mCtx->extradata_size, 0,
379                     FF_INPUT_BUFFER_PADDING_SIZE);
380         }
381     }
382
383     inQueue.erase(inQueue.begin());
384     inInfo->mOwnedByUs = false;
385     notifyEmptyBufferDone(inHeader);
386
387     return ERR_OK;
388 }
389
390 int32_t SoftFFmpegVideo::openDecoder() {
391     if (mCodecAlreadyOpened) {
392         return ERR_OK;
393     }
394
395     if (!mExtradataReady) {
396         ALOGI("extradata is ready, size: %d", mCtx->extradata_size);
397         hexdump(mCtx->extradata, mCtx->extradata_size);
398         mExtradataReady = true;
399     }
400
401     //find decoder again as codec_id may have changed
402     mCtx->codec = avcodec_find_decoder(mCtx->codec_id);
403     if (!mCtx->codec) {
404         ALOGE("ffmpeg video decoder failed to find codec");
405         return ERR_CODEC_NOT_FOUND;
406     }
407
408     setDefaultCtx(mCtx, mCtx->codec);
409
410     ALOGD("begin to open ffmpeg decoder(%s) now",
411             avcodec_get_name(mCtx->codec_id));
412
413     int err = avcodec_open2(mCtx, mCtx->codec, NULL);
414     if (err < 0) {
415         ALOGE("ffmpeg video decoder failed to initialize. (%s)", av_err2str(err));
416         return ERR_DECODER_OPEN_FAILED;
417     }
418     mCodecAlreadyOpened = true;
419
420     ALOGD("open ffmpeg video decoder(%s) success",
421             avcodec_get_name(mCtx->codec_id));
422
423     mFrame = av_frame_alloc();
424     if (!mFrame) {
425         ALOGE("oom for video frame");
426         return ERR_OOM;
427     }
428
429     return ERR_OK;
430 }
431
432 void SoftFFmpegVideo::initPacket(AVPacket *pkt,
433         OMX_BUFFERHEADERTYPE *inHeader) {
434     memset(pkt, 0, sizeof(AVPacket));
435     av_init_packet(pkt);
436
437     if (inHeader) {
438         pkt->data = (uint8_t *)inHeader->pBuffer + inHeader->nOffset;
439         pkt->size = inHeader->nFilledLen;
440         pkt->pts = inHeader->nTimeStamp;
441         pkt->dts = inHeader->nTimeStamp;
442     } else {
443         pkt->data = NULL;
444         pkt->size = 0;
445         pkt->pts = AV_NOPTS_VALUE;
446     }
447
448 #if DEBUG_PKT
449     if (pkt->pts != AV_NOPTS_VALUE)
450     {
451         ALOGV("pkt size:%d, pts:%lld", pkt->size, pkt->pts);
452     } else {
453         ALOGV("pkt size:%d, pts:N/A", pkt->size);
454     }
455 #endif
456 }
457
458 int32_t SoftFFmpegVideo::decodeVideo() {
459     int len = 0, err = 0;
460     int gotPic = false;
461     int32_t ret = ERR_OK;
462     List<BufferInfo *> &inQueue = getPortQueue(kInputPortIndex);
463     BufferInfo *inInfo = NULL;
464     OMX_BUFFERHEADERTYPE *inHeader = NULL;
465
466     if (!inQueue.empty()) {
467         inInfo = *inQueue.begin();
468         if (inInfo != NULL)  {
469             inHeader = inInfo->mHeader;
470         }
471     }
472
473     if (mEOSStatus == INPUT_EOS_SEEN && (!inHeader || inHeader->nFilledLen == 0)
474         && !(mCtx->codec->capabilities & CODEC_CAP_DELAY)) {
475         return ERR_FLUSHED;
476     }
477
478     AVPacket pkt;
479     initPacket(&pkt, inHeader);
480
481     av_frame_unref(mFrame);
482
483     err = avcodec_decode_video2(mCtx, mFrame, &gotPic, &pkt);
484     av_packet_unref(&pkt);
485
486     if (err < 0) {
487         ALOGE("ffmpeg video decoder failed to decode frame. (%d)", err);
488         //don't send error to OMXCodec, skip!
489         ret = ERR_NO_FRM;
490     } else {
491         if (!gotPic) {
492             ALOGI("ffmpeg video decoder failed to get frame.");
493             //stop sending empty packets if the decoder is finished
494             if ((mEOSStatus != INPUT_DATA_AVAILABLE && (mCtx->codec->capabilities & CODEC_CAP_DELAY) &&
495                 !inHeader) || inHeader->nFilledLen == 0) {
496                 ret = ERR_FLUSHED;
497             } else {
498                 ret = ERR_NO_FRM;
499             }
500         } else {
501             ret = ERR_OK;
502         }
503     }
504
505     if (!inQueue.empty()) {
506         inQueue.erase(inQueue.begin());
507         if (inInfo) {
508             inInfo->mOwnedByUs = false;
509             notifyEmptyBufferDone(inHeader);
510         }
511     }
512
513     return ret;
514 }
515
516 int32_t SoftFFmpegVideo::drainOneOutputBuffer() {
517     List<BufferInfo *> &outQueue = getPortQueue(kOutputPortIndex);
518     BufferInfo *outInfo = *outQueue.begin();
519     OMX_BUFFERHEADERTYPE *outHeader = outInfo->mHeader;
520
521     uint8_t *data[4];
522     int linesize[4];
523
524     int64_t pts = AV_NOPTS_VALUE;
525     uint8_t *dst = outHeader->pBuffer;
526
527     uint32_t width = outputBufferWidth();
528     uint32_t height = outputBufferHeight();
529
530     data[0] = dst;
531     data[1] = dst + width * height;
532     data[2] = data[1] + (width / 2  * height / 2);
533     linesize[0] = width;
534     linesize[1] = width / 2;
535     linesize[2] = width / 2;
536
537     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);
538
539     int sws_flags = SWS_BICUBIC;
540     mImgConvertCtx = sws_getCachedContext(mImgConvertCtx,
541            mFrame->width, mFrame->height, (AVPixelFormat)mFrame->format, width, height,
542            AV_PIX_FMT_YUV420P, sws_flags, NULL, NULL, NULL);
543     if (mImgConvertCtx == NULL) {
544         ALOGE("Cannot initialize the conversion context");
545         return ERR_SWS_FAILED;
546     }
547     sws_scale(mImgConvertCtx, mFrame->data, mFrame->linesize,
548             0, height, data, linesize);
549
550     outHeader->nOffset = 0;
551     outHeader->nFilledLen = (outputBufferWidth() * outputBufferHeight() * 3) / 2;
552     outHeader->nFlags = 0;
553     if (mFrame->key_frame) {
554         outHeader->nFlags |= OMX_BUFFERFLAG_SYNCFRAME;
555     }
556
557     //process timestamps
558     if (decoder_reorder_pts == -1) {
559         pts = av_frame_get_best_effort_timestamp(mFrame);
560     } else 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