SoftVideoDecoderOMXComponent.h revision a9522673f3076ea937eb2912945d7ed646ca05df
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    void initPorts(OMX_U32 numInputBuffers,
59            OMX_U32 inputBufferSize,
60            OMX_U32 numOutputBuffers,
61            const char *mimeType);
62
63    virtual void updatePortDefinitions();
64
65    enum {
66        kInputPortIndex  = 0,
67        kOutputPortIndex = 1,
68        kMaxPortIndex = 1,
69    };
70
71    uint32_t mWidth, mHeight;
72    uint32_t mCropLeft, mCropTop, mCropWidth, mCropHeight;
73
74    enum {
75        NONE,
76        AWAITING_DISABLED,
77        AWAITING_ENABLED
78    } mOutputPortSettingsChange;
79
80private:
81    const char *mComponentRole;
82    OMX_VIDEO_CODINGTYPE mCodingType;
83    const CodecProfileLevel *mProfileLevels;
84    size_t mNumProfileLevels;
85
86    DISALLOW_EVIL_CONSTRUCTORS(SoftVideoDecoderOMXComponent);
87};
88
89}  // namespace android
90
91#endif  // SOFT_VIDEO_DECODER_OMX_COMPONENT_H_
92