SoftVideoDecoderOMXComponent.h revision 031be0f358b07732092a4d1bf02fc99f109a63c4
1/*
2 * Copyright (C) 2013 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#ifndef SOFT_VIDEO_DECODER_OMX_COMPONENT_H_
18
19#define SOFT_VIDEO_DECODER_OMX_COMPONENT_H_
20
21#include "SimpleSoftOMXComponent.h"
22
23#include <media/stagefright/foundation/AHandlerReflector.h>
24#include <media/IOMX.h>
25
26#include <utils/RefBase.h>
27#include <utils/threads.h>
28#include <utils/Vector.h>
29
30namespace android {
31
32struct SoftVideoDecoderOMXComponent : public SimpleSoftOMXComponent {
33    SoftVideoDecoderOMXComponent(
34            const char *name,
35            const char *componentRole,
36            OMX_VIDEO_CODINGTYPE codingType,
37            const CodecProfileLevel *profileLevels,
38            size_t numProfileLevels,
39            int32_t width,
40            int32_t height,
41            const OMX_CALLBACKTYPE *callbacks,
42            OMX_PTR appData,
43            OMX_COMPONENTTYPE **component);
44
45protected:
46    virtual void onPortEnableCompleted(OMX_U32 portIndex, bool enabled);
47    virtual void onReset();
48
49    virtual OMX_ERRORTYPE internalGetParameter(
50            OMX_INDEXTYPE index, OMX_PTR params);
51
52    virtual OMX_ERRORTYPE internalSetParameter(
53            OMX_INDEXTYPE index, const OMX_PTR params);
54
55    virtual OMX_ERRORTYPE getConfig(
56            OMX_INDEXTYPE index, OMX_PTR params);
57
58    virtual OMX_ERRORTYPE getExtensionIndex(
59            const char *name, OMX_INDEXTYPE *index);
60
61    void initPorts(OMX_U32 numInputBuffers,
62            OMX_U32 inputBufferSize,
63            OMX_U32 numOutputBuffers,
64            const char *mimeType);
65
66    virtual void updatePortDefinitions();
67
68    enum {
69        kInputPortIndex  = 0,
70        kOutputPortIndex = 1,
71        kMaxPortIndex = 1,
72    };
73
74    bool mIsAdaptive;
75    uint32_t mAdaptiveMaxWidth, mAdaptiveMaxHeight;
76    uint32_t mWidth, mHeight;
77    uint32_t mCropLeft, mCropTop, mCropWidth, mCropHeight;
78
79    enum {
80        NONE,
81        AWAITING_DISABLED,
82        AWAITING_ENABLED
83    } mOutputPortSettingsChange;
84
85private:
86    const char *mComponentRole;
87    OMX_VIDEO_CODINGTYPE mCodingType;
88    const CodecProfileLevel *mProfileLevels;
89    size_t mNumProfileLevels;
90
91    DISALLOW_EVIL_CONSTRUCTORS(SoftVideoDecoderOMXComponent);
92};
93
94}  // namespace android
95
96#endif  // SOFT_VIDEO_DECODER_OMX_COMPONENT_H_
97