OMXCodec.cpp revision 5c43188653b82a8b40bd25ded8b3b8c48d67e132
1/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//#define LOG_NDEBUG 0
18#define LOG_TAG "OMXCodec"
19#include <utils/Log.h>
20
21#include "include/AACDecoder.h"
22#include "include/AACEncoder.h"
23#include "include/AMRNBDecoder.h"
24#include "include/AMRNBEncoder.h"
25#include "include/AMRWBDecoder.h"
26#include "include/AMRWBEncoder.h"
27#include "include/AVCDecoder.h"
28#include "include/AVCEncoder.h"
29#include "include/G711Decoder.h"
30#include "include/M4vH263Decoder.h"
31#include "include/M4vH263Encoder.h"
32#include "include/MP3Decoder.h"
33#include "include/VorbisDecoder.h"
34#include "include/VPXDecoder.h"
35
36#include "include/ESDS.h"
37
38#include <binder/IServiceManager.h>
39#include <binder/MemoryDealer.h>
40#include <binder/ProcessState.h>
41#include <media/stagefright/foundation/ADebug.h>
42#include <media/IMediaPlayerService.h>
43#include <media/stagefright/HardwareAPI.h>
44#include <media/stagefright/MediaBuffer.h>
45#include <media/stagefright/MediaBufferGroup.h>
46#include <media/stagefright/MediaDefs.h>
47#include <media/stagefright/MediaExtractor.h>
48#include <media/stagefright/MetaData.h>
49#include <media/stagefright/OMXCodec.h>
50#include <media/stagefright/Utils.h>
51#include <utils/Vector.h>
52
53#include <OMX_Audio.h>
54#include <OMX_Component.h>
55
56#include "include/ThreadedSource.h"
57#include "include/avc_utils.h"
58
59namespace android {
60
61static const int OMX_QCOM_COLOR_FormatYVU420SemiPlanar = 0x7FA30C00;
62
63struct CodecInfo {
64    const char *mime;
65    const char *codec;
66};
67
68#define FACTORY_CREATE(name) \
69static sp<MediaSource> Make##name(const sp<MediaSource> &source) { \
70    return new name(source); \
71}
72
73#define FACTORY_CREATE_ENCODER(name) \
74static sp<MediaSource> Make##name(const sp<MediaSource> &source, const sp<MetaData> &meta) { \
75    return new name(source, meta); \
76}
77
78#define FACTORY_REF(name) { #name, Make##name },
79
80FACTORY_CREATE(MP3Decoder)
81FACTORY_CREATE(AMRNBDecoder)
82FACTORY_CREATE(AMRWBDecoder)
83FACTORY_CREATE(AACDecoder)
84FACTORY_CREATE(AVCDecoder)
85FACTORY_CREATE(G711Decoder)
86FACTORY_CREATE(M4vH263Decoder)
87FACTORY_CREATE(VorbisDecoder)
88FACTORY_CREATE(VPXDecoder)
89FACTORY_CREATE_ENCODER(AMRNBEncoder)
90FACTORY_CREATE_ENCODER(AMRWBEncoder)
91FACTORY_CREATE_ENCODER(AACEncoder)
92FACTORY_CREATE_ENCODER(AVCEncoder)
93FACTORY_CREATE_ENCODER(M4vH263Encoder)
94
95static sp<MediaSource> InstantiateSoftwareEncoder(
96        const char *name, const sp<MediaSource> &source,
97        const sp<MetaData> &meta) {
98    struct FactoryInfo {
99        const char *name;
100        sp<MediaSource> (*CreateFunc)(const sp<MediaSource> &, const sp<MetaData> &);
101    };
102
103    static const FactoryInfo kFactoryInfo[] = {
104        FACTORY_REF(AMRNBEncoder)
105        FACTORY_REF(AMRWBEncoder)
106        FACTORY_REF(AACEncoder)
107        FACTORY_REF(AVCEncoder)
108        FACTORY_REF(M4vH263Encoder)
109    };
110    for (size_t i = 0;
111         i < sizeof(kFactoryInfo) / sizeof(kFactoryInfo[0]); ++i) {
112        if (!strcmp(name, kFactoryInfo[i].name)) {
113            return (*kFactoryInfo[i].CreateFunc)(source, meta);
114        }
115    }
116
117    return NULL;
118}
119
120static sp<MediaSource> InstantiateSoftwareCodec(
121        const char *name, const sp<MediaSource> &source) {
122    struct FactoryInfo {
123        const char *name;
124        sp<MediaSource> (*CreateFunc)(const sp<MediaSource> &);
125    };
126
127    static const FactoryInfo kFactoryInfo[] = {
128        FACTORY_REF(MP3Decoder)
129        FACTORY_REF(AMRNBDecoder)
130        FACTORY_REF(AMRWBDecoder)
131        FACTORY_REF(AACDecoder)
132        FACTORY_REF(AVCDecoder)
133        FACTORY_REF(G711Decoder)
134        FACTORY_REF(M4vH263Decoder)
135        FACTORY_REF(VorbisDecoder)
136        FACTORY_REF(VPXDecoder)
137    };
138    for (size_t i = 0;
139         i < sizeof(kFactoryInfo) / sizeof(kFactoryInfo[0]); ++i) {
140        if (!strcmp(name, kFactoryInfo[i].name)) {
141            if (!strcmp(name, "VPXDecoder")) {
142                return new ThreadedSource(
143                        (*kFactoryInfo[i].CreateFunc)(source));
144            }
145            return (*kFactoryInfo[i].CreateFunc)(source);
146        }
147    }
148
149    return NULL;
150}
151
152#undef FACTORY_REF
153#undef FACTORY_CREATE
154
155static const CodecInfo kDecoderInfo[] = {
156    { MEDIA_MIMETYPE_IMAGE_JPEG, "OMX.TI.JPEG.decode" },
157//    { MEDIA_MIMETYPE_AUDIO_MPEG, "OMX.Nvidia.mp3.decoder" },
158//    { MEDIA_MIMETYPE_AUDIO_MPEG, "OMX.TI.MP3.decode" },
159    { MEDIA_MIMETYPE_AUDIO_MPEG, "MP3Decoder" },
160//    { MEDIA_MIMETYPE_AUDIO_AMR_NB, "OMX.TI.AMR.decode" },
161//    { MEDIA_MIMETYPE_AUDIO_AMR_NB, "OMX.Nvidia.amr.decoder" },
162    { MEDIA_MIMETYPE_AUDIO_AMR_NB, "AMRNBDecoder" },
163//    { MEDIA_MIMETYPE_AUDIO_AMR_NB, "OMX.Nvidia.amrwb.decoder" },
164    { MEDIA_MIMETYPE_AUDIO_AMR_WB, "OMX.TI.WBAMR.decode" },
165    { MEDIA_MIMETYPE_AUDIO_AMR_WB, "AMRWBDecoder" },
166//    { MEDIA_MIMETYPE_AUDIO_AAC, "OMX.Nvidia.aac.decoder" },
167    { MEDIA_MIMETYPE_AUDIO_AAC, "OMX.TI.AAC.decode" },
168    { MEDIA_MIMETYPE_AUDIO_AAC, "AACDecoder" },
169    { MEDIA_MIMETYPE_AUDIO_G711_ALAW, "G711Decoder" },
170    { MEDIA_MIMETYPE_AUDIO_G711_MLAW, "G711Decoder" },
171    { MEDIA_MIMETYPE_VIDEO_MPEG4, "OMX.Nvidia.mp4.decode" },
172    { MEDIA_MIMETYPE_VIDEO_MPEG4, "OMX.qcom.7x30.video.decoder.mpeg4" },
173    { MEDIA_MIMETYPE_VIDEO_MPEG4, "OMX.qcom.video.decoder.mpeg4" },
174    { MEDIA_MIMETYPE_VIDEO_MPEG4, "OMX.TI.Video.Decoder" },
175    { MEDIA_MIMETYPE_VIDEO_MPEG4, "OMX.SEC.MPEG4.Decoder" },
176    { MEDIA_MIMETYPE_VIDEO_MPEG4, "M4vH263Decoder" },
177    { MEDIA_MIMETYPE_VIDEO_H263, "OMX.Nvidia.h263.decode" },
178    { MEDIA_MIMETYPE_VIDEO_H263, "OMX.qcom.7x30.video.decoder.h263" },
179    { MEDIA_MIMETYPE_VIDEO_H263, "OMX.qcom.video.decoder.h263" },
180    { MEDIA_MIMETYPE_VIDEO_H263, "OMX.SEC.H263.Decoder" },
181    { MEDIA_MIMETYPE_VIDEO_H263, "M4vH263Decoder" },
182    { MEDIA_MIMETYPE_VIDEO_AVC, "OMX.Nvidia.h264.decode" },
183    { MEDIA_MIMETYPE_VIDEO_AVC, "OMX.qcom.7x30.video.decoder.avc" },
184    { MEDIA_MIMETYPE_VIDEO_AVC, "OMX.qcom.video.decoder.avc" },
185    { MEDIA_MIMETYPE_VIDEO_AVC, "OMX.TI.Video.Decoder" },
186    { MEDIA_MIMETYPE_VIDEO_AVC, "OMX.SEC.AVC.Decoder" },
187    { MEDIA_MIMETYPE_VIDEO_AVC, "AVCDecoder" },
188    { MEDIA_MIMETYPE_AUDIO_VORBIS, "VorbisDecoder" },
189    { MEDIA_MIMETYPE_VIDEO_VPX, "VPXDecoder" },
190};
191
192static const CodecInfo kEncoderInfo[] = {
193    { MEDIA_MIMETYPE_AUDIO_AMR_NB, "OMX.TI.AMR.encode" },
194    { MEDIA_MIMETYPE_AUDIO_AMR_NB, "AMRNBEncoder" },
195    { MEDIA_MIMETYPE_AUDIO_AMR_WB, "OMX.TI.WBAMR.encode" },
196    { MEDIA_MIMETYPE_AUDIO_AMR_WB, "AMRWBEncoder" },
197    { MEDIA_MIMETYPE_AUDIO_AAC, "OMX.TI.AAC.encode" },
198    { MEDIA_MIMETYPE_AUDIO_AAC, "AACEncoder" },
199    { MEDIA_MIMETYPE_VIDEO_MPEG4, "OMX.qcom.7x30.video.encoder.mpeg4" },
200    { MEDIA_MIMETYPE_VIDEO_MPEG4, "OMX.qcom.video.encoder.mpeg4" },
201    { MEDIA_MIMETYPE_VIDEO_MPEG4, "OMX.TI.Video.encoder" },
202    { MEDIA_MIMETYPE_VIDEO_MPEG4, "OMX.Nvidia.mp4.encoder" },
203    { MEDIA_MIMETYPE_VIDEO_MPEG4, "OMX.SEC.MPEG4.Encoder" },
204    { MEDIA_MIMETYPE_VIDEO_MPEG4, "M4vH263Encoder" },
205    { MEDIA_MIMETYPE_VIDEO_H263, "OMX.qcom.7x30.video.encoder.h263" },
206    { MEDIA_MIMETYPE_VIDEO_H263, "OMX.qcom.video.encoder.h263" },
207    { MEDIA_MIMETYPE_VIDEO_H263, "OMX.TI.Video.encoder" },
208    { MEDIA_MIMETYPE_VIDEO_H263, "OMX.Nvidia.h263.encoder" },
209    { MEDIA_MIMETYPE_VIDEO_H263, "OMX.SEC.H263.Encoder" },
210    { MEDIA_MIMETYPE_VIDEO_H263, "M4vH263Encoder" },
211    { MEDIA_MIMETYPE_VIDEO_AVC, "OMX.qcom.7x30.video.encoder.avc" },
212    { MEDIA_MIMETYPE_VIDEO_AVC, "OMX.qcom.video.encoder.avc" },
213    { MEDIA_MIMETYPE_VIDEO_AVC, "OMX.TI.Video.encoder" },
214    { MEDIA_MIMETYPE_VIDEO_AVC, "OMX.Nvidia.h264.encoder" },
215    { MEDIA_MIMETYPE_VIDEO_AVC, "OMX.SEC.AVC.Encoder" },
216    { MEDIA_MIMETYPE_VIDEO_AVC, "AVCEncoder" },
217};
218
219#undef OPTIONAL
220
221#define CODEC_LOGI(x, ...) LOGI("[%s] "x, mComponentName, ##__VA_ARGS__)
222#define CODEC_LOGV(x, ...) LOGV("[%s] "x, mComponentName, ##__VA_ARGS__)
223#define CODEC_LOGE(x, ...) LOGE("[%s] "x, mComponentName, ##__VA_ARGS__)
224
225struct OMXCodecObserver : public BnOMXObserver {
226    OMXCodecObserver() {
227    }
228
229    void setCodec(const sp<OMXCodec> &target) {
230        mTarget = target;
231    }
232
233    // from IOMXObserver
234    virtual void onMessage(const omx_message &msg) {
235        sp<OMXCodec> codec = mTarget.promote();
236
237        if (codec.get() != NULL) {
238            Mutex::Autolock autoLock(codec->mLock);
239            codec->on_message(msg);
240            codec.clear();
241        }
242    }
243
244protected:
245    virtual ~OMXCodecObserver() {}
246
247private:
248    wp<OMXCodec> mTarget;
249
250    OMXCodecObserver(const OMXCodecObserver &);
251    OMXCodecObserver &operator=(const OMXCodecObserver &);
252};
253
254static const char *GetCodec(const CodecInfo *info, size_t numInfos,
255                            const char *mime, int index) {
256    CHECK(index >= 0);
257    for(size_t i = 0; i < numInfos; ++i) {
258        if (!strcasecmp(mime, info[i].mime)) {
259            if (index == 0) {
260                return info[i].codec;
261            }
262
263            --index;
264        }
265    }
266
267    return NULL;
268}
269
270template<class T>
271static void InitOMXParams(T *params) {
272    params->nSize = sizeof(T);
273    params->nVersion.s.nVersionMajor = 1;
274    params->nVersion.s.nVersionMinor = 0;
275    params->nVersion.s.nRevision = 0;
276    params->nVersion.s.nStep = 0;
277}
278
279static bool IsSoftwareCodec(const char *componentName) {
280    if (!strncmp("OMX.", componentName, 4)) {
281        return false;
282    }
283
284    return true;
285}
286
287// A sort order in which non-OMX components are first,
288// followed by software codecs, and followed by all the others.
289static int CompareSoftwareCodecsFirst(
290        const String8 *elem1, const String8 *elem2) {
291    bool isNotOMX1 = strncmp(elem1->string(), "OMX.", 4);
292    bool isNotOMX2 = strncmp(elem2->string(), "OMX.", 4);
293
294    if (isNotOMX1) {
295        if (isNotOMX2) { return 0; }
296        return -1;
297    }
298    if (isNotOMX2) {
299        return 1;
300    }
301
302    bool isSoftwareCodec1 = IsSoftwareCodec(elem1->string());
303    bool isSoftwareCodec2 = IsSoftwareCodec(elem2->string());
304
305    if (isSoftwareCodec1) {
306        if (isSoftwareCodec2) { return 0; }
307        return -1;
308    }
309
310    if (isSoftwareCodec2) {
311        return 1;
312    }
313
314    return 0;
315}
316
317// static
318uint32_t OMXCodec::getComponentQuirks(
319        const char *componentName, bool isEncoder) {
320    uint32_t quirks = 0;
321
322    if (!strcmp(componentName, "OMX.Nvidia.amr.decoder") ||
323         !strcmp(componentName, "OMX.Nvidia.amrwb.decoder") ||
324         !strcmp(componentName, "OMX.Nvidia.aac.decoder") ||
325         !strcmp(componentName, "OMX.Nvidia.mp3.decoder")) {
326        quirks |= kDecoderLiesAboutNumberOfChannels;
327    }
328
329    if (!strcmp(componentName, "OMX.TI.MP3.decode")) {
330        quirks |= kNeedsFlushBeforeDisable;
331        quirks |= kDecoderLiesAboutNumberOfChannels;
332    }
333    if (!strcmp(componentName, "OMX.TI.AAC.decode")) {
334        quirks |= kNeedsFlushBeforeDisable;
335        quirks |= kRequiresFlushCompleteEmulation;
336        quirks |= kSupportsMultipleFramesPerInputBuffer;
337    }
338    if (!strncmp(componentName, "OMX.qcom.video.encoder.", 23)) {
339        quirks |= kRequiresLoadedToIdleAfterAllocation;
340        quirks |= kRequiresAllocateBufferOnInputPorts;
341        quirks |= kRequiresAllocateBufferOnOutputPorts;
342        if (!strncmp(componentName, "OMX.qcom.video.encoder.avc", 26)) {
343
344            // The AVC encoder advertises the size of output buffers
345            // based on the input video resolution and assumes
346            // the worst/least compression ratio is 0.5. It is found that
347            // sometimes, the output buffer size is larger than
348            // size advertised by the encoder.
349            quirks |= kRequiresLargerEncoderOutputBuffer;
350        }
351    }
352    if (!strncmp(componentName, "OMX.qcom.7x30.video.encoder.", 28)) {
353    }
354    if (!strncmp(componentName, "OMX.qcom.video.decoder.", 23)) {
355        quirks |= kRequiresAllocateBufferOnOutputPorts;
356        quirks |= kDefersOutputBufferAllocation;
357    }
358    if (!strncmp(componentName, "OMX.qcom.7x30.video.decoder.", 28)) {
359        quirks |= kRequiresAllocateBufferOnInputPorts;
360        quirks |= kRequiresAllocateBufferOnOutputPorts;
361        quirks |= kDefersOutputBufferAllocation;
362    }
363
364    if (!strncmp(componentName, "OMX.TI.", 7)) {
365        // Apparently I must not use OMX_UseBuffer on either input or
366        // output ports on any of the TI components or quote:
367        // "(I) may have unexpected problem (sic) which can be timing related
368        //  and hard to reproduce."
369
370        quirks |= kRequiresAllocateBufferOnInputPorts;
371        quirks |= kRequiresAllocateBufferOnOutputPorts;
372        if (!strncmp(componentName, "OMX.TI.Video.encoder", 20)) {
373            quirks |= kAvoidMemcopyInputRecordingFrames;
374        }
375    }
376
377    if (!strcmp(componentName, "OMX.TI.Video.Decoder")) {
378        quirks |= kInputBufferSizesAreBogus;
379    }
380
381    if (!strncmp(componentName, "OMX.SEC.", 8) && !isEncoder) {
382        // These output buffers contain no video data, just some
383        // opaque information that allows the overlay to display their
384        // contents.
385        quirks |= kOutputBuffersAreUnreadable;
386    }
387
388    return quirks;
389}
390
391// static
392void OMXCodec::findMatchingCodecs(
393        const char *mime,
394        bool createEncoder, const char *matchComponentName,
395        uint32_t flags,
396        Vector<String8> *matchingCodecs) {
397    matchingCodecs->clear();
398
399    for (int index = 0;; ++index) {
400        const char *componentName;
401
402        if (createEncoder) {
403            componentName = GetCodec(
404                    kEncoderInfo,
405                    sizeof(kEncoderInfo) / sizeof(kEncoderInfo[0]),
406                    mime, index);
407        } else {
408            componentName = GetCodec(
409                    kDecoderInfo,
410                    sizeof(kDecoderInfo) / sizeof(kDecoderInfo[0]),
411                    mime, index);
412        }
413
414        if (!componentName) {
415            break;
416        }
417
418        // If a specific codec is requested, skip the non-matching ones.
419        if (matchComponentName && strcmp(componentName, matchComponentName)) {
420            continue;
421        }
422
423        // When requesting software-only codecs, only push software codecs
424        // When requesting hardware-only codecs, only push hardware codecs
425        // When there is request neither for software-only nor for
426        // hardware-only codecs, push all codecs
427        if (((flags & kSoftwareCodecsOnly) &&   IsSoftwareCodec(componentName)) ||
428            ((flags & kHardwareCodecsOnly) &&  !IsSoftwareCodec(componentName)) ||
429            (!(flags & (kSoftwareCodecsOnly | kHardwareCodecsOnly)))) {
430
431            matchingCodecs->push(String8(componentName));
432        }
433    }
434
435    if (flags & kPreferSoftwareCodecs) {
436        matchingCodecs->sort(CompareSoftwareCodecsFirst);
437    }
438}
439
440// static
441sp<MediaSource> OMXCodec::Create(
442        const sp<IOMX> &omx,
443        const sp<MetaData> &meta, bool createEncoder,
444        const sp<MediaSource> &source,
445        const char *matchComponentName,
446        uint32_t flags,
447        const sp<ANativeWindow> &nativeWindow) {
448    const char *mime;
449    bool success = meta->findCString(kKeyMIMEType, &mime);
450    CHECK(success);
451
452    Vector<String8> matchingCodecs;
453    findMatchingCodecs(
454            mime, createEncoder, matchComponentName, flags, &matchingCodecs);
455
456    if (matchingCodecs.isEmpty()) {
457        return NULL;
458    }
459
460    sp<OMXCodecObserver> observer = new OMXCodecObserver;
461    IOMX::node_id node = 0;
462
463    const char *componentName;
464    for (size_t i = 0; i < matchingCodecs.size(); ++i) {
465        componentName = matchingCodecs[i].string();
466
467        sp<MediaSource> softwareCodec = createEncoder?
468            InstantiateSoftwareEncoder(componentName, source, meta):
469            InstantiateSoftwareCodec(componentName, source);
470
471        if (softwareCodec != NULL) {
472            LOGV("Successfully allocated software codec '%s'", componentName);
473
474            return softwareCodec;
475        }
476
477        LOGV("Attempting to allocate OMX node '%s'", componentName);
478
479        uint32_t quirks = getComponentQuirks(componentName, createEncoder);
480
481        if (!createEncoder
482                && (quirks & kOutputBuffersAreUnreadable)
483                && (flags & kClientNeedsFramebuffer)) {
484            if (strncmp(componentName, "OMX.SEC.", 8)) {
485                // For OMX.SEC.* decoders we can enable a special mode that
486                // gives the client access to the framebuffer contents.
487
488                LOGW("Component '%s' does not give the client access to "
489                     "the framebuffer contents. Skipping.",
490                     componentName);
491
492                continue;
493            }
494        }
495
496        status_t err = omx->allocateNode(componentName, observer, &node);
497        if (err == OK) {
498            LOGV("Successfully allocated OMX node '%s'", componentName);
499
500            sp<OMXCodec> codec = new OMXCodec(
501                    omx, node, quirks,
502                    createEncoder, mime, componentName,
503                    source, nativeWindow);
504
505            observer->setCodec(codec);
506
507            err = codec->configureCodec(meta, flags);
508
509            if (err == OK) {
510                return codec;
511            }
512
513            LOGV("Failed to configure codec '%s'", componentName);
514        }
515    }
516
517    return NULL;
518}
519
520status_t OMXCodec::configureCodec(const sp<MetaData> &meta, uint32_t flags) {
521    mIsMetaDataStoredInVideoBuffers = false;
522    if (flags & kStoreMetaDataInVideoBuffers) {
523        mIsMetaDataStoredInVideoBuffers = true;
524    }
525
526    mOnlySubmitOneBufferAtOneTime = false;
527    if (flags & kOnlySubmitOneInputBufferAtOneTime) {
528        mOnlySubmitOneBufferAtOneTime = true;
529    }
530
531    mEnableGrallocUsageProtected = false;
532    if (flags & kEnableGrallocUsageProtected) {
533        mEnableGrallocUsageProtected = true;
534    }
535    LOGV("configureCodec protected=%d", mEnableGrallocUsageProtected);
536
537    if (!(flags & kIgnoreCodecSpecificData)) {
538        uint32_t type;
539        const void *data;
540        size_t size;
541        if (meta->findData(kKeyESDS, &type, &data, &size)) {
542            ESDS esds((const char *)data, size);
543            CHECK_EQ(esds.InitCheck(), (status_t)OK);
544
545            const void *codec_specific_data;
546            size_t codec_specific_data_size;
547            esds.getCodecSpecificInfo(
548                    &codec_specific_data, &codec_specific_data_size);
549
550            addCodecSpecificData(
551                    codec_specific_data, codec_specific_data_size);
552        } else if (meta->findData(kKeyAVCC, &type, &data, &size)) {
553            // Parse the AVCDecoderConfigurationRecord
554
555            const uint8_t *ptr = (const uint8_t *)data;
556
557            CHECK(size >= 7);
558            CHECK_EQ((unsigned)ptr[0], 1u);  // configurationVersion == 1
559            uint8_t profile = ptr[1];
560            uint8_t level = ptr[3];
561
562            // There is decodable content out there that fails the following
563            // assertion, let's be lenient for now...
564            // CHECK((ptr[4] >> 2) == 0x3f);  // reserved
565
566            size_t lengthSize = 1 + (ptr[4] & 3);
567
568            // commented out check below as H264_QVGA_500_NO_AUDIO.3gp
569            // violates it...
570            // CHECK((ptr[5] >> 5) == 7);  // reserved
571
572            size_t numSeqParameterSets = ptr[5] & 31;
573
574            ptr += 6;
575            size -= 6;
576
577            for (size_t i = 0; i < numSeqParameterSets; ++i) {
578                CHECK(size >= 2);
579                size_t length = U16_AT(ptr);
580
581                ptr += 2;
582                size -= 2;
583
584                CHECK(size >= length);
585
586                addCodecSpecificData(ptr, length);
587
588                ptr += length;
589                size -= length;
590            }
591
592            CHECK(size >= 1);
593            size_t numPictureParameterSets = *ptr;
594            ++ptr;
595            --size;
596
597            for (size_t i = 0; i < numPictureParameterSets; ++i) {
598                CHECK(size >= 2);
599                size_t length = U16_AT(ptr);
600
601                ptr += 2;
602                size -= 2;
603
604                CHECK(size >= length);
605
606                addCodecSpecificData(ptr, length);
607
608                ptr += length;
609                size -= length;
610            }
611
612            CODEC_LOGI(
613                    "AVC profile = %d (%s), level = %d",
614                    (int)profile, AVCProfileToString(profile), level);
615
616            if (!strcmp(mComponentName, "OMX.TI.Video.Decoder")
617                && (profile != kAVCProfileBaseline || level > 30)) {
618                // This stream exceeds the decoder's capabilities. The decoder
619                // does not handle this gracefully and would clobber the heap
620                // and wreak havoc instead...
621
622                LOGE("Profile and/or level exceed the decoder's capabilities.");
623                return ERROR_UNSUPPORTED;
624            }
625        }
626    }
627
628    int32_t bitRate = 0;
629    if (mIsEncoder) {
630        CHECK(meta->findInt32(kKeyBitRate, &bitRate));
631    }
632    if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_NB, mMIME)) {
633        setAMRFormat(false /* isWAMR */, bitRate);
634    }
635    if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AMR_WB, mMIME)) {
636        setAMRFormat(true /* isWAMR */, bitRate);
637    }
638    if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_AAC, mMIME)) {
639        int32_t numChannels, sampleRate;
640        CHECK(meta->findInt32(kKeyChannelCount, &numChannels));
641        CHECK(meta->findInt32(kKeySampleRate, &sampleRate));
642
643        setAACFormat(numChannels, sampleRate, bitRate);
644    }
645
646    if (!strncasecmp(mMIME, "video/", 6)) {
647
648        if (mIsEncoder) {
649            setVideoInputFormat(mMIME, meta);
650        } else {
651            int32_t width, height;
652            bool success = meta->findInt32(kKeyWidth, &width);
653            success = success && meta->findInt32(kKeyHeight, &height);
654            CHECK(success);
655            status_t err = setVideoOutputFormat(
656                    mMIME, width, height);
657
658            if (err != OK) {
659                return err;
660            }
661        }
662    }
663
664    if (!strcasecmp(mMIME, MEDIA_MIMETYPE_IMAGE_JPEG)
665        && !strcmp(mComponentName, "OMX.TI.JPEG.decode")) {
666        OMX_COLOR_FORMATTYPE format =
667            OMX_COLOR_Format32bitARGB8888;
668            // OMX_COLOR_FormatYUV420PackedPlanar;
669            // OMX_COLOR_FormatCbYCrY;
670            // OMX_COLOR_FormatYUV411Planar;
671
672        int32_t width, height;
673        bool success = meta->findInt32(kKeyWidth, &width);
674        success = success && meta->findInt32(kKeyHeight, &height);
675
676        int32_t compressedSize;
677        success = success && meta->findInt32(
678                kKeyMaxInputSize, &compressedSize);
679
680        CHECK(success);
681        CHECK(compressedSize > 0);
682
683        setImageOutputFormat(format, width, height);
684        setJPEGInputFormat(width, height, (OMX_U32)compressedSize);
685    }
686
687    int32_t maxInputSize;
688    if (meta->findInt32(kKeyMaxInputSize, &maxInputSize)) {
689        setMinBufferSize(kPortIndexInput, (OMX_U32)maxInputSize);
690    }
691
692    if (!strcmp(mComponentName, "OMX.TI.AMR.encode")
693        || !strcmp(mComponentName, "OMX.TI.WBAMR.encode")
694        || !strcmp(mComponentName, "OMX.TI.AAC.encode")) {
695        setMinBufferSize(kPortIndexOutput, 8192);  // XXX
696    }
697
698    initOutputFormat(meta);
699
700    if ((flags & kClientNeedsFramebuffer)
701            && !strncmp(mComponentName, "OMX.SEC.", 8)) {
702        OMX_INDEXTYPE index;
703
704        status_t err =
705            mOMX->getExtensionIndex(
706                    mNode,
707                    "OMX.SEC.index.ThumbnailMode",
708                    &index);
709
710        if (err != OK) {
711            return err;
712        }
713
714        OMX_BOOL enable = OMX_TRUE;
715        err = mOMX->setConfig(mNode, index, &enable, sizeof(enable));
716
717        if (err != OK) {
718            CODEC_LOGE("setConfig('OMX.SEC.index.ThumbnailMode') "
719                       "returned error 0x%08x", err);
720
721            return err;
722        }
723
724        mQuirks &= ~kOutputBuffersAreUnreadable;
725    }
726
727    if (mNativeWindow != NULL
728        && !mIsEncoder
729        && !strncasecmp(mMIME, "video/", 6)
730        && !strncmp(mComponentName, "OMX.", 4)) {
731        status_t err = initNativeWindow();
732        if (err != OK) {
733            return err;
734        }
735    }
736
737    return OK;
738}
739
740void OMXCodec::setMinBufferSize(OMX_U32 portIndex, OMX_U32 size) {
741    OMX_PARAM_PORTDEFINITIONTYPE def;
742    InitOMXParams(&def);
743    def.nPortIndex = portIndex;
744
745    status_t err = mOMX->getParameter(
746            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
747    CHECK_EQ(err, (status_t)OK);
748
749    if ((portIndex == kPortIndexInput && (mQuirks & kInputBufferSizesAreBogus))
750        || (def.nBufferSize < size)) {
751        def.nBufferSize = size;
752    }
753
754    err = mOMX->setParameter(
755            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
756    CHECK_EQ(err, (status_t)OK);
757
758    err = mOMX->getParameter(
759            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
760    CHECK_EQ(err, (status_t)OK);
761
762    // Make sure the setting actually stuck.
763    if (portIndex == kPortIndexInput
764            && (mQuirks & kInputBufferSizesAreBogus)) {
765        CHECK_EQ(def.nBufferSize, size);
766    } else {
767        CHECK(def.nBufferSize >= size);
768    }
769}
770
771status_t OMXCodec::setVideoPortFormatType(
772        OMX_U32 portIndex,
773        OMX_VIDEO_CODINGTYPE compressionFormat,
774        OMX_COLOR_FORMATTYPE colorFormat) {
775    OMX_VIDEO_PARAM_PORTFORMATTYPE format;
776    InitOMXParams(&format);
777    format.nPortIndex = portIndex;
778    format.nIndex = 0;
779    bool found = false;
780
781    OMX_U32 index = 0;
782    for (;;) {
783        format.nIndex = index;
784        status_t err = mOMX->getParameter(
785                mNode, OMX_IndexParamVideoPortFormat,
786                &format, sizeof(format));
787
788        if (err != OK) {
789            return err;
790        }
791
792        // The following assertion is violated by TI's video decoder.
793        // CHECK_EQ(format.nIndex, index);
794
795#if 1
796        CODEC_LOGV("portIndex: %ld, index: %ld, eCompressionFormat=%d eColorFormat=%d",
797             portIndex,
798             index, format.eCompressionFormat, format.eColorFormat);
799#endif
800
801        if (!strcmp("OMX.TI.Video.encoder", mComponentName)) {
802            if (portIndex == kPortIndexInput
803                    && colorFormat == format.eColorFormat) {
804                // eCompressionFormat does not seem right.
805                found = true;
806                break;
807            }
808            if (portIndex == kPortIndexOutput
809                    && compressionFormat == format.eCompressionFormat) {
810                // eColorFormat does not seem right.
811                found = true;
812                break;
813            }
814        }
815
816        if (format.eCompressionFormat == compressionFormat
817            && format.eColorFormat == colorFormat) {
818            found = true;
819            break;
820        }
821
822        ++index;
823    }
824
825    if (!found) {
826        return UNKNOWN_ERROR;
827    }
828
829    CODEC_LOGV("found a match.");
830    status_t err = mOMX->setParameter(
831            mNode, OMX_IndexParamVideoPortFormat,
832            &format, sizeof(format));
833
834    return err;
835}
836
837static size_t getFrameSize(
838        OMX_COLOR_FORMATTYPE colorFormat, int32_t width, int32_t height) {
839    switch (colorFormat) {
840        case OMX_COLOR_FormatYCbYCr:
841        case OMX_COLOR_FormatCbYCrY:
842            return width * height * 2;
843
844        case OMX_COLOR_FormatYUV420Planar:
845        case OMX_COLOR_FormatYUV420SemiPlanar:
846            return (width * height * 3) / 2;
847
848        default:
849            CHECK(!"Should not be here. Unsupported color format.");
850            break;
851    }
852}
853
854status_t OMXCodec::findTargetColorFormat(
855        const sp<MetaData>& meta, OMX_COLOR_FORMATTYPE *colorFormat) {
856    LOGV("findTargetColorFormat");
857    CHECK(mIsEncoder);
858
859    *colorFormat = OMX_COLOR_FormatYUV420SemiPlanar;
860    int32_t targetColorFormat;
861    if (meta->findInt32(kKeyColorFormat, &targetColorFormat)) {
862        *colorFormat = (OMX_COLOR_FORMATTYPE) targetColorFormat;
863    } else {
864        if (!strcasecmp("OMX.TI.Video.encoder", mComponentName)) {
865            *colorFormat = OMX_COLOR_FormatYCbYCr;
866        }
867    }
868
869    // Check whether the target color format is supported.
870    return isColorFormatSupported(*colorFormat, kPortIndexInput);
871}
872
873status_t OMXCodec::isColorFormatSupported(
874        OMX_COLOR_FORMATTYPE colorFormat, int portIndex) {
875    LOGV("isColorFormatSupported: %d", static_cast<int>(colorFormat));
876
877    // Enumerate all the color formats supported by
878    // the omx component to see whether the given
879    // color format is supported.
880    OMX_VIDEO_PARAM_PORTFORMATTYPE portFormat;
881    InitOMXParams(&portFormat);
882    portFormat.nPortIndex = portIndex;
883    OMX_U32 index = 0;
884    portFormat.nIndex = index;
885    while (true) {
886        if (OMX_ErrorNone != mOMX->getParameter(
887                mNode, OMX_IndexParamVideoPortFormat,
888                &portFormat, sizeof(portFormat))) {
889            break;
890        }
891        // Make sure that omx component does not overwrite
892        // the incremented index (bug 2897413).
893        CHECK_EQ(index, portFormat.nIndex);
894        if ((portFormat.eColorFormat == colorFormat)) {
895            LOGV("Found supported color format: %d", portFormat.eColorFormat);
896            return OK;  // colorFormat is supported!
897        }
898        ++index;
899        portFormat.nIndex = index;
900
901        // OMX Spec defines less than 50 color formats
902        // 1000 is more than enough for us to tell whether the omx
903        // component in question is buggy or not.
904        if (index >= 1000) {
905            LOGE("More than %ld color formats are supported???", index);
906            break;
907        }
908    }
909
910    LOGE("color format %d is not supported", colorFormat);
911    return UNKNOWN_ERROR;
912}
913
914void OMXCodec::setVideoInputFormat(
915        const char *mime, const sp<MetaData>& meta) {
916
917    int32_t width, height, frameRate, bitRate, stride, sliceHeight;
918    bool success = meta->findInt32(kKeyWidth, &width);
919    success = success && meta->findInt32(kKeyHeight, &height);
920    success = success && meta->findInt32(kKeyFrameRate, &frameRate);
921    success = success && meta->findInt32(kKeyBitRate, &bitRate);
922    success = success && meta->findInt32(kKeyStride, &stride);
923    success = success && meta->findInt32(kKeySliceHeight, &sliceHeight);
924    CHECK(success);
925    CHECK(stride != 0);
926
927    OMX_VIDEO_CODINGTYPE compressionFormat = OMX_VIDEO_CodingUnused;
928    if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_AVC, mime)) {
929        compressionFormat = OMX_VIDEO_CodingAVC;
930    } else if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_MPEG4, mime)) {
931        compressionFormat = OMX_VIDEO_CodingMPEG4;
932    } else if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_H263, mime)) {
933        compressionFormat = OMX_VIDEO_CodingH263;
934    } else {
935        LOGE("Not a supported video mime type: %s", mime);
936        CHECK(!"Should not be here. Not a supported video mime type.");
937    }
938
939    OMX_COLOR_FORMATTYPE colorFormat;
940    CHECK_EQ((status_t)OK, findTargetColorFormat(meta, &colorFormat));
941
942    status_t err;
943    OMX_PARAM_PORTDEFINITIONTYPE def;
944    OMX_VIDEO_PORTDEFINITIONTYPE *video_def = &def.format.video;
945
946    //////////////////////// Input port /////////////////////////
947    CHECK_EQ(setVideoPortFormatType(
948            kPortIndexInput, OMX_VIDEO_CodingUnused,
949            colorFormat), (status_t)OK);
950
951    InitOMXParams(&def);
952    def.nPortIndex = kPortIndexInput;
953
954    err = mOMX->getParameter(
955            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
956    CHECK_EQ(err, (status_t)OK);
957
958    def.nBufferSize = getFrameSize(colorFormat,
959            stride > 0? stride: -stride, sliceHeight);
960
961    CHECK_EQ((int)def.eDomain, (int)OMX_PortDomainVideo);
962
963    video_def->nFrameWidth = width;
964    video_def->nFrameHeight = height;
965    video_def->nStride = stride;
966    video_def->nSliceHeight = sliceHeight;
967    video_def->xFramerate = (frameRate << 16);  // Q16 format
968    video_def->eCompressionFormat = OMX_VIDEO_CodingUnused;
969    video_def->eColorFormat = colorFormat;
970
971    err = mOMX->setParameter(
972            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
973    CHECK_EQ(err, (status_t)OK);
974
975    //////////////////////// Output port /////////////////////////
976    CHECK_EQ(setVideoPortFormatType(
977            kPortIndexOutput, compressionFormat, OMX_COLOR_FormatUnused),
978            (status_t)OK);
979    InitOMXParams(&def);
980    def.nPortIndex = kPortIndexOutput;
981
982    err = mOMX->getParameter(
983            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
984
985    CHECK_EQ(err, (status_t)OK);
986    CHECK_EQ((int)def.eDomain, (int)OMX_PortDomainVideo);
987
988    video_def->nFrameWidth = width;
989    video_def->nFrameHeight = height;
990    video_def->xFramerate = 0;      // No need for output port
991    video_def->nBitrate = bitRate;  // Q16 format
992    video_def->eCompressionFormat = compressionFormat;
993    video_def->eColorFormat = OMX_COLOR_FormatUnused;
994    if (mQuirks & kRequiresLargerEncoderOutputBuffer) {
995        // Increases the output buffer size
996        def.nBufferSize = ((def.nBufferSize * 3) >> 1);
997    }
998
999    err = mOMX->setParameter(
1000            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
1001    CHECK_EQ(err, (status_t)OK);
1002
1003    /////////////////// Codec-specific ////////////////////////
1004    switch (compressionFormat) {
1005        case OMX_VIDEO_CodingMPEG4:
1006        {
1007            CHECK_EQ(setupMPEG4EncoderParameters(meta), (status_t)OK);
1008            break;
1009        }
1010
1011        case OMX_VIDEO_CodingH263:
1012            CHECK_EQ(setupH263EncoderParameters(meta), (status_t)OK);
1013            break;
1014
1015        case OMX_VIDEO_CodingAVC:
1016        {
1017            CHECK_EQ(setupAVCEncoderParameters(meta), (status_t)OK);
1018            break;
1019        }
1020
1021        default:
1022            CHECK(!"Support for this compressionFormat to be implemented.");
1023            break;
1024    }
1025}
1026
1027static OMX_U32 setPFramesSpacing(int32_t iFramesInterval, int32_t frameRate) {
1028    if (iFramesInterval < 0) {
1029        return 0xFFFFFFFF;
1030    } else if (iFramesInterval == 0) {
1031        return 0;
1032    }
1033    OMX_U32 ret = frameRate * iFramesInterval;
1034    CHECK(ret > 1);
1035    return ret;
1036}
1037
1038status_t OMXCodec::setupErrorCorrectionParameters() {
1039    OMX_VIDEO_PARAM_ERRORCORRECTIONTYPE errorCorrectionType;
1040    InitOMXParams(&errorCorrectionType);
1041    errorCorrectionType.nPortIndex = kPortIndexOutput;
1042
1043    status_t err = mOMX->getParameter(
1044            mNode, OMX_IndexParamVideoErrorCorrection,
1045            &errorCorrectionType, sizeof(errorCorrectionType));
1046    if (err != OK) {
1047        LOGW("Error correction param query is not supported");
1048        return OK;  // Optional feature. Ignore this failure
1049    }
1050
1051    errorCorrectionType.bEnableHEC = OMX_FALSE;
1052    errorCorrectionType.bEnableResync = OMX_TRUE;
1053    errorCorrectionType.nResynchMarkerSpacing = 256;
1054    errorCorrectionType.bEnableDataPartitioning = OMX_FALSE;
1055    errorCorrectionType.bEnableRVLC = OMX_FALSE;
1056
1057    err = mOMX->setParameter(
1058            mNode, OMX_IndexParamVideoErrorCorrection,
1059            &errorCorrectionType, sizeof(errorCorrectionType));
1060    if (err != OK) {
1061        LOGW("Error correction param configuration is not supported");
1062    }
1063
1064    // Optional feature. Ignore the failure.
1065    return OK;
1066}
1067
1068status_t OMXCodec::setupBitRate(int32_t bitRate) {
1069    OMX_VIDEO_PARAM_BITRATETYPE bitrateType;
1070    InitOMXParams(&bitrateType);
1071    bitrateType.nPortIndex = kPortIndexOutput;
1072
1073    status_t err = mOMX->getParameter(
1074            mNode, OMX_IndexParamVideoBitrate,
1075            &bitrateType, sizeof(bitrateType));
1076    CHECK_EQ(err, (status_t)OK);
1077
1078    bitrateType.eControlRate = OMX_Video_ControlRateVariable;
1079    bitrateType.nTargetBitrate = bitRate;
1080
1081    err = mOMX->setParameter(
1082            mNode, OMX_IndexParamVideoBitrate,
1083            &bitrateType, sizeof(bitrateType));
1084    CHECK_EQ(err, (status_t)OK);
1085    return OK;
1086}
1087
1088status_t OMXCodec::getVideoProfileLevel(
1089        const sp<MetaData>& meta,
1090        const CodecProfileLevel& defaultProfileLevel,
1091        CodecProfileLevel &profileLevel) {
1092    CODEC_LOGV("Default profile: %ld, level %ld",
1093            defaultProfileLevel.mProfile, defaultProfileLevel.mLevel);
1094
1095    // Are the default profile and level overwriten?
1096    int32_t profile, level;
1097    if (!meta->findInt32(kKeyVideoProfile, &profile)) {
1098        profile = defaultProfileLevel.mProfile;
1099    }
1100    if (!meta->findInt32(kKeyVideoLevel, &level)) {
1101        level = defaultProfileLevel.mLevel;
1102    }
1103    CODEC_LOGV("Target profile: %d, level: %d", profile, level);
1104
1105    // Are the target profile and level supported by the encoder?
1106    OMX_VIDEO_PARAM_PROFILELEVELTYPE param;
1107    InitOMXParams(&param);
1108    param.nPortIndex = kPortIndexOutput;
1109    for (param.nProfileIndex = 0;; ++param.nProfileIndex) {
1110        status_t err = mOMX->getParameter(
1111                mNode, OMX_IndexParamVideoProfileLevelQuerySupported,
1112                &param, sizeof(param));
1113
1114        if (err != OK) break;
1115
1116        int32_t supportedProfile = static_cast<int32_t>(param.eProfile);
1117        int32_t supportedLevel = static_cast<int32_t>(param.eLevel);
1118        CODEC_LOGV("Supported profile: %d, level %d",
1119            supportedProfile, supportedLevel);
1120
1121        if (profile == supportedProfile &&
1122            level <= supportedLevel) {
1123            // We can further check whether the level is a valid
1124            // value; but we will leave that to the omx encoder component
1125            // via OMX_SetParameter call.
1126            profileLevel.mProfile = profile;
1127            profileLevel.mLevel = level;
1128            return OK;
1129        }
1130    }
1131
1132    CODEC_LOGE("Target profile (%d) and level (%d) is not supported",
1133            profile, level);
1134    return BAD_VALUE;
1135}
1136
1137status_t OMXCodec::setupH263EncoderParameters(const sp<MetaData>& meta) {
1138    int32_t iFramesInterval, frameRate, bitRate;
1139    bool success = meta->findInt32(kKeyBitRate, &bitRate);
1140    success = success && meta->findInt32(kKeyFrameRate, &frameRate);
1141    success = success && meta->findInt32(kKeyIFramesInterval, &iFramesInterval);
1142    CHECK(success);
1143    OMX_VIDEO_PARAM_H263TYPE h263type;
1144    InitOMXParams(&h263type);
1145    h263type.nPortIndex = kPortIndexOutput;
1146
1147    status_t err = mOMX->getParameter(
1148            mNode, OMX_IndexParamVideoH263, &h263type, sizeof(h263type));
1149    CHECK_EQ(err, (status_t)OK);
1150
1151    h263type.nAllowedPictureTypes =
1152        OMX_VIDEO_PictureTypeI | OMX_VIDEO_PictureTypeP;
1153
1154    h263type.nPFrames = setPFramesSpacing(iFramesInterval, frameRate);
1155    if (h263type.nPFrames == 0) {
1156        h263type.nAllowedPictureTypes = OMX_VIDEO_PictureTypeI;
1157    }
1158    h263type.nBFrames = 0;
1159
1160    // Check profile and level parameters
1161    CodecProfileLevel defaultProfileLevel, profileLevel;
1162    defaultProfileLevel.mProfile = h263type.eProfile;
1163    defaultProfileLevel.mLevel = h263type.eLevel;
1164    err = getVideoProfileLevel(meta, defaultProfileLevel, profileLevel);
1165    if (err != OK) return err;
1166    h263type.eProfile = static_cast<OMX_VIDEO_H263PROFILETYPE>(profileLevel.mProfile);
1167    h263type.eLevel = static_cast<OMX_VIDEO_H263LEVELTYPE>(profileLevel.mLevel);
1168
1169    h263type.bPLUSPTYPEAllowed = OMX_FALSE;
1170    h263type.bForceRoundingTypeToZero = OMX_FALSE;
1171    h263type.nPictureHeaderRepetition = 0;
1172    h263type.nGOBHeaderInterval = 0;
1173
1174    err = mOMX->setParameter(
1175            mNode, OMX_IndexParamVideoH263, &h263type, sizeof(h263type));
1176    CHECK_EQ(err, (status_t)OK);
1177
1178    CHECK_EQ(setupBitRate(bitRate), (status_t)OK);
1179    CHECK_EQ(setupErrorCorrectionParameters(), (status_t)OK);
1180
1181    return OK;
1182}
1183
1184status_t OMXCodec::setupMPEG4EncoderParameters(const sp<MetaData>& meta) {
1185    int32_t iFramesInterval, frameRate, bitRate;
1186    bool success = meta->findInt32(kKeyBitRate, &bitRate);
1187    success = success && meta->findInt32(kKeyFrameRate, &frameRate);
1188    success = success && meta->findInt32(kKeyIFramesInterval, &iFramesInterval);
1189    CHECK(success);
1190    OMX_VIDEO_PARAM_MPEG4TYPE mpeg4type;
1191    InitOMXParams(&mpeg4type);
1192    mpeg4type.nPortIndex = kPortIndexOutput;
1193
1194    status_t err = mOMX->getParameter(
1195            mNode, OMX_IndexParamVideoMpeg4, &mpeg4type, sizeof(mpeg4type));
1196    CHECK_EQ(err, (status_t)OK);
1197
1198    mpeg4type.nSliceHeaderSpacing = 0;
1199    mpeg4type.bSVH = OMX_FALSE;
1200    mpeg4type.bGov = OMX_FALSE;
1201
1202    mpeg4type.nAllowedPictureTypes =
1203        OMX_VIDEO_PictureTypeI | OMX_VIDEO_PictureTypeP;
1204
1205    mpeg4type.nPFrames = setPFramesSpacing(iFramesInterval, frameRate);
1206    if (mpeg4type.nPFrames == 0) {
1207        mpeg4type.nAllowedPictureTypes = OMX_VIDEO_PictureTypeI;
1208    }
1209    mpeg4type.nBFrames = 0;
1210    mpeg4type.nIDCVLCThreshold = 0;
1211    mpeg4type.bACPred = OMX_TRUE;
1212    mpeg4type.nMaxPacketSize = 256;
1213    mpeg4type.nTimeIncRes = 1000;
1214    mpeg4type.nHeaderExtension = 0;
1215    mpeg4type.bReversibleVLC = OMX_FALSE;
1216
1217    // Check profile and level parameters
1218    CodecProfileLevel defaultProfileLevel, profileLevel;
1219    defaultProfileLevel.mProfile = mpeg4type.eProfile;
1220    defaultProfileLevel.mLevel = mpeg4type.eLevel;
1221    err = getVideoProfileLevel(meta, defaultProfileLevel, profileLevel);
1222    if (err != OK) return err;
1223    mpeg4type.eProfile = static_cast<OMX_VIDEO_MPEG4PROFILETYPE>(profileLevel.mProfile);
1224    mpeg4type.eLevel = static_cast<OMX_VIDEO_MPEG4LEVELTYPE>(profileLevel.mLevel);
1225
1226    err = mOMX->setParameter(
1227            mNode, OMX_IndexParamVideoMpeg4, &mpeg4type, sizeof(mpeg4type));
1228    CHECK_EQ(err, (status_t)OK);
1229
1230    CHECK_EQ(setupBitRate(bitRate), (status_t)OK);
1231    CHECK_EQ(setupErrorCorrectionParameters(), (status_t)OK);
1232
1233    return OK;
1234}
1235
1236status_t OMXCodec::setupAVCEncoderParameters(const sp<MetaData>& meta) {
1237    int32_t iFramesInterval, frameRate, bitRate;
1238    bool success = meta->findInt32(kKeyBitRate, &bitRate);
1239    success = success && meta->findInt32(kKeyFrameRate, &frameRate);
1240    success = success && meta->findInt32(kKeyIFramesInterval, &iFramesInterval);
1241    CHECK(success);
1242
1243    OMX_VIDEO_PARAM_AVCTYPE h264type;
1244    InitOMXParams(&h264type);
1245    h264type.nPortIndex = kPortIndexOutput;
1246
1247    status_t err = mOMX->getParameter(
1248            mNode, OMX_IndexParamVideoAvc, &h264type, sizeof(h264type));
1249    CHECK_EQ(err, (status_t)OK);
1250
1251    h264type.nAllowedPictureTypes =
1252        OMX_VIDEO_PictureTypeI | OMX_VIDEO_PictureTypeP;
1253
1254    h264type.nSliceHeaderSpacing = 0;
1255    h264type.nBFrames = 0;   // No B frames support yet
1256    h264type.nPFrames = setPFramesSpacing(iFramesInterval, frameRate);
1257    if (h264type.nPFrames == 0) {
1258        h264type.nAllowedPictureTypes = OMX_VIDEO_PictureTypeI;
1259    }
1260
1261    // Check profile and level parameters
1262    CodecProfileLevel defaultProfileLevel, profileLevel;
1263    defaultProfileLevel.mProfile = h264type.eProfile;
1264    defaultProfileLevel.mLevel = h264type.eLevel;
1265    err = getVideoProfileLevel(meta, defaultProfileLevel, profileLevel);
1266    if (err != OK) return err;
1267    h264type.eProfile = static_cast<OMX_VIDEO_AVCPROFILETYPE>(profileLevel.mProfile);
1268    h264type.eLevel = static_cast<OMX_VIDEO_AVCLEVELTYPE>(profileLevel.mLevel);
1269
1270    if (h264type.eProfile == OMX_VIDEO_AVCProfileBaseline) {
1271        h264type.bUseHadamard = OMX_TRUE;
1272        h264type.nRefFrames = 1;
1273        h264type.nRefIdx10ActiveMinus1 = 0;
1274        h264type.nRefIdx11ActiveMinus1 = 0;
1275        h264type.bEntropyCodingCABAC = OMX_FALSE;
1276        h264type.bWeightedPPrediction = OMX_FALSE;
1277        h264type.bconstIpred = OMX_FALSE;
1278        h264type.bDirect8x8Inference = OMX_FALSE;
1279        h264type.bDirectSpatialTemporal = OMX_FALSE;
1280        h264type.nCabacInitIdc = 0;
1281    }
1282
1283    if (h264type.nBFrames != 0) {
1284        h264type.nAllowedPictureTypes |= OMX_VIDEO_PictureTypeB;
1285    }
1286
1287    h264type.bEnableUEP = OMX_FALSE;
1288    h264type.bEnableFMO = OMX_FALSE;
1289    h264type.bEnableASO = OMX_FALSE;
1290    h264type.bEnableRS = OMX_FALSE;
1291    h264type.bFrameMBsOnly = OMX_TRUE;
1292    h264type.bMBAFF = OMX_FALSE;
1293    h264type.eLoopFilterMode = OMX_VIDEO_AVCLoopFilterEnable;
1294
1295    if (!strcasecmp("OMX.Nvidia.h264.encoder", mComponentName)) {
1296        h264type.eLevel = OMX_VIDEO_AVCLevelMax;
1297    }
1298
1299    err = mOMX->setParameter(
1300            mNode, OMX_IndexParamVideoAvc, &h264type, sizeof(h264type));
1301    CHECK_EQ(err, (status_t)OK);
1302
1303    CHECK_EQ(setupBitRate(bitRate), (status_t)OK);
1304
1305    return OK;
1306}
1307
1308status_t OMXCodec::setVideoOutputFormat(
1309        const char *mime, OMX_U32 width, OMX_U32 height) {
1310    CODEC_LOGV("setVideoOutputFormat width=%ld, height=%ld", width, height);
1311
1312    OMX_VIDEO_CODINGTYPE compressionFormat = OMX_VIDEO_CodingUnused;
1313    if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_AVC, mime)) {
1314        compressionFormat = OMX_VIDEO_CodingAVC;
1315    } else if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_MPEG4, mime)) {
1316        compressionFormat = OMX_VIDEO_CodingMPEG4;
1317    } else if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_H263, mime)) {
1318        compressionFormat = OMX_VIDEO_CodingH263;
1319    } else {
1320        LOGE("Not a supported video mime type: %s", mime);
1321        CHECK(!"Should not be here. Not a supported video mime type.");
1322    }
1323
1324    status_t err = setVideoPortFormatType(
1325            kPortIndexInput, compressionFormat, OMX_COLOR_FormatUnused);
1326
1327    if (err != OK) {
1328        return err;
1329    }
1330
1331#if 1
1332    {
1333        OMX_VIDEO_PARAM_PORTFORMATTYPE format;
1334        InitOMXParams(&format);
1335        format.nPortIndex = kPortIndexOutput;
1336        format.nIndex = 0;
1337
1338        status_t err = mOMX->getParameter(
1339                mNode, OMX_IndexParamVideoPortFormat,
1340                &format, sizeof(format));
1341        CHECK_EQ(err, (status_t)OK);
1342        CHECK_EQ((int)format.eCompressionFormat, (int)OMX_VIDEO_CodingUnused);
1343
1344        static const int OMX_QCOM_COLOR_FormatYVU420SemiPlanar = 0x7FA30C00;
1345
1346        CHECK(format.eColorFormat == OMX_COLOR_FormatYUV420Planar
1347               || format.eColorFormat == OMX_COLOR_FormatYUV420SemiPlanar
1348               || format.eColorFormat == OMX_COLOR_FormatCbYCrY
1349               || format.eColorFormat == OMX_QCOM_COLOR_FormatYVU420SemiPlanar);
1350
1351        err = mOMX->setParameter(
1352                mNode, OMX_IndexParamVideoPortFormat,
1353                &format, sizeof(format));
1354
1355        if (err != OK) {
1356            return err;
1357        }
1358    }
1359#endif
1360
1361    OMX_PARAM_PORTDEFINITIONTYPE def;
1362    InitOMXParams(&def);
1363    def.nPortIndex = kPortIndexInput;
1364
1365    OMX_VIDEO_PORTDEFINITIONTYPE *video_def = &def.format.video;
1366
1367    err = mOMX->getParameter(
1368            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
1369
1370    CHECK_EQ(err, (status_t)OK);
1371
1372#if 1
1373    // XXX Need a (much) better heuristic to compute input buffer sizes.
1374    const size_t X = 64 * 1024;
1375    if (def.nBufferSize < X) {
1376        def.nBufferSize = X;
1377    }
1378#endif
1379
1380    CHECK_EQ((int)def.eDomain, (int)OMX_PortDomainVideo);
1381
1382    video_def->nFrameWidth = width;
1383    video_def->nFrameHeight = height;
1384
1385    video_def->eCompressionFormat = compressionFormat;
1386    video_def->eColorFormat = OMX_COLOR_FormatUnused;
1387
1388    err = mOMX->setParameter(
1389            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
1390
1391    if (err != OK) {
1392        return err;
1393    }
1394
1395    ////////////////////////////////////////////////////////////////////////////
1396
1397    InitOMXParams(&def);
1398    def.nPortIndex = kPortIndexOutput;
1399
1400    err = mOMX->getParameter(
1401            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
1402    CHECK_EQ(err, (status_t)OK);
1403    CHECK_EQ((int)def.eDomain, (int)OMX_PortDomainVideo);
1404
1405#if 0
1406    def.nBufferSize =
1407        (((width + 15) & -16) * ((height + 15) & -16) * 3) / 2;  // YUV420
1408#endif
1409
1410    video_def->nFrameWidth = width;
1411    video_def->nFrameHeight = height;
1412
1413    err = mOMX->setParameter(
1414            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
1415
1416    return err;
1417}
1418
1419OMXCodec::OMXCodec(
1420        const sp<IOMX> &omx, IOMX::node_id node, uint32_t quirks,
1421        bool isEncoder,
1422        const char *mime,
1423        const char *componentName,
1424        const sp<MediaSource> &source,
1425        const sp<ANativeWindow> &nativeWindow)
1426    : mOMX(omx),
1427      mOMXLivesLocally(omx->livesLocally(getpid())),
1428      mNode(node),
1429      mQuirks(quirks),
1430      mIsEncoder(isEncoder),
1431      mMIME(strdup(mime)),
1432      mComponentName(strdup(componentName)),
1433      mSource(source),
1434      mCodecSpecificDataIndex(0),
1435      mState(LOADED),
1436      mInitialBufferSubmit(true),
1437      mSignalledEOS(false),
1438      mNoMoreOutputData(false),
1439      mOutputPortSettingsHaveChanged(false),
1440      mSeekTimeUs(-1),
1441      mSeekMode(ReadOptions::SEEK_CLOSEST_SYNC),
1442      mTargetTimeUs(-1),
1443      mOutputPortSettingsChangedPending(false),
1444      mLeftOverBuffer(NULL),
1445      mPaused(false),
1446      mNativeWindow(nativeWindow) {
1447    mPortStatus[kPortIndexInput] = ENABLED;
1448    mPortStatus[kPortIndexOutput] = ENABLED;
1449
1450    setComponentRole();
1451}
1452
1453// static
1454void OMXCodec::setComponentRole(
1455        const sp<IOMX> &omx, IOMX::node_id node, bool isEncoder,
1456        const char *mime) {
1457    struct MimeToRole {
1458        const char *mime;
1459        const char *decoderRole;
1460        const char *encoderRole;
1461    };
1462
1463    static const MimeToRole kMimeToRole[] = {
1464        { MEDIA_MIMETYPE_AUDIO_MPEG,
1465            "audio_decoder.mp3", "audio_encoder.mp3" },
1466        { MEDIA_MIMETYPE_AUDIO_AMR_NB,
1467            "audio_decoder.amrnb", "audio_encoder.amrnb" },
1468        { MEDIA_MIMETYPE_AUDIO_AMR_WB,
1469            "audio_decoder.amrwb", "audio_encoder.amrwb" },
1470        { MEDIA_MIMETYPE_AUDIO_AAC,
1471            "audio_decoder.aac", "audio_encoder.aac" },
1472        { MEDIA_MIMETYPE_VIDEO_AVC,
1473            "video_decoder.avc", "video_encoder.avc" },
1474        { MEDIA_MIMETYPE_VIDEO_MPEG4,
1475            "video_decoder.mpeg4", "video_encoder.mpeg4" },
1476        { MEDIA_MIMETYPE_VIDEO_H263,
1477            "video_decoder.h263", "video_encoder.h263" },
1478    };
1479
1480    static const size_t kNumMimeToRole =
1481        sizeof(kMimeToRole) / sizeof(kMimeToRole[0]);
1482
1483    size_t i;
1484    for (i = 0; i < kNumMimeToRole; ++i) {
1485        if (!strcasecmp(mime, kMimeToRole[i].mime)) {
1486            break;
1487        }
1488    }
1489
1490    if (i == kNumMimeToRole) {
1491        return;
1492    }
1493
1494    const char *role =
1495        isEncoder ? kMimeToRole[i].encoderRole
1496                  : kMimeToRole[i].decoderRole;
1497
1498    if (role != NULL) {
1499        OMX_PARAM_COMPONENTROLETYPE roleParams;
1500        InitOMXParams(&roleParams);
1501
1502        strncpy((char *)roleParams.cRole,
1503                role, OMX_MAX_STRINGNAME_SIZE - 1);
1504
1505        roleParams.cRole[OMX_MAX_STRINGNAME_SIZE - 1] = '\0';
1506
1507        status_t err = omx->setParameter(
1508                node, OMX_IndexParamStandardComponentRole,
1509                &roleParams, sizeof(roleParams));
1510
1511        if (err != OK) {
1512            LOGW("Failed to set standard component role '%s'.", role);
1513        }
1514    }
1515}
1516
1517void OMXCodec::setComponentRole() {
1518    setComponentRole(mOMX, mNode, mIsEncoder, mMIME);
1519}
1520
1521OMXCodec::~OMXCodec() {
1522    mSource.clear();
1523
1524    CHECK(mState == LOADED || mState == ERROR || mState == LOADED_TO_IDLE);
1525
1526    status_t err = mOMX->freeNode(mNode);
1527    CHECK_EQ(err, (status_t)OK);
1528
1529    mNode = NULL;
1530    setState(DEAD);
1531
1532    clearCodecSpecificData();
1533
1534    free(mComponentName);
1535    mComponentName = NULL;
1536
1537    free(mMIME);
1538    mMIME = NULL;
1539}
1540
1541status_t OMXCodec::init() {
1542    // mLock is held.
1543
1544    CHECK_EQ((int)mState, (int)LOADED);
1545
1546    status_t err;
1547    if (!(mQuirks & kRequiresLoadedToIdleAfterAllocation)) {
1548        err = mOMX->sendCommand(mNode, OMX_CommandStateSet, OMX_StateIdle);
1549        CHECK_EQ(err, (status_t)OK);
1550        setState(LOADED_TO_IDLE);
1551    }
1552
1553    err = allocateBuffers();
1554    if (err != (status_t)OK) {
1555        return err;
1556    }
1557
1558    if (mQuirks & kRequiresLoadedToIdleAfterAllocation) {
1559        err = mOMX->sendCommand(mNode, OMX_CommandStateSet, OMX_StateIdle);
1560        CHECK_EQ(err, (status_t)OK);
1561
1562        setState(LOADED_TO_IDLE);
1563    }
1564
1565    while (mState != EXECUTING && mState != ERROR) {
1566        mAsyncCompletion.wait(mLock);
1567    }
1568
1569    return mState == ERROR ? UNKNOWN_ERROR : OK;
1570}
1571
1572// static
1573bool OMXCodec::isIntermediateState(State state) {
1574    return state == LOADED_TO_IDLE
1575        || state == IDLE_TO_EXECUTING
1576        || state == EXECUTING_TO_IDLE
1577        || state == IDLE_TO_LOADED
1578        || state == RECONFIGURING;
1579}
1580
1581status_t OMXCodec::allocateBuffers() {
1582    status_t err = allocateBuffersOnPort(kPortIndexInput);
1583
1584    if (err != OK) {
1585        return err;
1586    }
1587
1588    return allocateBuffersOnPort(kPortIndexOutput);
1589}
1590
1591status_t OMXCodec::allocateBuffersOnPort(OMX_U32 portIndex) {
1592    if (mNativeWindow != NULL && portIndex == kPortIndexOutput) {
1593        return allocateOutputBuffersFromNativeWindow();
1594    }
1595
1596    OMX_PARAM_PORTDEFINITIONTYPE def;
1597    InitOMXParams(&def);
1598    def.nPortIndex = portIndex;
1599
1600    status_t err = mOMX->getParameter(
1601            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
1602
1603    if (err != OK) {
1604        return err;
1605    }
1606
1607    if (mIsMetaDataStoredInVideoBuffers && portIndex == kPortIndexInput) {
1608        err = mOMX->storeMetaDataInBuffers(mNode, kPortIndexInput, OMX_TRUE);
1609        if (err != OK) {
1610            LOGE("Storing meta data in video buffers is not supported");
1611            return err;
1612        }
1613    }
1614
1615    CODEC_LOGI("allocating %lu buffers of size %lu on %s port",
1616            def.nBufferCountActual, def.nBufferSize,
1617            portIndex == kPortIndexInput ? "input" : "output");
1618
1619    size_t totalSize = def.nBufferCountActual * def.nBufferSize;
1620    mDealer[portIndex] = new MemoryDealer(totalSize, "OMXCodec");
1621
1622    for (OMX_U32 i = 0; i < def.nBufferCountActual; ++i) {
1623        sp<IMemory> mem = mDealer[portIndex]->allocate(def.nBufferSize);
1624        CHECK(mem.get() != NULL);
1625
1626        BufferInfo info;
1627        info.mData = NULL;
1628        info.mSize = def.nBufferSize;
1629
1630        IOMX::buffer_id buffer;
1631        if (portIndex == kPortIndexInput
1632                && (mQuirks & kRequiresAllocateBufferOnInputPorts)) {
1633            if (mOMXLivesLocally) {
1634                mem.clear();
1635
1636                err = mOMX->allocateBuffer(
1637                        mNode, portIndex, def.nBufferSize, &buffer,
1638                        &info.mData);
1639            } else {
1640                err = mOMX->allocateBufferWithBackup(
1641                        mNode, portIndex, mem, &buffer);
1642            }
1643        } else if (portIndex == kPortIndexOutput
1644                && (mQuirks & kRequiresAllocateBufferOnOutputPorts)) {
1645            if (mOMXLivesLocally) {
1646                mem.clear();
1647
1648                err = mOMX->allocateBuffer(
1649                        mNode, portIndex, def.nBufferSize, &buffer,
1650                        &info.mData);
1651            } else {
1652                err = mOMX->allocateBufferWithBackup(
1653                        mNode, portIndex, mem, &buffer);
1654            }
1655        } else {
1656            err = mOMX->useBuffer(mNode, portIndex, mem, &buffer);
1657        }
1658
1659        if (err != OK) {
1660            LOGE("allocate_buffer_with_backup failed");
1661            return err;
1662        }
1663
1664        if (mem != NULL) {
1665            info.mData = mem->pointer();
1666        }
1667
1668        info.mBuffer = buffer;
1669        info.mStatus = OWNED_BY_US;
1670        info.mMem = mem;
1671        info.mMediaBuffer = NULL;
1672
1673        if (portIndex == kPortIndexOutput) {
1674            if (!(mOMXLivesLocally
1675                        && (mQuirks & kRequiresAllocateBufferOnOutputPorts)
1676                        && (mQuirks & kDefersOutputBufferAllocation))) {
1677                // If the node does not fill in the buffer ptr at this time,
1678                // we will defer creating the MediaBuffer until receiving
1679                // the first FILL_BUFFER_DONE notification instead.
1680                info.mMediaBuffer = new MediaBuffer(info.mData, info.mSize);
1681                info.mMediaBuffer->setObserver(this);
1682            }
1683        }
1684
1685        mPortBuffers[portIndex].push(info);
1686
1687        CODEC_LOGV("allocated buffer %p on %s port", buffer,
1688             portIndex == kPortIndexInput ? "input" : "output");
1689    }
1690
1691    // dumpPortStatus(portIndex);
1692
1693    return OK;
1694}
1695
1696status_t OMXCodec::applyRotation() {
1697    sp<MetaData> meta = mSource->getFormat();
1698
1699    int32_t rotationDegrees;
1700    if (!meta->findInt32(kKeyRotation, &rotationDegrees)) {
1701        rotationDegrees = 0;
1702    }
1703
1704    uint32_t transform;
1705    switch (rotationDegrees) {
1706        case 0: transform = 0; break;
1707        case 90: transform = HAL_TRANSFORM_ROT_90; break;
1708        case 180: transform = HAL_TRANSFORM_ROT_180; break;
1709        case 270: transform = HAL_TRANSFORM_ROT_270; break;
1710        default: transform = 0; break;
1711    }
1712
1713    status_t err = OK;
1714
1715    if (transform) {
1716        err = native_window_set_buffers_transform(
1717                mNativeWindow.get(), transform);
1718    }
1719
1720    return err;
1721}
1722
1723status_t OMXCodec::allocateOutputBuffersFromNativeWindow() {
1724    // Get the number of buffers needed.
1725    OMX_PARAM_PORTDEFINITIONTYPE def;
1726    InitOMXParams(&def);
1727    def.nPortIndex = kPortIndexOutput;
1728
1729    status_t err = mOMX->getParameter(
1730            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
1731    if (err != OK) {
1732        return err;
1733    }
1734
1735    err = native_window_set_buffers_geometry(
1736            mNativeWindow.get(),
1737            def.format.video.nFrameWidth,
1738            def.format.video.nFrameHeight,
1739            def.format.video.eColorFormat);
1740
1741    if (err != 0) {
1742        LOGE("native_window_set_buffers_geometry failed: %s (%d)",
1743                strerror(-err), -err);
1744        return err;
1745    }
1746
1747    err = applyRotation();
1748    if (err != OK) {
1749        return err;
1750    }
1751
1752    // Set up the native window.
1753    OMX_U32 usage = 0;
1754    err = mOMX->getGraphicBufferUsage(mNode, kPortIndexOutput, &usage);
1755    if (err != 0) {
1756        LOGW("querying usage flags from OMX IL component failed: %d", err);
1757        // XXX: Currently this error is logged, but not fatal.
1758        usage = 0;
1759    }
1760    if (mEnableGrallocUsageProtected) {
1761        usage |= GRALLOC_USAGE_PROTECTED;
1762    }
1763
1764    LOGV("native_window_set_usage usage=0x%x", usage);
1765    err = native_window_set_usage(
1766            mNativeWindow.get(), usage | GRALLOC_USAGE_HW_TEXTURE | GRALLOC_USAGE_EXTERNAL_DISP);
1767    if (err != 0) {
1768        LOGE("native_window_set_usage failed: %s (%d)", strerror(-err), -err);
1769        return err;
1770    }
1771
1772    int minUndequeuedBufs = 0;
1773    err = mNativeWindow->query(mNativeWindow.get(),
1774            NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS, &minUndequeuedBufs);
1775    if (err != 0) {
1776        LOGE("NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS query failed: %s (%d)",
1777                strerror(-err), -err);
1778        return err;
1779    }
1780
1781    // XXX: Is this the right logic to use?  It's not clear to me what the OMX
1782    // buffer counts refer to - how do they account for the renderer holding on
1783    // to buffers?
1784    if (def.nBufferCountActual < def.nBufferCountMin + minUndequeuedBufs) {
1785        OMX_U32 newBufferCount = def.nBufferCountMin + minUndequeuedBufs;
1786        def.nBufferCountActual = newBufferCount;
1787        err = mOMX->setParameter(
1788                mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
1789        if (err != OK) {
1790            CODEC_LOGE("setting nBufferCountActual to %lu failed: %d",
1791                    newBufferCount, err);
1792            return err;
1793        }
1794    }
1795
1796    err = native_window_set_buffer_count(
1797            mNativeWindow.get(), def.nBufferCountActual);
1798    if (err != 0) {
1799        LOGE("native_window_set_buffer_count failed: %s (%d)", strerror(-err),
1800                -err);
1801        return err;
1802    }
1803
1804    CODEC_LOGI("allocating %lu buffers from a native window of size %lu on "
1805            "output port", def.nBufferCountActual, def.nBufferSize);
1806
1807    // Dequeue buffers and send them to OMX
1808    for (OMX_U32 i = 0; i < def.nBufferCountActual; i++) {
1809        android_native_buffer_t* buf;
1810        err = mNativeWindow->dequeueBuffer(mNativeWindow.get(), &buf);
1811        if (err != 0) {
1812            LOGE("dequeueBuffer failed: %s (%d)", strerror(-err), -err);
1813            break;
1814        }
1815
1816        sp<GraphicBuffer> graphicBuffer(new GraphicBuffer(buf, false));
1817        BufferInfo info;
1818        info.mData = NULL;
1819        info.mSize = def.nBufferSize;
1820        info.mStatus = OWNED_BY_US;
1821        info.mMem = NULL;
1822        info.mMediaBuffer = new MediaBuffer(graphicBuffer);
1823        info.mMediaBuffer->setObserver(this);
1824        mPortBuffers[kPortIndexOutput].push(info);
1825
1826        IOMX::buffer_id bufferId;
1827        err = mOMX->useGraphicBuffer(mNode, kPortIndexOutput, graphicBuffer,
1828                &bufferId);
1829        if (err != 0) {
1830            CODEC_LOGE("registering GraphicBuffer with OMX IL component "
1831                    "failed: %d", err);
1832            break;
1833        }
1834
1835        mPortBuffers[kPortIndexOutput].editItemAt(i).mBuffer = bufferId;
1836
1837        CODEC_LOGV("registered graphic buffer with ID %p (pointer = %p)",
1838                bufferId, graphicBuffer.get());
1839    }
1840
1841    OMX_U32 cancelStart;
1842    OMX_U32 cancelEnd;
1843    if (err != 0) {
1844        // If an error occurred while dequeuing we need to cancel any buffers
1845        // that were dequeued.
1846        cancelStart = 0;
1847        cancelEnd = mPortBuffers[kPortIndexOutput].size();
1848    } else {
1849        // Return the last two buffers to the native window.
1850        cancelStart = def.nBufferCountActual - minUndequeuedBufs;
1851        cancelEnd = def.nBufferCountActual;
1852    }
1853
1854    for (OMX_U32 i = cancelStart; i < cancelEnd; i++) {
1855        BufferInfo *info = &mPortBuffers[kPortIndexOutput].editItemAt(i);
1856        cancelBufferToNativeWindow(info);
1857    }
1858
1859    return err;
1860}
1861
1862status_t OMXCodec::cancelBufferToNativeWindow(BufferInfo *info) {
1863    CHECK_EQ((int)info->mStatus, (int)OWNED_BY_US);
1864    CODEC_LOGV("Calling cancelBuffer on buffer %p", info->mBuffer);
1865    int err = mNativeWindow->cancelBuffer(
1866        mNativeWindow.get(), info->mMediaBuffer->graphicBuffer().get());
1867    if (err != 0) {
1868      CODEC_LOGE("cancelBuffer failed w/ error 0x%08x", err);
1869
1870      setState(ERROR);
1871      return err;
1872    }
1873    info->mStatus = OWNED_BY_NATIVE_WINDOW;
1874    return OK;
1875}
1876
1877OMXCodec::BufferInfo* OMXCodec::dequeueBufferFromNativeWindow() {
1878    // Dequeue the next buffer from the native window.
1879    android_native_buffer_t* buf;
1880    int err = mNativeWindow->dequeueBuffer(mNativeWindow.get(), &buf);
1881    if (err != 0) {
1882      CODEC_LOGE("dequeueBuffer failed w/ error 0x%08x", err);
1883
1884      setState(ERROR);
1885      return 0;
1886    }
1887
1888    // Determine which buffer we just dequeued.
1889    Vector<BufferInfo> *buffers = &mPortBuffers[kPortIndexOutput];
1890    BufferInfo *bufInfo = 0;
1891    for (size_t i = 0; i < buffers->size(); i++) {
1892      sp<GraphicBuffer> graphicBuffer = buffers->itemAt(i).
1893          mMediaBuffer->graphicBuffer();
1894      if (graphicBuffer->handle == buf->handle) {
1895        bufInfo = &buffers->editItemAt(i);
1896        break;
1897      }
1898    }
1899
1900    if (bufInfo == 0) {
1901        CODEC_LOGE("dequeued unrecognized buffer: %p", buf);
1902
1903        setState(ERROR);
1904        return 0;
1905    }
1906
1907    // The native window no longer owns the buffer.
1908    CHECK_EQ((int)bufInfo->mStatus, (int)OWNED_BY_NATIVE_WINDOW);
1909    bufInfo->mStatus = OWNED_BY_US;
1910
1911    return bufInfo;
1912}
1913
1914void OMXCodec::on_message(const omx_message &msg) {
1915    if (mState == ERROR) {
1916        LOGW("Dropping OMX message - we're in ERROR state.");
1917        return;
1918    }
1919
1920    switch (msg.type) {
1921        case omx_message::EVENT:
1922        {
1923            onEvent(
1924                 msg.u.event_data.event, msg.u.event_data.data1,
1925                 msg.u.event_data.data2);
1926
1927            break;
1928        }
1929
1930        case omx_message::EMPTY_BUFFER_DONE:
1931        {
1932            IOMX::buffer_id buffer = msg.u.extended_buffer_data.buffer;
1933
1934            CODEC_LOGV("EMPTY_BUFFER_DONE(buffer: %p)", buffer);
1935
1936            Vector<BufferInfo> *buffers = &mPortBuffers[kPortIndexInput];
1937            size_t i = 0;
1938            while (i < buffers->size() && (*buffers)[i].mBuffer != buffer) {
1939                ++i;
1940            }
1941
1942            CHECK(i < buffers->size());
1943            if ((*buffers)[i].mStatus != OWNED_BY_COMPONENT) {
1944                LOGW("We already own input buffer %p, yet received "
1945                     "an EMPTY_BUFFER_DONE.", buffer);
1946            }
1947
1948            BufferInfo* info = &buffers->editItemAt(i);
1949            info->mStatus = OWNED_BY_US;
1950
1951            // Buffer could not be released until empty buffer done is called.
1952            if (info->mMediaBuffer != NULL) {
1953                if (mIsEncoder &&
1954                    (mQuirks & kAvoidMemcopyInputRecordingFrames)) {
1955                    // If zero-copy mode is enabled this will send the
1956                    // input buffer back to the upstream source.
1957                    restorePatchedDataPointer(info);
1958                }
1959
1960                info->mMediaBuffer->release();
1961                info->mMediaBuffer = NULL;
1962            }
1963
1964            if (mPortStatus[kPortIndexInput] == DISABLING) {
1965                CODEC_LOGV("Port is disabled, freeing buffer %p", buffer);
1966
1967                status_t err = freeBuffer(kPortIndexInput, i);
1968                CHECK_EQ(err, (status_t)OK);
1969            } else if (mState != ERROR
1970                    && mPortStatus[kPortIndexInput] != SHUTTING_DOWN) {
1971                CHECK_EQ((int)mPortStatus[kPortIndexInput], (int)ENABLED);
1972                drainInputBuffer(&buffers->editItemAt(i));
1973            }
1974            break;
1975        }
1976
1977        case omx_message::FILL_BUFFER_DONE:
1978        {
1979            IOMX::buffer_id buffer = msg.u.extended_buffer_data.buffer;
1980            OMX_U32 flags = msg.u.extended_buffer_data.flags;
1981
1982            CODEC_LOGV("FILL_BUFFER_DONE(buffer: %p, size: %ld, flags: 0x%08lx, timestamp: %lld us (%.2f secs))",
1983                 buffer,
1984                 msg.u.extended_buffer_data.range_length,
1985                 flags,
1986                 msg.u.extended_buffer_data.timestamp,
1987                 msg.u.extended_buffer_data.timestamp / 1E6);
1988
1989            Vector<BufferInfo> *buffers = &mPortBuffers[kPortIndexOutput];
1990            size_t i = 0;
1991            while (i < buffers->size() && (*buffers)[i].mBuffer != buffer) {
1992                ++i;
1993            }
1994
1995            CHECK(i < buffers->size());
1996            BufferInfo *info = &buffers->editItemAt(i);
1997
1998            if (info->mStatus != OWNED_BY_COMPONENT) {
1999                LOGW("We already own output buffer %p, yet received "
2000                     "a FILL_BUFFER_DONE.", buffer);
2001            }
2002
2003            info->mStatus = OWNED_BY_US;
2004
2005            if (mPortStatus[kPortIndexOutput] == DISABLING) {
2006                CODEC_LOGV("Port is disabled, freeing buffer %p", buffer);
2007
2008                status_t err = freeBuffer(kPortIndexOutput, i);
2009                CHECK_EQ(err, (status_t)OK);
2010
2011#if 0
2012            } else if (mPortStatus[kPortIndexOutput] == ENABLED
2013                       && (flags & OMX_BUFFERFLAG_EOS)) {
2014                CODEC_LOGV("No more output data.");
2015                mNoMoreOutputData = true;
2016                mBufferFilled.signal();
2017#endif
2018            } else if (mPortStatus[kPortIndexOutput] != SHUTTING_DOWN) {
2019                CHECK_EQ((int)mPortStatus[kPortIndexOutput], (int)ENABLED);
2020
2021                if (info->mMediaBuffer == NULL) {
2022                    CHECK(mOMXLivesLocally);
2023                    CHECK(mQuirks & kRequiresAllocateBufferOnOutputPorts);
2024                    CHECK(mQuirks & kDefersOutputBufferAllocation);
2025
2026                    // The qcom video decoders on Nexus don't actually allocate
2027                    // output buffer memory on a call to OMX_AllocateBuffer
2028                    // the "pBuffer" member of the OMX_BUFFERHEADERTYPE
2029                    // structure is only filled in later.
2030
2031                    info->mMediaBuffer = new MediaBuffer(
2032                            msg.u.extended_buffer_data.data_ptr,
2033                            info->mSize);
2034                    info->mMediaBuffer->setObserver(this);
2035                }
2036
2037                MediaBuffer *buffer = info->mMediaBuffer;
2038                bool isGraphicBuffer = buffer->graphicBuffer() != NULL;
2039
2040                if (!isGraphicBuffer
2041                    && msg.u.extended_buffer_data.range_offset
2042                        + msg.u.extended_buffer_data.range_length
2043                            > buffer->size()) {
2044                    CODEC_LOGE(
2045                            "Codec lied about its buffer size requirements, "
2046                            "sending a buffer larger than the originally "
2047                            "advertised size in FILL_BUFFER_DONE!");
2048                }
2049                buffer->set_range(
2050                        msg.u.extended_buffer_data.range_offset,
2051                        msg.u.extended_buffer_data.range_length);
2052
2053                buffer->meta_data()->clear();
2054
2055                buffer->meta_data()->setInt64(
2056                        kKeyTime, msg.u.extended_buffer_data.timestamp);
2057
2058                if (msg.u.extended_buffer_data.flags & OMX_BUFFERFLAG_SYNCFRAME) {
2059                    buffer->meta_data()->setInt32(kKeyIsSyncFrame, true);
2060                }
2061                if (msg.u.extended_buffer_data.flags & OMX_BUFFERFLAG_CODECCONFIG) {
2062                    buffer->meta_data()->setInt32(kKeyIsCodecConfig, true);
2063                }
2064
2065                if (isGraphicBuffer || mQuirks & kOutputBuffersAreUnreadable) {
2066                    buffer->meta_data()->setInt32(kKeyIsUnreadable, true);
2067                }
2068
2069                buffer->meta_data()->setPointer(
2070                        kKeyPlatformPrivate,
2071                        msg.u.extended_buffer_data.platform_private);
2072
2073                buffer->meta_data()->setPointer(
2074                        kKeyBufferID,
2075                        msg.u.extended_buffer_data.buffer);
2076
2077                if (msg.u.extended_buffer_data.flags & OMX_BUFFERFLAG_EOS) {
2078                    CODEC_LOGV("No more output data.");
2079                    mNoMoreOutputData = true;
2080                }
2081
2082                if (mTargetTimeUs >= 0) {
2083                    CHECK(msg.u.extended_buffer_data.timestamp <= mTargetTimeUs);
2084
2085                    if (msg.u.extended_buffer_data.timestamp < mTargetTimeUs) {
2086                        CODEC_LOGV(
2087                                "skipping output buffer at timestamp %lld us",
2088                                msg.u.extended_buffer_data.timestamp);
2089
2090                        fillOutputBuffer(info);
2091                        break;
2092                    }
2093
2094                    CODEC_LOGV(
2095                            "returning output buffer at target timestamp "
2096                            "%lld us",
2097                            msg.u.extended_buffer_data.timestamp);
2098
2099                    mTargetTimeUs = -1;
2100                }
2101
2102                mFilledBuffers.push_back(i);
2103                mBufferFilled.signal();
2104                if (mIsEncoder) {
2105                    sched_yield();
2106                }
2107            }
2108
2109            break;
2110        }
2111
2112        default:
2113        {
2114            CHECK(!"should not be here.");
2115            break;
2116        }
2117    }
2118}
2119
2120// Has the format changed in any way that the client would have to be aware of?
2121static bool formatHasNotablyChanged(
2122        const sp<MetaData> &from, const sp<MetaData> &to) {
2123    if (from.get() == NULL && to.get() == NULL) {
2124        return false;
2125    }
2126
2127    if ((from.get() == NULL && to.get() != NULL)
2128        || (from.get() != NULL && to.get() == NULL)) {
2129        return true;
2130    }
2131
2132    const char *mime_from, *mime_to;
2133    CHECK(from->findCString(kKeyMIMEType, &mime_from));
2134    CHECK(to->findCString(kKeyMIMEType, &mime_to));
2135
2136    if (strcasecmp(mime_from, mime_to)) {
2137        return true;
2138    }
2139
2140    if (!strcasecmp(mime_from, MEDIA_MIMETYPE_VIDEO_RAW)) {
2141        int32_t colorFormat_from, colorFormat_to;
2142        CHECK(from->findInt32(kKeyColorFormat, &colorFormat_from));
2143        CHECK(to->findInt32(kKeyColorFormat, &colorFormat_to));
2144
2145        if (colorFormat_from != colorFormat_to) {
2146            return true;
2147        }
2148
2149        int32_t width_from, width_to;
2150        CHECK(from->findInt32(kKeyWidth, &width_from));
2151        CHECK(to->findInt32(kKeyWidth, &width_to));
2152
2153        if (width_from != width_to) {
2154            return true;
2155        }
2156
2157        int32_t height_from, height_to;
2158        CHECK(from->findInt32(kKeyHeight, &height_from));
2159        CHECK(to->findInt32(kKeyHeight, &height_to));
2160
2161        if (height_from != height_to) {
2162            return true;
2163        }
2164
2165        int32_t left_from, top_from, right_from, bottom_from;
2166        CHECK(from->findRect(
2167                    kKeyCropRect,
2168                    &left_from, &top_from, &right_from, &bottom_from));
2169
2170        int32_t left_to, top_to, right_to, bottom_to;
2171        CHECK(to->findRect(
2172                    kKeyCropRect,
2173                    &left_to, &top_to, &right_to, &bottom_to));
2174
2175        if (left_to != left_from || top_to != top_from
2176                || right_to != right_from || bottom_to != bottom_from) {
2177            return true;
2178        }
2179    } else if (!strcasecmp(mime_from, MEDIA_MIMETYPE_AUDIO_RAW)) {
2180        int32_t numChannels_from, numChannels_to;
2181        CHECK(from->findInt32(kKeyChannelCount, &numChannels_from));
2182        CHECK(to->findInt32(kKeyChannelCount, &numChannels_to));
2183
2184        if (numChannels_from != numChannels_to) {
2185            return true;
2186        }
2187
2188        int32_t sampleRate_from, sampleRate_to;
2189        CHECK(from->findInt32(kKeySampleRate, &sampleRate_from));
2190        CHECK(to->findInt32(kKeySampleRate, &sampleRate_to));
2191
2192        if (sampleRate_from != sampleRate_to) {
2193            return true;
2194        }
2195    }
2196
2197    return false;
2198}
2199
2200void OMXCodec::onEvent(OMX_EVENTTYPE event, OMX_U32 data1, OMX_U32 data2) {
2201    switch (event) {
2202        case OMX_EventCmdComplete:
2203        {
2204            onCmdComplete((OMX_COMMANDTYPE)data1, data2);
2205            break;
2206        }
2207
2208        case OMX_EventError:
2209        {
2210            CODEC_LOGE("ERROR(0x%08lx, %ld)", data1, data2);
2211
2212            setState(ERROR);
2213            break;
2214        }
2215
2216        case OMX_EventPortSettingsChanged:
2217        {
2218            CODEC_LOGV("OMX_EventPortSettingsChanged(port=%ld, data2=0x%08lx)",
2219                       data1, data2);
2220
2221            if (data2 == 0 || data2 == OMX_IndexParamPortDefinition) {
2222                onPortSettingsChanged(data1);
2223            } else if (data1 == kPortIndexOutput &&
2224                        (data2 == OMX_IndexConfigCommonOutputCrop ||
2225                         data2 == OMX_IndexConfigCommonScale)) {
2226
2227                sp<MetaData> oldOutputFormat = mOutputFormat;
2228                initOutputFormat(mSource->getFormat());
2229
2230                if (data2 == OMX_IndexConfigCommonOutputCrop &&
2231                    formatHasNotablyChanged(oldOutputFormat, mOutputFormat)) {
2232                    mOutputPortSettingsHaveChanged = true;
2233
2234                    if (mNativeWindow != NULL) {
2235                        int32_t left, top, right, bottom;
2236                        CHECK(mOutputFormat->findRect(
2237                                    kKeyCropRect,
2238                                    &left, &top, &right, &bottom));
2239
2240                        android_native_rect_t crop;
2241                        crop.left = left;
2242                        crop.top = top;
2243                        crop.right = right + 1;
2244                        crop.bottom = bottom + 1;
2245
2246                        // We'll ignore any errors here, if the surface is
2247                        // already invalid, we'll know soon enough.
2248                        native_window_set_crop(mNativeWindow.get(), &crop);
2249                    }
2250                } else if (data2 == OMX_IndexConfigCommonScale) {
2251                    OMX_CONFIG_SCALEFACTORTYPE scale;
2252                    InitOMXParams(&scale);
2253                    scale.nPortIndex = kPortIndexOutput;
2254
2255                    // Change display dimension only when necessary.
2256                    if (OK == mOMX->getConfig(
2257                                        mNode,
2258                                        OMX_IndexConfigCommonScale,
2259                                        &scale, sizeof(scale))) {
2260                        int32_t left, top, right, bottom;
2261                        CHECK(mOutputFormat->findRect(kKeyCropRect,
2262                                                      &left, &top,
2263                                                      &right, &bottom));
2264
2265                        // The scale is in 16.16 format.
2266                        // scale 1.0 = 0x010000. When there is no
2267                        // need to change the display, skip it.
2268                        LOGV("Get OMX_IndexConfigScale: 0x%lx/0x%lx",
2269                                scale.xWidth, scale.xHeight);
2270
2271                        if (scale.xWidth != 0x010000) {
2272                            mOutputFormat->setInt32(kKeyDisplayWidth,
2273                                    ((right - left +  1) * scale.xWidth)  >> 16);
2274                            mOutputPortSettingsHaveChanged = true;
2275                        }
2276
2277                        if (scale.xHeight != 0x010000) {
2278                            mOutputFormat->setInt32(kKeyDisplayHeight,
2279                                    ((bottom  - top + 1) * scale.xHeight) >> 16);
2280                            mOutputPortSettingsHaveChanged = true;
2281                        }
2282                    }
2283                }
2284            }
2285            break;
2286        }
2287
2288#if 0
2289        case OMX_EventBufferFlag:
2290        {
2291            CODEC_LOGV("EVENT_BUFFER_FLAG(%ld)", data1);
2292
2293            if (data1 == kPortIndexOutput) {
2294                mNoMoreOutputData = true;
2295            }
2296            break;
2297        }
2298#endif
2299
2300        default:
2301        {
2302            CODEC_LOGV("EVENT(%d, %ld, %ld)", event, data1, data2);
2303            break;
2304        }
2305    }
2306}
2307
2308void OMXCodec::onCmdComplete(OMX_COMMANDTYPE cmd, OMX_U32 data) {
2309    switch (cmd) {
2310        case OMX_CommandStateSet:
2311        {
2312            onStateChange((OMX_STATETYPE)data);
2313            break;
2314        }
2315
2316        case OMX_CommandPortDisable:
2317        {
2318            OMX_U32 portIndex = data;
2319            CODEC_LOGV("PORT_DISABLED(%ld)", portIndex);
2320
2321            CHECK(mState == EXECUTING || mState == RECONFIGURING);
2322            CHECK_EQ((int)mPortStatus[portIndex], (int)DISABLING);
2323            CHECK_EQ(mPortBuffers[portIndex].size(), 0u);
2324
2325            mPortStatus[portIndex] = DISABLED;
2326
2327            if (mState == RECONFIGURING) {
2328                CHECK_EQ(portIndex, (OMX_U32)kPortIndexOutput);
2329
2330                sp<MetaData> oldOutputFormat = mOutputFormat;
2331                initOutputFormat(mSource->getFormat());
2332
2333                // Don't notify clients if the output port settings change
2334                // wasn't of importance to them, i.e. it may be that just the
2335                // number of buffers has changed and nothing else.
2336                mOutputPortSettingsHaveChanged =
2337                    formatHasNotablyChanged(oldOutputFormat, mOutputFormat);
2338
2339                enablePortAsync(portIndex);
2340
2341                status_t err = allocateBuffersOnPort(portIndex);
2342
2343                if (err != OK) {
2344                    CODEC_LOGE("allocateBuffersOnPort failed (err = %d)", err);
2345                    setState(ERROR);
2346                }
2347            }
2348            break;
2349        }
2350
2351        case OMX_CommandPortEnable:
2352        {
2353            OMX_U32 portIndex = data;
2354            CODEC_LOGV("PORT_ENABLED(%ld)", portIndex);
2355
2356            CHECK(mState == EXECUTING || mState == RECONFIGURING);
2357            CHECK_EQ((int)mPortStatus[portIndex], (int)ENABLING);
2358
2359            mPortStatus[portIndex] = ENABLED;
2360
2361            if (mState == RECONFIGURING) {
2362                CHECK_EQ(portIndex, (OMX_U32)kPortIndexOutput);
2363
2364                setState(EXECUTING);
2365
2366                fillOutputBuffers();
2367            }
2368            break;
2369        }
2370
2371        case OMX_CommandFlush:
2372        {
2373            OMX_U32 portIndex = data;
2374
2375            CODEC_LOGV("FLUSH_DONE(%ld)", portIndex);
2376
2377            CHECK_EQ((int)mPortStatus[portIndex], (int)SHUTTING_DOWN);
2378            mPortStatus[portIndex] = ENABLED;
2379
2380            CHECK_EQ(countBuffersWeOwn(mPortBuffers[portIndex]),
2381                     mPortBuffers[portIndex].size());
2382
2383            if (mState == RECONFIGURING) {
2384                CHECK_EQ(portIndex, (OMX_U32)kPortIndexOutput);
2385
2386                disablePortAsync(portIndex);
2387            } else if (mState == EXECUTING_TO_IDLE) {
2388                if (mPortStatus[kPortIndexInput] == ENABLED
2389                    && mPortStatus[kPortIndexOutput] == ENABLED) {
2390                    CODEC_LOGV("Finished flushing both ports, now completing "
2391                         "transition from EXECUTING to IDLE.");
2392
2393                    mPortStatus[kPortIndexInput] = SHUTTING_DOWN;
2394                    mPortStatus[kPortIndexOutput] = SHUTTING_DOWN;
2395
2396                    status_t err =
2397                        mOMX->sendCommand(mNode, OMX_CommandStateSet, OMX_StateIdle);
2398                    CHECK_EQ(err, (status_t)OK);
2399                }
2400            } else {
2401                // We're flushing both ports in preparation for seeking.
2402
2403                if (mPortStatus[kPortIndexInput] == ENABLED
2404                    && mPortStatus[kPortIndexOutput] == ENABLED) {
2405                    CODEC_LOGV("Finished flushing both ports, now continuing from"
2406                         " seek-time.");
2407
2408                    // We implicitly resume pulling on our upstream source.
2409                    mPaused = false;
2410
2411                    drainInputBuffers();
2412                    fillOutputBuffers();
2413                }
2414
2415                if (mOutputPortSettingsChangedPending) {
2416                    CODEC_LOGV(
2417                            "Honoring deferred output port settings change.");
2418
2419                    mOutputPortSettingsChangedPending = false;
2420                    onPortSettingsChanged(kPortIndexOutput);
2421                }
2422            }
2423
2424            break;
2425        }
2426
2427        default:
2428        {
2429            CODEC_LOGV("CMD_COMPLETE(%d, %ld)", cmd, data);
2430            break;
2431        }
2432    }
2433}
2434
2435void OMXCodec::onStateChange(OMX_STATETYPE newState) {
2436    CODEC_LOGV("onStateChange %d", newState);
2437
2438    switch (newState) {
2439        case OMX_StateIdle:
2440        {
2441            CODEC_LOGV("Now Idle.");
2442            if (mState == LOADED_TO_IDLE) {
2443                status_t err = mOMX->sendCommand(
2444                        mNode, OMX_CommandStateSet, OMX_StateExecuting);
2445
2446                CHECK_EQ(err, (status_t)OK);
2447
2448                setState(IDLE_TO_EXECUTING);
2449            } else {
2450                CHECK_EQ((int)mState, (int)EXECUTING_TO_IDLE);
2451
2452                CHECK_EQ(
2453                    countBuffersWeOwn(mPortBuffers[kPortIndexInput]),
2454                    mPortBuffers[kPortIndexInput].size());
2455
2456                CHECK_EQ(
2457                    countBuffersWeOwn(mPortBuffers[kPortIndexOutput]),
2458                    mPortBuffers[kPortIndexOutput].size());
2459
2460                status_t err = mOMX->sendCommand(
2461                        mNode, OMX_CommandStateSet, OMX_StateLoaded);
2462
2463                CHECK_EQ(err, (status_t)OK);
2464
2465                err = freeBuffersOnPort(kPortIndexInput);
2466                CHECK_EQ(err, (status_t)OK);
2467
2468                err = freeBuffersOnPort(kPortIndexOutput);
2469                CHECK_EQ(err, (status_t)OK);
2470
2471                mPortStatus[kPortIndexInput] = ENABLED;
2472                mPortStatus[kPortIndexOutput] = ENABLED;
2473
2474                setState(IDLE_TO_LOADED);
2475            }
2476            break;
2477        }
2478
2479        case OMX_StateExecuting:
2480        {
2481            CHECK_EQ((int)mState, (int)IDLE_TO_EXECUTING);
2482
2483            CODEC_LOGV("Now Executing.");
2484
2485            mOutputPortSettingsChangedPending = false;
2486
2487            setState(EXECUTING);
2488
2489            // Buffers will be submitted to the component in the first
2490            // call to OMXCodec::read as mInitialBufferSubmit is true at
2491            // this point. This ensures that this on_message call returns,
2492            // releases the lock and ::init can notice the state change and
2493            // itself return.
2494            break;
2495        }
2496
2497        case OMX_StateLoaded:
2498        {
2499            CHECK_EQ((int)mState, (int)IDLE_TO_LOADED);
2500
2501            CODEC_LOGV("Now Loaded.");
2502
2503            setState(LOADED);
2504            break;
2505        }
2506
2507        case OMX_StateInvalid:
2508        {
2509            setState(ERROR);
2510            break;
2511        }
2512
2513        default:
2514        {
2515            CHECK(!"should not be here.");
2516            break;
2517        }
2518    }
2519}
2520
2521// static
2522size_t OMXCodec::countBuffersWeOwn(const Vector<BufferInfo> &buffers) {
2523    size_t n = 0;
2524    for (size_t i = 0; i < buffers.size(); ++i) {
2525        if (buffers[i].mStatus != OWNED_BY_COMPONENT) {
2526            ++n;
2527        }
2528    }
2529
2530    return n;
2531}
2532
2533status_t OMXCodec::freeBuffersOnPort(
2534        OMX_U32 portIndex, bool onlyThoseWeOwn) {
2535    Vector<BufferInfo> *buffers = &mPortBuffers[portIndex];
2536
2537    status_t stickyErr = OK;
2538
2539    for (size_t i = buffers->size(); i-- > 0;) {
2540        BufferInfo *info = &buffers->editItemAt(i);
2541
2542        if (onlyThoseWeOwn && info->mStatus == OWNED_BY_COMPONENT) {
2543            continue;
2544        }
2545
2546        CHECK(info->mStatus == OWNED_BY_US
2547                || info->mStatus == OWNED_BY_NATIVE_WINDOW);
2548
2549        CODEC_LOGV("freeing buffer %p on port %ld", info->mBuffer, portIndex);
2550
2551        status_t err = freeBuffer(portIndex, i);
2552
2553        if (err != OK) {
2554            stickyErr = err;
2555        }
2556
2557    }
2558
2559    CHECK(onlyThoseWeOwn || buffers->isEmpty());
2560
2561    return stickyErr;
2562}
2563
2564status_t OMXCodec::freeBuffer(OMX_U32 portIndex, size_t bufIndex) {
2565    Vector<BufferInfo> *buffers = &mPortBuffers[portIndex];
2566
2567    BufferInfo *info = &buffers->editItemAt(bufIndex);
2568
2569    status_t err = mOMX->freeBuffer(mNode, portIndex, info->mBuffer);
2570
2571    if (err == OK && info->mMediaBuffer != NULL) {
2572        CHECK_EQ(portIndex, (OMX_U32)kPortIndexOutput);
2573        info->mMediaBuffer->setObserver(NULL);
2574
2575        // Make sure nobody but us owns this buffer at this point.
2576        CHECK_EQ(info->mMediaBuffer->refcount(), 0);
2577
2578        // Cancel the buffer if it belongs to an ANativeWindow.
2579        sp<GraphicBuffer> graphicBuffer = info->mMediaBuffer->graphicBuffer();
2580        if (info->mStatus == OWNED_BY_US && graphicBuffer != 0) {
2581            err = cancelBufferToNativeWindow(info);
2582        }
2583
2584        info->mMediaBuffer->release();
2585        info->mMediaBuffer = NULL;
2586    }
2587
2588    if (err == OK) {
2589        buffers->removeAt(bufIndex);
2590    }
2591
2592    return err;
2593}
2594
2595void OMXCodec::onPortSettingsChanged(OMX_U32 portIndex) {
2596    CODEC_LOGV("PORT_SETTINGS_CHANGED(%ld)", portIndex);
2597
2598    CHECK_EQ((int)mState, (int)EXECUTING);
2599    CHECK_EQ(portIndex, (OMX_U32)kPortIndexOutput);
2600    CHECK(!mOutputPortSettingsChangedPending);
2601
2602    if (mPortStatus[kPortIndexOutput] != ENABLED) {
2603        CODEC_LOGV("Deferring output port settings change.");
2604        mOutputPortSettingsChangedPending = true;
2605        return;
2606    }
2607
2608    setState(RECONFIGURING);
2609
2610    if (mQuirks & kNeedsFlushBeforeDisable) {
2611        if (!flushPortAsync(portIndex)) {
2612            onCmdComplete(OMX_CommandFlush, portIndex);
2613        }
2614    } else {
2615        disablePortAsync(portIndex);
2616    }
2617}
2618
2619bool OMXCodec::flushPortAsync(OMX_U32 portIndex) {
2620    CHECK(mState == EXECUTING || mState == RECONFIGURING
2621            || mState == EXECUTING_TO_IDLE);
2622
2623    CODEC_LOGV("flushPortAsync(%ld): we own %d out of %d buffers already.",
2624         portIndex, countBuffersWeOwn(mPortBuffers[portIndex]),
2625         mPortBuffers[portIndex].size());
2626
2627    CHECK_EQ((int)mPortStatus[portIndex], (int)ENABLED);
2628    mPortStatus[portIndex] = SHUTTING_DOWN;
2629
2630    if ((mQuirks & kRequiresFlushCompleteEmulation)
2631        && countBuffersWeOwn(mPortBuffers[portIndex])
2632                == mPortBuffers[portIndex].size()) {
2633        // No flush is necessary and this component fails to send a
2634        // flush-complete event in this case.
2635
2636        return false;
2637    }
2638
2639    status_t err =
2640        mOMX->sendCommand(mNode, OMX_CommandFlush, portIndex);
2641    CHECK_EQ(err, (status_t)OK);
2642
2643    return true;
2644}
2645
2646void OMXCodec::disablePortAsync(OMX_U32 portIndex) {
2647    CHECK(mState == EXECUTING || mState == RECONFIGURING);
2648
2649    CHECK_EQ((int)mPortStatus[portIndex], (int)ENABLED);
2650    mPortStatus[portIndex] = DISABLING;
2651
2652    CODEC_LOGV("sending OMX_CommandPortDisable(%ld)", portIndex);
2653    status_t err =
2654        mOMX->sendCommand(mNode, OMX_CommandPortDisable, portIndex);
2655    CHECK_EQ(err, (status_t)OK);
2656
2657    freeBuffersOnPort(portIndex, true);
2658}
2659
2660void OMXCodec::enablePortAsync(OMX_U32 portIndex) {
2661    CHECK(mState == EXECUTING || mState == RECONFIGURING);
2662
2663    CHECK_EQ((int)mPortStatus[portIndex], (int)DISABLED);
2664    mPortStatus[portIndex] = ENABLING;
2665
2666    CODEC_LOGV("sending OMX_CommandPortEnable(%ld)", portIndex);
2667    status_t err =
2668        mOMX->sendCommand(mNode, OMX_CommandPortEnable, portIndex);
2669    CHECK_EQ(err, (status_t)OK);
2670}
2671
2672void OMXCodec::fillOutputBuffers() {
2673    CHECK_EQ((int)mState, (int)EXECUTING);
2674
2675    // This is a workaround for some decoders not properly reporting
2676    // end-of-output-stream. If we own all input buffers and also own
2677    // all output buffers and we already signalled end-of-input-stream,
2678    // the end-of-output-stream is implied.
2679    if (mSignalledEOS
2680            && countBuffersWeOwn(mPortBuffers[kPortIndexInput])
2681                == mPortBuffers[kPortIndexInput].size()
2682            && countBuffersWeOwn(mPortBuffers[kPortIndexOutput])
2683                == mPortBuffers[kPortIndexOutput].size()) {
2684        mNoMoreOutputData = true;
2685        mBufferFilled.signal();
2686
2687        return;
2688    }
2689
2690    Vector<BufferInfo> *buffers = &mPortBuffers[kPortIndexOutput];
2691    for (size_t i = 0; i < buffers->size(); ++i) {
2692        BufferInfo *info = &buffers->editItemAt(i);
2693        if (info->mStatus == OWNED_BY_US) {
2694            fillOutputBuffer(&buffers->editItemAt(i));
2695        }
2696    }
2697}
2698
2699void OMXCodec::drainInputBuffers() {
2700    CHECK(mState == EXECUTING || mState == RECONFIGURING);
2701
2702    Vector<BufferInfo> *buffers = &mPortBuffers[kPortIndexInput];
2703    for (size_t i = 0; i < buffers->size(); ++i) {
2704        BufferInfo *info = &buffers->editItemAt(i);
2705
2706        if (info->mStatus != OWNED_BY_US) {
2707            continue;
2708        }
2709
2710        if (!drainInputBuffer(info)) {
2711            break;
2712        }
2713
2714        if (mOnlySubmitOneBufferAtOneTime) {
2715            break;
2716        }
2717    }
2718}
2719
2720bool OMXCodec::drainInputBuffer(BufferInfo *info) {
2721    CHECK_EQ((int)info->mStatus, (int)OWNED_BY_US);
2722
2723    if (mSignalledEOS) {
2724        return false;
2725    }
2726
2727    if (mCodecSpecificDataIndex < mCodecSpecificData.size()) {
2728        const CodecSpecificData *specific =
2729            mCodecSpecificData[mCodecSpecificDataIndex];
2730
2731        size_t size = specific->mSize;
2732
2733        if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_AVC, mMIME)
2734                && !(mQuirks & kWantsNALFragments)) {
2735            static const uint8_t kNALStartCode[4] =
2736                    { 0x00, 0x00, 0x00, 0x01 };
2737
2738            CHECK(info->mSize >= specific->mSize + 4);
2739
2740            size += 4;
2741
2742            memcpy(info->mData, kNALStartCode, 4);
2743            memcpy((uint8_t *)info->mData + 4,
2744                   specific->mData, specific->mSize);
2745        } else {
2746            CHECK(info->mSize >= specific->mSize);
2747            memcpy(info->mData, specific->mData, specific->mSize);
2748        }
2749
2750        mNoMoreOutputData = false;
2751
2752        CODEC_LOGV("calling emptyBuffer with codec specific data");
2753
2754        status_t err = mOMX->emptyBuffer(
2755                mNode, info->mBuffer, 0, size,
2756                OMX_BUFFERFLAG_ENDOFFRAME | OMX_BUFFERFLAG_CODECCONFIG,
2757                0);
2758        CHECK_EQ(err, (status_t)OK);
2759
2760        info->mStatus = OWNED_BY_COMPONENT;
2761
2762        ++mCodecSpecificDataIndex;
2763        return true;
2764    }
2765
2766    if (mPaused) {
2767        return false;
2768    }
2769
2770    status_t err;
2771
2772    bool signalEOS = false;
2773    int64_t timestampUs = 0;
2774
2775    size_t offset = 0;
2776    int32_t n = 0;
2777
2778    for (;;) {
2779        MediaBuffer *srcBuffer;
2780        if (mSeekTimeUs >= 0) {
2781            if (mLeftOverBuffer) {
2782                mLeftOverBuffer->release();
2783                mLeftOverBuffer = NULL;
2784            }
2785
2786            MediaSource::ReadOptions options;
2787            options.setSeekTo(mSeekTimeUs, mSeekMode);
2788
2789            mSeekTimeUs = -1;
2790            mSeekMode = ReadOptions::SEEK_CLOSEST_SYNC;
2791            mBufferFilled.signal();
2792
2793            err = mSource->read(&srcBuffer, &options);
2794
2795            if (err == OK) {
2796                int64_t targetTimeUs;
2797                if (srcBuffer->meta_data()->findInt64(
2798                            kKeyTargetTime, &targetTimeUs)
2799                        && targetTimeUs >= 0) {
2800                    CODEC_LOGV("targetTimeUs = %lld us", targetTimeUs);
2801                    mTargetTimeUs = targetTimeUs;
2802                } else {
2803                    mTargetTimeUs = -1;
2804                }
2805            }
2806        } else if (mLeftOverBuffer) {
2807            srcBuffer = mLeftOverBuffer;
2808            mLeftOverBuffer = NULL;
2809
2810            err = OK;
2811        } else {
2812            err = mSource->read(&srcBuffer);
2813        }
2814
2815        if (err != OK) {
2816            signalEOS = true;
2817            mFinalStatus = err;
2818            mSignalledEOS = true;
2819            mBufferFilled.signal();
2820            break;
2821        }
2822
2823        size_t remainingBytes = info->mSize - offset;
2824
2825        if (srcBuffer->range_length() > remainingBytes) {
2826            if (offset == 0) {
2827                CODEC_LOGE(
2828                     "Codec's input buffers are too small to accomodate "
2829                     "buffer read from source (info->mSize = %d, srcLength = %d)",
2830                     info->mSize, srcBuffer->range_length());
2831
2832                srcBuffer->release();
2833                srcBuffer = NULL;
2834
2835                setState(ERROR);
2836                return false;
2837            }
2838
2839            mLeftOverBuffer = srcBuffer;
2840            break;
2841        }
2842
2843        bool releaseBuffer = true;
2844        if (mIsEncoder && (mQuirks & kAvoidMemcopyInputRecordingFrames)) {
2845            CHECK(mOMXLivesLocally && offset == 0);
2846
2847            OMX_BUFFERHEADERTYPE *header =
2848                (OMX_BUFFERHEADERTYPE *)info->mBuffer;
2849
2850            CHECK(header->pBuffer == info->mData);
2851
2852            header->pBuffer =
2853                (OMX_U8 *)srcBuffer->data() + srcBuffer->range_offset();
2854
2855            releaseBuffer = false;
2856            info->mMediaBuffer = srcBuffer;
2857        } else {
2858            if (mIsMetaDataStoredInVideoBuffers) {
2859                releaseBuffer = false;
2860                info->mMediaBuffer = srcBuffer;
2861            }
2862            memcpy((uint8_t *)info->mData + offset,
2863                    (const uint8_t *)srcBuffer->data()
2864                        + srcBuffer->range_offset(),
2865                    srcBuffer->range_length());
2866        }
2867
2868        int64_t lastBufferTimeUs;
2869        CHECK(srcBuffer->meta_data()->findInt64(kKeyTime, &lastBufferTimeUs));
2870        CHECK(lastBufferTimeUs >= 0);
2871
2872        if (offset == 0) {
2873            timestampUs = lastBufferTimeUs;
2874        }
2875
2876        offset += srcBuffer->range_length();
2877
2878        if (releaseBuffer) {
2879            srcBuffer->release();
2880            srcBuffer = NULL;
2881        }
2882
2883        ++n;
2884
2885        if (!(mQuirks & kSupportsMultipleFramesPerInputBuffer)) {
2886            break;
2887        }
2888
2889        int64_t coalescedDurationUs = lastBufferTimeUs - timestampUs;
2890
2891        if (coalescedDurationUs > 250000ll) {
2892            // Don't coalesce more than 250ms worth of encoded data at once.
2893            break;
2894        }
2895    }
2896
2897    if (n > 1) {
2898        LOGV("coalesced %d frames into one input buffer", n);
2899    }
2900
2901    OMX_U32 flags = OMX_BUFFERFLAG_ENDOFFRAME;
2902
2903    if (signalEOS) {
2904        flags |= OMX_BUFFERFLAG_EOS;
2905    } else {
2906        mNoMoreOutputData = false;
2907    }
2908
2909    CODEC_LOGV("Calling emptyBuffer on buffer %p (length %d), "
2910               "timestamp %lld us (%.2f secs)",
2911               info->mBuffer, offset,
2912               timestampUs, timestampUs / 1E6);
2913
2914    err = mOMX->emptyBuffer(
2915            mNode, info->mBuffer, 0, offset,
2916            flags, timestampUs);
2917
2918    if (err != OK) {
2919        setState(ERROR);
2920        return false;
2921    }
2922
2923    info->mStatus = OWNED_BY_COMPONENT;
2924
2925    // This component does not ever signal the EOS flag on output buffers,
2926    // Thanks for nothing.
2927    if (mSignalledEOS && !strcmp(mComponentName, "OMX.TI.Video.encoder")) {
2928        mNoMoreOutputData = true;
2929        mBufferFilled.signal();
2930    }
2931
2932    return true;
2933}
2934
2935void OMXCodec::fillOutputBuffer(BufferInfo *info) {
2936    CHECK_EQ((int)info->mStatus, (int)OWNED_BY_US);
2937
2938    if (mNoMoreOutputData) {
2939        CODEC_LOGV("There is no more output data available, not "
2940             "calling fillOutputBuffer");
2941        return;
2942    }
2943
2944    if (info->mMediaBuffer != NULL) {
2945        sp<GraphicBuffer> graphicBuffer = info->mMediaBuffer->graphicBuffer();
2946        if (graphicBuffer != 0) {
2947            // When using a native buffer we need to lock the buffer before
2948            // giving it to OMX.
2949            CODEC_LOGV("Calling lockBuffer on %p", info->mBuffer);
2950            int err = mNativeWindow->lockBuffer(mNativeWindow.get(),
2951                    graphicBuffer.get());
2952            if (err != 0) {
2953                CODEC_LOGE("lockBuffer failed w/ error 0x%08x", err);
2954
2955                setState(ERROR);
2956                return;
2957            }
2958        }
2959    }
2960
2961    CODEC_LOGV("Calling fillBuffer on buffer %p", info->mBuffer);
2962    status_t err = mOMX->fillBuffer(mNode, info->mBuffer);
2963
2964    if (err != OK) {
2965        CODEC_LOGE("fillBuffer failed w/ error 0x%08x", err);
2966
2967        setState(ERROR);
2968        return;
2969    }
2970
2971    info->mStatus = OWNED_BY_COMPONENT;
2972}
2973
2974bool OMXCodec::drainInputBuffer(IOMX::buffer_id buffer) {
2975    Vector<BufferInfo> *buffers = &mPortBuffers[kPortIndexInput];
2976    for (size_t i = 0; i < buffers->size(); ++i) {
2977        if ((*buffers)[i].mBuffer == buffer) {
2978            return drainInputBuffer(&buffers->editItemAt(i));
2979        }
2980    }
2981
2982    CHECK(!"should not be here.");
2983
2984    return false;
2985}
2986
2987void OMXCodec::fillOutputBuffer(IOMX::buffer_id buffer) {
2988    Vector<BufferInfo> *buffers = &mPortBuffers[kPortIndexOutput];
2989    for (size_t i = 0; i < buffers->size(); ++i) {
2990        if ((*buffers)[i].mBuffer == buffer) {
2991            fillOutputBuffer(&buffers->editItemAt(i));
2992            return;
2993        }
2994    }
2995
2996    CHECK(!"should not be here.");
2997}
2998
2999void OMXCodec::setState(State newState) {
3000    mState = newState;
3001    mAsyncCompletion.signal();
3002
3003    // This may cause some spurious wakeups but is necessary to
3004    // unblock the reader if we enter ERROR state.
3005    mBufferFilled.signal();
3006}
3007
3008void OMXCodec::setRawAudioFormat(
3009        OMX_U32 portIndex, int32_t sampleRate, int32_t numChannels) {
3010
3011    // port definition
3012    OMX_PARAM_PORTDEFINITIONTYPE def;
3013    InitOMXParams(&def);
3014    def.nPortIndex = portIndex;
3015    status_t err = mOMX->getParameter(
3016            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
3017    CHECK_EQ(err, (status_t)OK);
3018    def.format.audio.eEncoding = OMX_AUDIO_CodingPCM;
3019    CHECK_EQ(mOMX->setParameter(mNode, OMX_IndexParamPortDefinition,
3020            &def, sizeof(def)), (status_t)OK);
3021
3022    // pcm param
3023    OMX_AUDIO_PARAM_PCMMODETYPE pcmParams;
3024    InitOMXParams(&pcmParams);
3025    pcmParams.nPortIndex = portIndex;
3026
3027    err = mOMX->getParameter(
3028            mNode, OMX_IndexParamAudioPcm, &pcmParams, sizeof(pcmParams));
3029
3030    CHECK_EQ(err, (status_t)OK);
3031
3032    pcmParams.nChannels = numChannels;
3033    pcmParams.eNumData = OMX_NumericalDataSigned;
3034    pcmParams.bInterleaved = OMX_TRUE;
3035    pcmParams.nBitPerSample = 16;
3036    pcmParams.nSamplingRate = sampleRate;
3037    pcmParams.ePCMMode = OMX_AUDIO_PCMModeLinear;
3038
3039    if (numChannels == 1) {
3040        pcmParams.eChannelMapping[0] = OMX_AUDIO_ChannelCF;
3041    } else {
3042        CHECK_EQ(numChannels, 2);
3043
3044        pcmParams.eChannelMapping[0] = OMX_AUDIO_ChannelLF;
3045        pcmParams.eChannelMapping[1] = OMX_AUDIO_ChannelRF;
3046    }
3047
3048    err = mOMX->setParameter(
3049            mNode, OMX_IndexParamAudioPcm, &pcmParams, sizeof(pcmParams));
3050
3051    CHECK_EQ(err, (status_t)OK);
3052}
3053
3054static OMX_AUDIO_AMRBANDMODETYPE pickModeFromBitRate(bool isAMRWB, int32_t bps) {
3055    if (isAMRWB) {
3056        if (bps <= 6600) {
3057            return OMX_AUDIO_AMRBandModeWB0;
3058        } else if (bps <= 8850) {
3059            return OMX_AUDIO_AMRBandModeWB1;
3060        } else if (bps <= 12650) {
3061            return OMX_AUDIO_AMRBandModeWB2;
3062        } else if (bps <= 14250) {
3063            return OMX_AUDIO_AMRBandModeWB3;
3064        } else if (bps <= 15850) {
3065            return OMX_AUDIO_AMRBandModeWB4;
3066        } else if (bps <= 18250) {
3067            return OMX_AUDIO_AMRBandModeWB5;
3068        } else if (bps <= 19850) {
3069            return OMX_AUDIO_AMRBandModeWB6;
3070        } else if (bps <= 23050) {
3071            return OMX_AUDIO_AMRBandModeWB7;
3072        }
3073
3074        // 23850 bps
3075        return OMX_AUDIO_AMRBandModeWB8;
3076    } else {  // AMRNB
3077        if (bps <= 4750) {
3078            return OMX_AUDIO_AMRBandModeNB0;
3079        } else if (bps <= 5150) {
3080            return OMX_AUDIO_AMRBandModeNB1;
3081        } else if (bps <= 5900) {
3082            return OMX_AUDIO_AMRBandModeNB2;
3083        } else if (bps <= 6700) {
3084            return OMX_AUDIO_AMRBandModeNB3;
3085        } else if (bps <= 7400) {
3086            return OMX_AUDIO_AMRBandModeNB4;
3087        } else if (bps <= 7950) {
3088            return OMX_AUDIO_AMRBandModeNB5;
3089        } else if (bps <= 10200) {
3090            return OMX_AUDIO_AMRBandModeNB6;
3091        }
3092
3093        // 12200 bps
3094        return OMX_AUDIO_AMRBandModeNB7;
3095    }
3096}
3097
3098void OMXCodec::setAMRFormat(bool isWAMR, int32_t bitRate) {
3099    OMX_U32 portIndex = mIsEncoder ? kPortIndexOutput : kPortIndexInput;
3100
3101    OMX_AUDIO_PARAM_AMRTYPE def;
3102    InitOMXParams(&def);
3103    def.nPortIndex = portIndex;
3104
3105    status_t err =
3106        mOMX->getParameter(mNode, OMX_IndexParamAudioAmr, &def, sizeof(def));
3107
3108    CHECK_EQ(err, (status_t)OK);
3109
3110    def.eAMRFrameFormat = OMX_AUDIO_AMRFrameFormatFSF;
3111
3112    def.eAMRBandMode = pickModeFromBitRate(isWAMR, bitRate);
3113    err = mOMX->setParameter(mNode, OMX_IndexParamAudioAmr, &def, sizeof(def));
3114    CHECK_EQ(err, (status_t)OK);
3115
3116    ////////////////////////
3117
3118    if (mIsEncoder) {
3119        sp<MetaData> format = mSource->getFormat();
3120        int32_t sampleRate;
3121        int32_t numChannels;
3122        CHECK(format->findInt32(kKeySampleRate, &sampleRate));
3123        CHECK(format->findInt32(kKeyChannelCount, &numChannels));
3124
3125        setRawAudioFormat(kPortIndexInput, sampleRate, numChannels);
3126    }
3127}
3128
3129void OMXCodec::setAACFormat(int32_t numChannels, int32_t sampleRate, int32_t bitRate) {
3130    CHECK(numChannels == 1 || numChannels == 2);
3131    if (mIsEncoder) {
3132        //////////////// input port ////////////////////
3133        setRawAudioFormat(kPortIndexInput, sampleRate, numChannels);
3134
3135        //////////////// output port ////////////////////
3136        // format
3137        OMX_AUDIO_PARAM_PORTFORMATTYPE format;
3138        format.nPortIndex = kPortIndexOutput;
3139        format.nIndex = 0;
3140        status_t err = OMX_ErrorNone;
3141        while (OMX_ErrorNone == err) {
3142            CHECK_EQ(mOMX->getParameter(mNode, OMX_IndexParamAudioPortFormat,
3143                    &format, sizeof(format)), (status_t)OK);
3144            if (format.eEncoding == OMX_AUDIO_CodingAAC) {
3145                break;
3146            }
3147            format.nIndex++;
3148        }
3149        CHECK_EQ((status_t)OK, err);
3150        CHECK_EQ(mOMX->setParameter(mNode, OMX_IndexParamAudioPortFormat,
3151                &format, sizeof(format)), (status_t)OK);
3152
3153        // port definition
3154        OMX_PARAM_PORTDEFINITIONTYPE def;
3155        InitOMXParams(&def);
3156        def.nPortIndex = kPortIndexOutput;
3157        CHECK_EQ(mOMX->getParameter(mNode, OMX_IndexParamPortDefinition,
3158                &def, sizeof(def)), (status_t)OK);
3159        def.format.audio.bFlagErrorConcealment = OMX_TRUE;
3160        def.format.audio.eEncoding = OMX_AUDIO_CodingAAC;
3161        CHECK_EQ(mOMX->setParameter(mNode, OMX_IndexParamPortDefinition,
3162                &def, sizeof(def)), (status_t)OK);
3163
3164        // profile
3165        OMX_AUDIO_PARAM_AACPROFILETYPE profile;
3166        InitOMXParams(&profile);
3167        profile.nPortIndex = kPortIndexOutput;
3168        CHECK_EQ(mOMX->getParameter(mNode, OMX_IndexParamAudioAac,
3169                &profile, sizeof(profile)), (status_t)OK);
3170        profile.nChannels = numChannels;
3171        profile.eChannelMode = (numChannels == 1?
3172                OMX_AUDIO_ChannelModeMono: OMX_AUDIO_ChannelModeStereo);
3173        profile.nSampleRate = sampleRate;
3174        profile.nBitRate = bitRate;
3175        profile.nAudioBandWidth = 0;
3176        profile.nFrameLength = 0;
3177        profile.nAACtools = OMX_AUDIO_AACToolAll;
3178        profile.nAACERtools = OMX_AUDIO_AACERNone;
3179        profile.eAACProfile = OMX_AUDIO_AACObjectLC;
3180        profile.eAACStreamFormat = OMX_AUDIO_AACStreamFormatMP4FF;
3181        CHECK_EQ(mOMX->setParameter(mNode, OMX_IndexParamAudioAac,
3182                &profile, sizeof(profile)), (status_t)OK);
3183
3184    } else {
3185        OMX_AUDIO_PARAM_AACPROFILETYPE profile;
3186        InitOMXParams(&profile);
3187        profile.nPortIndex = kPortIndexInput;
3188
3189        status_t err = mOMX->getParameter(
3190                mNode, OMX_IndexParamAudioAac, &profile, sizeof(profile));
3191        CHECK_EQ(err, (status_t)OK);
3192
3193        profile.nChannels = numChannels;
3194        profile.nSampleRate = sampleRate;
3195        profile.eAACStreamFormat = OMX_AUDIO_AACStreamFormatMP4ADTS;
3196
3197        err = mOMX->setParameter(
3198                mNode, OMX_IndexParamAudioAac, &profile, sizeof(profile));
3199        CHECK_EQ(err, (status_t)OK);
3200    }
3201}
3202
3203void OMXCodec::setImageOutputFormat(
3204        OMX_COLOR_FORMATTYPE format, OMX_U32 width, OMX_U32 height) {
3205    CODEC_LOGV("setImageOutputFormat(%ld, %ld)", width, height);
3206
3207#if 0
3208    OMX_INDEXTYPE index;
3209    status_t err = mOMX->get_extension_index(
3210            mNode, "OMX.TI.JPEG.decode.Config.OutputColorFormat", &index);
3211    CHECK_EQ(err, (status_t)OK);
3212
3213    err = mOMX->set_config(mNode, index, &format, sizeof(format));
3214    CHECK_EQ(err, (status_t)OK);
3215#endif
3216
3217    OMX_PARAM_PORTDEFINITIONTYPE def;
3218    InitOMXParams(&def);
3219    def.nPortIndex = kPortIndexOutput;
3220
3221    status_t err = mOMX->getParameter(
3222            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
3223    CHECK_EQ(err, (status_t)OK);
3224
3225    CHECK_EQ((int)def.eDomain, (int)OMX_PortDomainImage);
3226
3227    OMX_IMAGE_PORTDEFINITIONTYPE *imageDef = &def.format.image;
3228
3229    CHECK_EQ((int)imageDef->eCompressionFormat, (int)OMX_IMAGE_CodingUnused);
3230    imageDef->eColorFormat = format;
3231    imageDef->nFrameWidth = width;
3232    imageDef->nFrameHeight = height;
3233
3234    switch (format) {
3235        case OMX_COLOR_FormatYUV420PackedPlanar:
3236        case OMX_COLOR_FormatYUV411Planar:
3237        {
3238            def.nBufferSize = (width * height * 3) / 2;
3239            break;
3240        }
3241
3242        case OMX_COLOR_FormatCbYCrY:
3243        {
3244            def.nBufferSize = width * height * 2;
3245            break;
3246        }
3247
3248        case OMX_COLOR_Format32bitARGB8888:
3249        {
3250            def.nBufferSize = width * height * 4;
3251            break;
3252        }
3253
3254        case OMX_COLOR_Format16bitARGB4444:
3255        case OMX_COLOR_Format16bitARGB1555:
3256        case OMX_COLOR_Format16bitRGB565:
3257        case OMX_COLOR_Format16bitBGR565:
3258        {
3259            def.nBufferSize = width * height * 2;
3260            break;
3261        }
3262
3263        default:
3264            CHECK(!"Should not be here. Unknown color format.");
3265            break;
3266    }
3267
3268    def.nBufferCountActual = def.nBufferCountMin;
3269
3270    err = mOMX->setParameter(
3271            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
3272    CHECK_EQ(err, (status_t)OK);
3273}
3274
3275void OMXCodec::setJPEGInputFormat(
3276        OMX_U32 width, OMX_U32 height, OMX_U32 compressedSize) {
3277    OMX_PARAM_PORTDEFINITIONTYPE def;
3278    InitOMXParams(&def);
3279    def.nPortIndex = kPortIndexInput;
3280
3281    status_t err = mOMX->getParameter(
3282            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
3283    CHECK_EQ(err, (status_t)OK);
3284
3285    CHECK_EQ((int)def.eDomain, (int)OMX_PortDomainImage);
3286    OMX_IMAGE_PORTDEFINITIONTYPE *imageDef = &def.format.image;
3287
3288    CHECK_EQ((int)imageDef->eCompressionFormat, (int)OMX_IMAGE_CodingJPEG);
3289    imageDef->nFrameWidth = width;
3290    imageDef->nFrameHeight = height;
3291
3292    def.nBufferSize = compressedSize;
3293    def.nBufferCountActual = def.nBufferCountMin;
3294
3295    err = mOMX->setParameter(
3296            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
3297    CHECK_EQ(err, (status_t)OK);
3298}
3299
3300void OMXCodec::addCodecSpecificData(const void *data, size_t size) {
3301    CodecSpecificData *specific =
3302        (CodecSpecificData *)malloc(sizeof(CodecSpecificData) + size - 1);
3303
3304    specific->mSize = size;
3305    memcpy(specific->mData, data, size);
3306
3307    mCodecSpecificData.push(specific);
3308}
3309
3310void OMXCodec::clearCodecSpecificData() {
3311    for (size_t i = 0; i < mCodecSpecificData.size(); ++i) {
3312        free(mCodecSpecificData.editItemAt(i));
3313    }
3314    mCodecSpecificData.clear();
3315    mCodecSpecificDataIndex = 0;
3316}
3317
3318status_t OMXCodec::start(MetaData *meta) {
3319    Mutex::Autolock autoLock(mLock);
3320
3321    if (mState != LOADED) {
3322        return UNKNOWN_ERROR;
3323    }
3324
3325    sp<MetaData> params = new MetaData;
3326    if (mQuirks & kWantsNALFragments) {
3327        params->setInt32(kKeyWantsNALFragments, true);
3328    }
3329    if (meta) {
3330        int64_t startTimeUs = 0;
3331        int64_t timeUs;
3332        if (meta->findInt64(kKeyTime, &timeUs)) {
3333            startTimeUs = timeUs;
3334        }
3335        params->setInt64(kKeyTime, startTimeUs);
3336    }
3337    status_t err = mSource->start(params.get());
3338
3339    if (err != OK) {
3340        return err;
3341    }
3342
3343    mCodecSpecificDataIndex = 0;
3344    mInitialBufferSubmit = true;
3345    mSignalledEOS = false;
3346    mNoMoreOutputData = false;
3347    mOutputPortSettingsHaveChanged = false;
3348    mSeekTimeUs = -1;
3349    mSeekMode = ReadOptions::SEEK_CLOSEST_SYNC;
3350    mTargetTimeUs = -1;
3351    mFilledBuffers.clear();
3352    mPaused = false;
3353
3354    return init();
3355}
3356
3357status_t OMXCodec::stop() {
3358    CODEC_LOGV("stop mState=%d", mState);
3359
3360    Mutex::Autolock autoLock(mLock);
3361
3362    while (isIntermediateState(mState)) {
3363        mAsyncCompletion.wait(mLock);
3364    }
3365
3366    switch (mState) {
3367        case LOADED:
3368        case ERROR:
3369            break;
3370
3371        case EXECUTING:
3372        {
3373            setState(EXECUTING_TO_IDLE);
3374
3375            if (mQuirks & kRequiresFlushBeforeShutdown) {
3376                CODEC_LOGV("This component requires a flush before transitioning "
3377                     "from EXECUTING to IDLE...");
3378
3379                bool emulateInputFlushCompletion =
3380                    !flushPortAsync(kPortIndexInput);
3381
3382                bool emulateOutputFlushCompletion =
3383                    !flushPortAsync(kPortIndexOutput);
3384
3385                if (emulateInputFlushCompletion) {
3386                    onCmdComplete(OMX_CommandFlush, kPortIndexInput);
3387                }
3388
3389                if (emulateOutputFlushCompletion) {
3390                    onCmdComplete(OMX_CommandFlush, kPortIndexOutput);
3391                }
3392            } else {
3393                mPortStatus[kPortIndexInput] = SHUTTING_DOWN;
3394                mPortStatus[kPortIndexOutput] = SHUTTING_DOWN;
3395
3396                status_t err =
3397                    mOMX->sendCommand(mNode, OMX_CommandStateSet, OMX_StateIdle);
3398                CHECK_EQ(err, (status_t)OK);
3399            }
3400
3401            while (mState != LOADED && mState != ERROR) {
3402                mAsyncCompletion.wait(mLock);
3403            }
3404
3405            break;
3406        }
3407
3408        default:
3409        {
3410            CHECK(!"should not be here.");
3411            break;
3412        }
3413    }
3414
3415    if (mLeftOverBuffer) {
3416        mLeftOverBuffer->release();
3417        mLeftOverBuffer = NULL;
3418    }
3419
3420    mSource->stop();
3421
3422    CODEC_LOGI("stopped in state %d", mState);
3423
3424    return OK;
3425}
3426
3427sp<MetaData> OMXCodec::getFormat() {
3428    Mutex::Autolock autoLock(mLock);
3429
3430    return mOutputFormat;
3431}
3432
3433status_t OMXCodec::read(
3434        MediaBuffer **buffer, const ReadOptions *options) {
3435    *buffer = NULL;
3436
3437    Mutex::Autolock autoLock(mLock);
3438
3439    if (mState != EXECUTING && mState != RECONFIGURING) {
3440        return UNKNOWN_ERROR;
3441    }
3442
3443    bool seeking = false;
3444    int64_t seekTimeUs;
3445    ReadOptions::SeekMode seekMode;
3446    if (options && options->getSeekTo(&seekTimeUs, &seekMode)) {
3447        seeking = true;
3448    }
3449
3450    if (mInitialBufferSubmit) {
3451        mInitialBufferSubmit = false;
3452
3453        if (seeking) {
3454            CHECK(seekTimeUs >= 0);
3455            mSeekTimeUs = seekTimeUs;
3456            mSeekMode = seekMode;
3457
3458            // There's no reason to trigger the code below, there's
3459            // nothing to flush yet.
3460            seeking = false;
3461            mPaused = false;
3462        }
3463
3464        drainInputBuffers();
3465
3466        if (mState == EXECUTING) {
3467            // Otherwise mState == RECONFIGURING and this code will trigger
3468            // after the output port is reenabled.
3469            fillOutputBuffers();
3470        }
3471    }
3472
3473    if (seeking) {
3474        while (mState == RECONFIGURING) {
3475            mBufferFilled.wait(mLock);
3476        }
3477
3478        if (mState != EXECUTING) {
3479            return UNKNOWN_ERROR;
3480        }
3481
3482        CODEC_LOGV("seeking to %lld us (%.2f secs)", seekTimeUs, seekTimeUs / 1E6);
3483
3484        mSignalledEOS = false;
3485
3486        CHECK(seekTimeUs >= 0);
3487        mSeekTimeUs = seekTimeUs;
3488        mSeekMode = seekMode;
3489
3490        mFilledBuffers.clear();
3491
3492        CHECK_EQ((int)mState, (int)EXECUTING);
3493
3494        bool emulateInputFlushCompletion = !flushPortAsync(kPortIndexInput);
3495        bool emulateOutputFlushCompletion = !flushPortAsync(kPortIndexOutput);
3496
3497        if (emulateInputFlushCompletion) {
3498            onCmdComplete(OMX_CommandFlush, kPortIndexInput);
3499        }
3500
3501        if (emulateOutputFlushCompletion) {
3502            onCmdComplete(OMX_CommandFlush, kPortIndexOutput);
3503        }
3504
3505        while (mSeekTimeUs >= 0) {
3506            mBufferFilled.wait(mLock);
3507        }
3508    }
3509
3510    while (mState != ERROR && !mNoMoreOutputData && mFilledBuffers.empty()) {
3511        if (mIsEncoder) {
3512            if (NO_ERROR != mBufferFilled.waitRelative(mLock, 3000000000LL)) {
3513                LOGW("Timed out waiting for buffers from video encoder: %d/%d",
3514                    countBuffersWeOwn(mPortBuffers[kPortIndexInput]),
3515                    countBuffersWeOwn(mPortBuffers[kPortIndexOutput]));
3516            }
3517        } else {
3518            mBufferFilled.wait(mLock);
3519        }
3520    }
3521
3522    if (mState == ERROR) {
3523        return UNKNOWN_ERROR;
3524    }
3525
3526    if (mFilledBuffers.empty()) {
3527        return mSignalledEOS ? mFinalStatus : ERROR_END_OF_STREAM;
3528    }
3529
3530    if (mOutputPortSettingsHaveChanged) {
3531        mOutputPortSettingsHaveChanged = false;
3532
3533        return INFO_FORMAT_CHANGED;
3534    }
3535
3536    size_t index = *mFilledBuffers.begin();
3537    mFilledBuffers.erase(mFilledBuffers.begin());
3538
3539    BufferInfo *info = &mPortBuffers[kPortIndexOutput].editItemAt(index);
3540    CHECK_EQ((int)info->mStatus, (int)OWNED_BY_US);
3541    info->mStatus = OWNED_BY_CLIENT;
3542
3543    info->mMediaBuffer->add_ref();
3544    *buffer = info->mMediaBuffer;
3545
3546    return OK;
3547}
3548
3549void OMXCodec::signalBufferReturned(MediaBuffer *buffer) {
3550    Mutex::Autolock autoLock(mLock);
3551
3552    Vector<BufferInfo> *buffers = &mPortBuffers[kPortIndexOutput];
3553    for (size_t i = 0; i < buffers->size(); ++i) {
3554        BufferInfo *info = &buffers->editItemAt(i);
3555
3556        if (info->mMediaBuffer == buffer) {
3557            CHECK_EQ((int)mPortStatus[kPortIndexOutput], (int)ENABLED);
3558            CHECK_EQ((int)info->mStatus, (int)OWNED_BY_CLIENT);
3559
3560            info->mStatus = OWNED_BY_US;
3561
3562            if (buffer->graphicBuffer() == 0) {
3563                fillOutputBuffer(info);
3564            } else {
3565                sp<MetaData> metaData = info->mMediaBuffer->meta_data();
3566                int32_t rendered = 0;
3567                if (!metaData->findInt32(kKeyRendered, &rendered)) {
3568                    rendered = 0;
3569                }
3570                if (!rendered) {
3571                    status_t err = cancelBufferToNativeWindow(info);
3572                    if (err < 0) {
3573                        return;
3574                    }
3575                }
3576
3577                info->mStatus = OWNED_BY_NATIVE_WINDOW;
3578
3579                // Dequeue the next buffer from the native window.
3580                BufferInfo *nextBufInfo = dequeueBufferFromNativeWindow();
3581                if (nextBufInfo == 0) {
3582                    return;
3583                }
3584
3585                // Give the buffer to the OMX node to fill.
3586                fillOutputBuffer(nextBufInfo);
3587            }
3588            return;
3589        }
3590    }
3591
3592    CHECK(!"should not be here.");
3593}
3594
3595static const char *imageCompressionFormatString(OMX_IMAGE_CODINGTYPE type) {
3596    static const char *kNames[] = {
3597        "OMX_IMAGE_CodingUnused",
3598        "OMX_IMAGE_CodingAutoDetect",
3599        "OMX_IMAGE_CodingJPEG",
3600        "OMX_IMAGE_CodingJPEG2K",
3601        "OMX_IMAGE_CodingEXIF",
3602        "OMX_IMAGE_CodingTIFF",
3603        "OMX_IMAGE_CodingGIF",
3604        "OMX_IMAGE_CodingPNG",
3605        "OMX_IMAGE_CodingLZW",
3606        "OMX_IMAGE_CodingBMP",
3607    };
3608
3609    size_t numNames = sizeof(kNames) / sizeof(kNames[0]);
3610
3611    if (type < 0 || (size_t)type >= numNames) {
3612        return "UNKNOWN";
3613    } else {
3614        return kNames[type];
3615    }
3616}
3617
3618static const char *colorFormatString(OMX_COLOR_FORMATTYPE type) {
3619    static const char *kNames[] = {
3620        "OMX_COLOR_FormatUnused",
3621        "OMX_COLOR_FormatMonochrome",
3622        "OMX_COLOR_Format8bitRGB332",
3623        "OMX_COLOR_Format12bitRGB444",
3624        "OMX_COLOR_Format16bitARGB4444",
3625        "OMX_COLOR_Format16bitARGB1555",
3626        "OMX_COLOR_Format16bitRGB565",
3627        "OMX_COLOR_Format16bitBGR565",
3628        "OMX_COLOR_Format18bitRGB666",
3629        "OMX_COLOR_Format18bitARGB1665",
3630        "OMX_COLOR_Format19bitARGB1666",
3631        "OMX_COLOR_Format24bitRGB888",
3632        "OMX_COLOR_Format24bitBGR888",
3633        "OMX_COLOR_Format24bitARGB1887",
3634        "OMX_COLOR_Format25bitARGB1888",
3635        "OMX_COLOR_Format32bitBGRA8888",
3636        "OMX_COLOR_Format32bitARGB8888",
3637        "OMX_COLOR_FormatYUV411Planar",
3638        "OMX_COLOR_FormatYUV411PackedPlanar",
3639        "OMX_COLOR_FormatYUV420Planar",
3640        "OMX_COLOR_FormatYUV420PackedPlanar",
3641        "OMX_COLOR_FormatYUV420SemiPlanar",
3642        "OMX_COLOR_FormatYUV422Planar",
3643        "OMX_COLOR_FormatYUV422PackedPlanar",
3644        "OMX_COLOR_FormatYUV422SemiPlanar",
3645        "OMX_COLOR_FormatYCbYCr",
3646        "OMX_COLOR_FormatYCrYCb",
3647        "OMX_COLOR_FormatCbYCrY",
3648        "OMX_COLOR_FormatCrYCbY",
3649        "OMX_COLOR_FormatYUV444Interleaved",
3650        "OMX_COLOR_FormatRawBayer8bit",
3651        "OMX_COLOR_FormatRawBayer10bit",
3652        "OMX_COLOR_FormatRawBayer8bitcompressed",
3653        "OMX_COLOR_FormatL2",
3654        "OMX_COLOR_FormatL4",
3655        "OMX_COLOR_FormatL8",
3656        "OMX_COLOR_FormatL16",
3657        "OMX_COLOR_FormatL24",
3658        "OMX_COLOR_FormatL32",
3659        "OMX_COLOR_FormatYUV420PackedSemiPlanar",
3660        "OMX_COLOR_FormatYUV422PackedSemiPlanar",
3661        "OMX_COLOR_Format18BitBGR666",
3662        "OMX_COLOR_Format24BitARGB6666",
3663        "OMX_COLOR_Format24BitABGR6666",
3664    };
3665
3666    size_t numNames = sizeof(kNames) / sizeof(kNames[0]);
3667
3668    if (type == OMX_QCOM_COLOR_FormatYVU420SemiPlanar) {
3669        return "OMX_QCOM_COLOR_FormatYVU420SemiPlanar";
3670    } else if (type < 0 || (size_t)type >= numNames) {
3671        return "UNKNOWN";
3672    } else {
3673        return kNames[type];
3674    }
3675}
3676
3677static const char *videoCompressionFormatString(OMX_VIDEO_CODINGTYPE type) {
3678    static const char *kNames[] = {
3679        "OMX_VIDEO_CodingUnused",
3680        "OMX_VIDEO_CodingAutoDetect",
3681        "OMX_VIDEO_CodingMPEG2",
3682        "OMX_VIDEO_CodingH263",
3683        "OMX_VIDEO_CodingMPEG4",
3684        "OMX_VIDEO_CodingWMV",
3685        "OMX_VIDEO_CodingRV",
3686        "OMX_VIDEO_CodingAVC",
3687        "OMX_VIDEO_CodingMJPEG",
3688    };
3689
3690    size_t numNames = sizeof(kNames) / sizeof(kNames[0]);
3691
3692    if (type < 0 || (size_t)type >= numNames) {
3693        return "UNKNOWN";
3694    } else {
3695        return kNames[type];
3696    }
3697}
3698
3699static const char *audioCodingTypeString(OMX_AUDIO_CODINGTYPE type) {
3700    static const char *kNames[] = {
3701        "OMX_AUDIO_CodingUnused",
3702        "OMX_AUDIO_CodingAutoDetect",
3703        "OMX_AUDIO_CodingPCM",
3704        "OMX_AUDIO_CodingADPCM",
3705        "OMX_AUDIO_CodingAMR",
3706        "OMX_AUDIO_CodingGSMFR",
3707        "OMX_AUDIO_CodingGSMEFR",
3708        "OMX_AUDIO_CodingGSMHR",
3709        "OMX_AUDIO_CodingPDCFR",
3710        "OMX_AUDIO_CodingPDCEFR",
3711        "OMX_AUDIO_CodingPDCHR",
3712        "OMX_AUDIO_CodingTDMAFR",
3713        "OMX_AUDIO_CodingTDMAEFR",
3714        "OMX_AUDIO_CodingQCELP8",
3715        "OMX_AUDIO_CodingQCELP13",
3716        "OMX_AUDIO_CodingEVRC",
3717        "OMX_AUDIO_CodingSMV",
3718        "OMX_AUDIO_CodingG711",
3719        "OMX_AUDIO_CodingG723",
3720        "OMX_AUDIO_CodingG726",
3721        "OMX_AUDIO_CodingG729",
3722        "OMX_AUDIO_CodingAAC",
3723        "OMX_AUDIO_CodingMP3",
3724        "OMX_AUDIO_CodingSBC",
3725        "OMX_AUDIO_CodingVORBIS",
3726        "OMX_AUDIO_CodingWMA",
3727        "OMX_AUDIO_CodingRA",
3728        "OMX_AUDIO_CodingMIDI",
3729    };
3730
3731    size_t numNames = sizeof(kNames) / sizeof(kNames[0]);
3732
3733    if (type < 0 || (size_t)type >= numNames) {
3734        return "UNKNOWN";
3735    } else {
3736        return kNames[type];
3737    }
3738}
3739
3740static const char *audioPCMModeString(OMX_AUDIO_PCMMODETYPE type) {
3741    static const char *kNames[] = {
3742        "OMX_AUDIO_PCMModeLinear",
3743        "OMX_AUDIO_PCMModeALaw",
3744        "OMX_AUDIO_PCMModeMULaw",
3745    };
3746
3747    size_t numNames = sizeof(kNames) / sizeof(kNames[0]);
3748
3749    if (type < 0 || (size_t)type >= numNames) {
3750        return "UNKNOWN";
3751    } else {
3752        return kNames[type];
3753    }
3754}
3755
3756static const char *amrBandModeString(OMX_AUDIO_AMRBANDMODETYPE type) {
3757    static const char *kNames[] = {
3758        "OMX_AUDIO_AMRBandModeUnused",
3759        "OMX_AUDIO_AMRBandModeNB0",
3760        "OMX_AUDIO_AMRBandModeNB1",
3761        "OMX_AUDIO_AMRBandModeNB2",
3762        "OMX_AUDIO_AMRBandModeNB3",
3763        "OMX_AUDIO_AMRBandModeNB4",
3764        "OMX_AUDIO_AMRBandModeNB5",
3765        "OMX_AUDIO_AMRBandModeNB6",
3766        "OMX_AUDIO_AMRBandModeNB7",
3767        "OMX_AUDIO_AMRBandModeWB0",
3768        "OMX_AUDIO_AMRBandModeWB1",
3769        "OMX_AUDIO_AMRBandModeWB2",
3770        "OMX_AUDIO_AMRBandModeWB3",
3771        "OMX_AUDIO_AMRBandModeWB4",
3772        "OMX_AUDIO_AMRBandModeWB5",
3773        "OMX_AUDIO_AMRBandModeWB6",
3774        "OMX_AUDIO_AMRBandModeWB7",
3775        "OMX_AUDIO_AMRBandModeWB8",
3776    };
3777
3778    size_t numNames = sizeof(kNames) / sizeof(kNames[0]);
3779
3780    if (type < 0 || (size_t)type >= numNames) {
3781        return "UNKNOWN";
3782    } else {
3783        return kNames[type];
3784    }
3785}
3786
3787static const char *amrFrameFormatString(OMX_AUDIO_AMRFRAMEFORMATTYPE type) {
3788    static const char *kNames[] = {
3789        "OMX_AUDIO_AMRFrameFormatConformance",
3790        "OMX_AUDIO_AMRFrameFormatIF1",
3791        "OMX_AUDIO_AMRFrameFormatIF2",
3792        "OMX_AUDIO_AMRFrameFormatFSF",
3793        "OMX_AUDIO_AMRFrameFormatRTPPayload",
3794        "OMX_AUDIO_AMRFrameFormatITU",
3795    };
3796
3797    size_t numNames = sizeof(kNames) / sizeof(kNames[0]);
3798
3799    if (type < 0 || (size_t)type >= numNames) {
3800        return "UNKNOWN";
3801    } else {
3802        return kNames[type];
3803    }
3804}
3805
3806void OMXCodec::dumpPortStatus(OMX_U32 portIndex) {
3807    OMX_PARAM_PORTDEFINITIONTYPE def;
3808    InitOMXParams(&def);
3809    def.nPortIndex = portIndex;
3810
3811    status_t err = mOMX->getParameter(
3812            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
3813    CHECK_EQ(err, (status_t)OK);
3814
3815    printf("%s Port = {\n", portIndex == kPortIndexInput ? "Input" : "Output");
3816
3817    CHECK((portIndex == kPortIndexInput && def.eDir == OMX_DirInput)
3818          || (portIndex == kPortIndexOutput && def.eDir == OMX_DirOutput));
3819
3820    printf("  nBufferCountActual = %ld\n", def.nBufferCountActual);
3821    printf("  nBufferCountMin = %ld\n", def.nBufferCountMin);
3822    printf("  nBufferSize = %ld\n", def.nBufferSize);
3823
3824    switch (def.eDomain) {
3825        case OMX_PortDomainImage:
3826        {
3827            const OMX_IMAGE_PORTDEFINITIONTYPE *imageDef = &def.format.image;
3828
3829            printf("\n");
3830            printf("  // Image\n");
3831            printf("  nFrameWidth = %ld\n", imageDef->nFrameWidth);
3832            printf("  nFrameHeight = %ld\n", imageDef->nFrameHeight);
3833            printf("  nStride = %ld\n", imageDef->nStride);
3834
3835            printf("  eCompressionFormat = %s\n",
3836                   imageCompressionFormatString(imageDef->eCompressionFormat));
3837
3838            printf("  eColorFormat = %s\n",
3839                   colorFormatString(imageDef->eColorFormat));
3840
3841            break;
3842        }
3843
3844        case OMX_PortDomainVideo:
3845        {
3846            OMX_VIDEO_PORTDEFINITIONTYPE *videoDef = &def.format.video;
3847
3848            printf("\n");
3849            printf("  // Video\n");
3850            printf("  nFrameWidth = %ld\n", videoDef->nFrameWidth);
3851            printf("  nFrameHeight = %ld\n", videoDef->nFrameHeight);
3852            printf("  nStride = %ld\n", videoDef->nStride);
3853
3854            printf("  eCompressionFormat = %s\n",
3855                   videoCompressionFormatString(videoDef->eCompressionFormat));
3856
3857            printf("  eColorFormat = %s\n",
3858                   colorFormatString(videoDef->eColorFormat));
3859
3860            break;
3861        }
3862
3863        case OMX_PortDomainAudio:
3864        {
3865            OMX_AUDIO_PORTDEFINITIONTYPE *audioDef = &def.format.audio;
3866
3867            printf("\n");
3868            printf("  // Audio\n");
3869            printf("  eEncoding = %s\n",
3870                   audioCodingTypeString(audioDef->eEncoding));
3871
3872            if (audioDef->eEncoding == OMX_AUDIO_CodingPCM) {
3873                OMX_AUDIO_PARAM_PCMMODETYPE params;
3874                InitOMXParams(&params);
3875                params.nPortIndex = portIndex;
3876
3877                err = mOMX->getParameter(
3878                        mNode, OMX_IndexParamAudioPcm, &params, sizeof(params));
3879                CHECK_EQ(err, (status_t)OK);
3880
3881                printf("  nSamplingRate = %ld\n", params.nSamplingRate);
3882                printf("  nChannels = %ld\n", params.nChannels);
3883                printf("  bInterleaved = %d\n", params.bInterleaved);
3884                printf("  nBitPerSample = %ld\n", params.nBitPerSample);
3885
3886                printf("  eNumData = %s\n",
3887                       params.eNumData == OMX_NumericalDataSigned
3888                        ? "signed" : "unsigned");
3889
3890                printf("  ePCMMode = %s\n", audioPCMModeString(params.ePCMMode));
3891            } else if (audioDef->eEncoding == OMX_AUDIO_CodingAMR) {
3892                OMX_AUDIO_PARAM_AMRTYPE amr;
3893                InitOMXParams(&amr);
3894                amr.nPortIndex = portIndex;
3895
3896                err = mOMX->getParameter(
3897                        mNode, OMX_IndexParamAudioAmr, &amr, sizeof(amr));
3898                CHECK_EQ(err, (status_t)OK);
3899
3900                printf("  nChannels = %ld\n", amr.nChannels);
3901                printf("  eAMRBandMode = %s\n",
3902                        amrBandModeString(amr.eAMRBandMode));
3903                printf("  eAMRFrameFormat = %s\n",
3904                        amrFrameFormatString(amr.eAMRFrameFormat));
3905            }
3906
3907            break;
3908        }
3909
3910        default:
3911        {
3912            printf("  // Unknown\n");
3913            break;
3914        }
3915    }
3916
3917    printf("}\n");
3918}
3919
3920status_t OMXCodec::initNativeWindow() {
3921    // Enable use of a GraphicBuffer as the output for this node.  This must
3922    // happen before getting the IndexParamPortDefinition parameter because it
3923    // will affect the pixel format that the node reports.
3924    status_t err = mOMX->enableGraphicBuffers(mNode, kPortIndexOutput, OMX_TRUE);
3925    if (err != 0) {
3926        return err;
3927    }
3928
3929    return OK;
3930}
3931
3932void OMXCodec::initOutputFormat(const sp<MetaData> &inputFormat) {
3933    mOutputFormat = new MetaData;
3934    mOutputFormat->setCString(kKeyDecoderComponent, mComponentName);
3935    if (mIsEncoder) {
3936        int32_t timeScale;
3937        if (inputFormat->findInt32(kKeyTimeScale, &timeScale)) {
3938            mOutputFormat->setInt32(kKeyTimeScale, timeScale);
3939        }
3940    }
3941
3942    OMX_PARAM_PORTDEFINITIONTYPE def;
3943    InitOMXParams(&def);
3944    def.nPortIndex = kPortIndexOutput;
3945
3946    status_t err = mOMX->getParameter(
3947            mNode, OMX_IndexParamPortDefinition, &def, sizeof(def));
3948    CHECK_EQ(err, (status_t)OK);
3949
3950    switch (def.eDomain) {
3951        case OMX_PortDomainImage:
3952        {
3953            OMX_IMAGE_PORTDEFINITIONTYPE *imageDef = &def.format.image;
3954            CHECK_EQ((int)imageDef->eCompressionFormat,
3955                     (int)OMX_IMAGE_CodingUnused);
3956
3957            mOutputFormat->setCString(kKeyMIMEType, MEDIA_MIMETYPE_VIDEO_RAW);
3958            mOutputFormat->setInt32(kKeyColorFormat, imageDef->eColorFormat);
3959            mOutputFormat->setInt32(kKeyWidth, imageDef->nFrameWidth);
3960            mOutputFormat->setInt32(kKeyHeight, imageDef->nFrameHeight);
3961            break;
3962        }
3963
3964        case OMX_PortDomainAudio:
3965        {
3966            OMX_AUDIO_PORTDEFINITIONTYPE *audio_def = &def.format.audio;
3967
3968            if (audio_def->eEncoding == OMX_AUDIO_CodingPCM) {
3969                OMX_AUDIO_PARAM_PCMMODETYPE params;
3970                InitOMXParams(&params);
3971                params.nPortIndex = kPortIndexOutput;
3972
3973                err = mOMX->getParameter(
3974                        mNode, OMX_IndexParamAudioPcm, &params, sizeof(params));
3975                CHECK_EQ(err, (status_t)OK);
3976
3977                CHECK_EQ((int)params.eNumData, (int)OMX_NumericalDataSigned);
3978                CHECK_EQ(params.nBitPerSample, 16u);
3979                CHECK_EQ((int)params.ePCMMode, (int)OMX_AUDIO_PCMModeLinear);
3980
3981                int32_t numChannels, sampleRate;
3982                inputFormat->findInt32(kKeyChannelCount, &numChannels);
3983                inputFormat->findInt32(kKeySampleRate, &sampleRate);
3984
3985                if ((OMX_U32)numChannels != params.nChannels) {
3986                    LOGW("Codec outputs a different number of channels than "
3987                         "the input stream contains (contains %d channels, "
3988                         "codec outputs %ld channels).",
3989                         numChannels, params.nChannels);
3990                }
3991
3992                mOutputFormat->setCString(
3993                        kKeyMIMEType, MEDIA_MIMETYPE_AUDIO_RAW);
3994
3995                // Use the codec-advertised number of channels, as some
3996                // codecs appear to output stereo even if the input data is
3997                // mono. If we know the codec lies about this information,
3998                // use the actual number of channels instead.
3999                mOutputFormat->setInt32(
4000                        kKeyChannelCount,
4001                        (mQuirks & kDecoderLiesAboutNumberOfChannels)
4002                            ? numChannels : params.nChannels);
4003
4004                // The codec-reported sampleRate is not reliable...
4005                mOutputFormat->setInt32(kKeySampleRate, sampleRate);
4006            } else if (audio_def->eEncoding == OMX_AUDIO_CodingAMR) {
4007                OMX_AUDIO_PARAM_AMRTYPE amr;
4008                InitOMXParams(&amr);
4009                amr.nPortIndex = kPortIndexOutput;
4010
4011                err = mOMX->getParameter(
4012                        mNode, OMX_IndexParamAudioAmr, &amr, sizeof(amr));
4013                CHECK_EQ(err, (status_t)OK);
4014
4015                CHECK_EQ(amr.nChannels, 1u);
4016                mOutputFormat->setInt32(kKeyChannelCount, 1);
4017
4018                if (amr.eAMRBandMode >= OMX_AUDIO_AMRBandModeNB0
4019                    && amr.eAMRBandMode <= OMX_AUDIO_AMRBandModeNB7) {
4020                    mOutputFormat->setCString(
4021                            kKeyMIMEType, MEDIA_MIMETYPE_AUDIO_AMR_NB);
4022                    mOutputFormat->setInt32(kKeySampleRate, 8000);
4023                } else if (amr.eAMRBandMode >= OMX_AUDIO_AMRBandModeWB0
4024                            && amr.eAMRBandMode <= OMX_AUDIO_AMRBandModeWB8) {
4025                    mOutputFormat->setCString(
4026                            kKeyMIMEType, MEDIA_MIMETYPE_AUDIO_AMR_WB);
4027                    mOutputFormat->setInt32(kKeySampleRate, 16000);
4028                } else {
4029                    CHECK(!"Unknown AMR band mode.");
4030                }
4031            } else if (audio_def->eEncoding == OMX_AUDIO_CodingAAC) {
4032                mOutputFormat->setCString(
4033                        kKeyMIMEType, MEDIA_MIMETYPE_AUDIO_AAC);
4034                int32_t numChannels, sampleRate, bitRate;
4035                inputFormat->findInt32(kKeyChannelCount, &numChannels);
4036                inputFormat->findInt32(kKeySampleRate, &sampleRate);
4037                inputFormat->findInt32(kKeyBitRate, &bitRate);
4038                mOutputFormat->setInt32(kKeyChannelCount, numChannels);
4039                mOutputFormat->setInt32(kKeySampleRate, sampleRate);
4040                mOutputFormat->setInt32(kKeyBitRate, bitRate);
4041            } else {
4042                CHECK(!"Should not be here. Unknown audio encoding.");
4043            }
4044            break;
4045        }
4046
4047        case OMX_PortDomainVideo:
4048        {
4049            OMX_VIDEO_PORTDEFINITIONTYPE *video_def = &def.format.video;
4050
4051            if (video_def->eCompressionFormat == OMX_VIDEO_CodingUnused) {
4052                mOutputFormat->setCString(
4053                        kKeyMIMEType, MEDIA_MIMETYPE_VIDEO_RAW);
4054            } else if (video_def->eCompressionFormat == OMX_VIDEO_CodingMPEG4) {
4055                mOutputFormat->setCString(
4056                        kKeyMIMEType, MEDIA_MIMETYPE_VIDEO_MPEG4);
4057            } else if (video_def->eCompressionFormat == OMX_VIDEO_CodingH263) {
4058                mOutputFormat->setCString(
4059                        kKeyMIMEType, MEDIA_MIMETYPE_VIDEO_H263);
4060            } else if (video_def->eCompressionFormat == OMX_VIDEO_CodingAVC) {
4061                mOutputFormat->setCString(
4062                        kKeyMIMEType, MEDIA_MIMETYPE_VIDEO_AVC);
4063            } else {
4064                CHECK(!"Unknown compression format.");
4065            }
4066
4067            mOutputFormat->setInt32(kKeyWidth, video_def->nFrameWidth);
4068            mOutputFormat->setInt32(kKeyHeight, video_def->nFrameHeight);
4069            mOutputFormat->setInt32(kKeyColorFormat, video_def->eColorFormat);
4070
4071            if (!mIsEncoder) {
4072                OMX_CONFIG_RECTTYPE rect;
4073                InitOMXParams(&rect);
4074                rect.nPortIndex = kPortIndexOutput;
4075                status_t err =
4076                        mOMX->getConfig(
4077                            mNode, OMX_IndexConfigCommonOutputCrop,
4078                            &rect, sizeof(rect));
4079
4080                if (err == OK) {
4081                    CHECK_GE(rect.nLeft, 0);
4082                    CHECK_GE(rect.nTop, 0);
4083                    CHECK_GE(rect.nWidth, 0u);
4084                    CHECK_GE(rect.nHeight, 0u);
4085                    CHECK_LE(rect.nLeft + rect.nWidth - 1, video_def->nFrameWidth);
4086                    CHECK_LE(rect.nTop + rect.nHeight - 1, video_def->nFrameHeight);
4087
4088                    mOutputFormat->setRect(
4089                            kKeyCropRect,
4090                            rect.nLeft,
4091                            rect.nTop,
4092                            rect.nLeft + rect.nWidth - 1,
4093                            rect.nTop + rect.nHeight - 1);
4094                } else {
4095                    mOutputFormat->setRect(
4096                            kKeyCropRect,
4097                            0, 0,
4098                            video_def->nFrameWidth - 1,
4099                            video_def->nFrameHeight - 1);
4100                }
4101            }
4102
4103            break;
4104        }
4105
4106        default:
4107        {
4108            CHECK(!"should not be here, neither audio nor video.");
4109            break;
4110        }
4111    }
4112}
4113
4114status_t OMXCodec::pause() {
4115    Mutex::Autolock autoLock(mLock);
4116
4117    mPaused = true;
4118
4119    return OK;
4120}
4121
4122////////////////////////////////////////////////////////////////////////////////
4123
4124status_t QueryCodecs(
4125        const sp<IOMX> &omx,
4126        const char *mime, bool queryDecoders,
4127        Vector<CodecCapabilities> *results) {
4128    results->clear();
4129
4130    for (int index = 0;; ++index) {
4131        const char *componentName;
4132
4133        if (!queryDecoders) {
4134            componentName = GetCodec(
4135                    kEncoderInfo, sizeof(kEncoderInfo) / sizeof(kEncoderInfo[0]),
4136                    mime, index);
4137        } else {
4138            componentName = GetCodec(
4139                    kDecoderInfo, sizeof(kDecoderInfo) / sizeof(kDecoderInfo[0]),
4140                    mime, index);
4141        }
4142
4143        if (!componentName) {
4144            return OK;
4145        }
4146
4147        if (strncmp(componentName, "OMX.", 4)) {
4148            // Not an OpenMax component but a software codec.
4149
4150            results->push();
4151            CodecCapabilities *caps = &results->editItemAt(results->size() - 1);
4152            caps->mComponentName = componentName;
4153
4154            continue;
4155        }
4156
4157        sp<OMXCodecObserver> observer = new OMXCodecObserver;
4158        IOMX::node_id node;
4159        status_t err = omx->allocateNode(componentName, observer, &node);
4160
4161        if (err != OK) {
4162            continue;
4163        }
4164
4165        OMXCodec::setComponentRole(omx, node, !queryDecoders, mime);
4166
4167        results->push();
4168        CodecCapabilities *caps = &results->editItemAt(results->size() - 1);
4169        caps->mComponentName = componentName;
4170
4171        OMX_VIDEO_PARAM_PROFILELEVELTYPE param;
4172        InitOMXParams(&param);
4173
4174        param.nPortIndex = queryDecoders ? 0 : 1;
4175
4176        for (param.nProfileIndex = 0;; ++param.nProfileIndex) {
4177            err = omx->getParameter(
4178                    node, OMX_IndexParamVideoProfileLevelQuerySupported,
4179                    &param, sizeof(param));
4180
4181            if (err != OK) {
4182                break;
4183            }
4184
4185            CodecProfileLevel profileLevel;
4186            profileLevel.mProfile = param.eProfile;
4187            profileLevel.mLevel = param.eLevel;
4188
4189            caps->mProfileLevels.push(profileLevel);
4190        }
4191
4192        // Color format query
4193        OMX_VIDEO_PARAM_PORTFORMATTYPE portFormat;
4194        InitOMXParams(&portFormat);
4195        portFormat.nPortIndex = queryDecoders ? 1 : 0;
4196        for (portFormat.nIndex = 0;; ++portFormat.nIndex)  {
4197            err = omx->getParameter(
4198                    node, OMX_IndexParamVideoPortFormat,
4199                    &portFormat, sizeof(portFormat));
4200            if (err != OK) {
4201                break;
4202            }
4203            caps->mColorFormats.push(portFormat.eColorFormat);
4204        }
4205
4206        CHECK_EQ(omx->freeNode(node), (status_t)OK);
4207    }
4208}
4209
4210void OMXCodec::restorePatchedDataPointer(BufferInfo *info) {
4211    CHECK(mIsEncoder && (mQuirks & kAvoidMemcopyInputRecordingFrames));
4212    CHECK(mOMXLivesLocally);
4213
4214    OMX_BUFFERHEADERTYPE *header = (OMX_BUFFERHEADERTYPE *)info->mBuffer;
4215    header->pBuffer = (OMX_U8 *)info->mData;
4216}
4217
4218}  // namespace android
4219