aboutsummaryrefslogtreecommitdiffstats
path: root/videocodec/OMXVideoDecoderVP8.cpp
diff options
context:
space:
mode:
authorYuanjun Huang <yuanjun.huang@intel.com>2015-05-14 01:54:06 +0800
committerRonghua Wu <ronghuawu@google.com>2015-06-01 10:20:07 -0700
commitf832fbe64172f3dcde2bf8d7f960375efd8a30d9 (patch)
treeacf9c2bcf34120665655b7a68ca7fa36d3104ab0 /videocodec/OMXVideoDecoderVP8.cpp
parent7579ae2fa6c1b95605f651892a1adfd6eed7c946 (diff)
downloadandroid_hardware_intel_common_omx-components-f832fbe64172f3dcde2bf8d7f960375efd8a30d9.tar.gz
android_hardware_intel_common_omx-components-f832fbe64172f3dcde2bf8d7f960375efd8a30d9.tar.bz2
android_hardware_intel_common_omx-components-f832fbe64172f3dcde2bf8d7f960375efd8a30d9.zip
omx-component: Adding media resource management support
for each codec. Initial implementation. Implement returning OMX_ErrorInsufficientResources case. Bug: 20165724 Change-Id: I88a7229f6342bbfb8cb36b7dc9629b81e2debf93 Signed-off-by: Yuanjun Huang <yuanjun.huang@intel.com>
Diffstat (limited to 'videocodec/OMXVideoDecoderVP8.cpp')
-rw-r--r--videocodec/OMXVideoDecoderVP8.cpp27
1 files changed, 26 insertions, 1 deletions
diff --git a/videocodec/OMXVideoDecoderVP8.cpp b/videocodec/OMXVideoDecoderVP8.cpp
index 013bf8b..1dad3ae 100644
--- a/videocodec/OMXVideoDecoderVP8.cpp
+++ b/videocodec/OMXVideoDecoderVP8.cpp
@@ -22,6 +22,10 @@
// Be sure to have an equal string in VideoDecoderHost.cpp (libmix)
static const char* VP8_MIME_TYPE = "video/x-vnd.on2.vp8";
+// codec number limitation
+#define INSTANCE_LIMITATION 4
+static int gInstanceNumber = 0;
+
OMXVideoDecoderVP8::OMXVideoDecoderVP8() {
LOGV("OMXVideoDecoderVP8 is constructed.");
mVideoDecoder = createVideoDecoder(VP8_MIME_TYPE);
@@ -34,6 +38,7 @@ OMXVideoDecoderVP8::OMXVideoDecoderVP8() {
}
OMXVideoDecoderVP8::~OMXVideoDecoderVP8() {
+ gInstanceNumber --;
LOGV("OMXVideoDecoderVP8 is destructed.");
}
@@ -128,6 +133,26 @@ OMX_ERRORTYPE OMXVideoDecoderVP8::SetMaxOutputBufferCount(OMX_PARAM_PORTDEFINITI
p->nBufferCountActual = OUTPORT_NATIVE_BUFFER_COUNT;
return OMXVideoDecoderBase::SetMaxOutputBufferCount(p);
}
-DECLARE_OMX_COMPONENT("OMX.Intel.VideoDecoder.VP8", "video_decoder.vp8", OMXVideoDecoderVP8);
+#define DECLARE_OMX_COMPONENT_VP8(NAME, ROLE, CLASS) \
+ static const char *gName = (const char *)(NAME);\
+ static const char *gRole = (const char *)(ROLE);\
+ OMX_ERRORTYPE CreateInstance(OMX_PTR *instance) {\
+ *instance = NULL;\
+ if (gInstanceNumber + 1 > INSTANCE_LIMITATION) {\
+ return OMX_ErrorInsufficientResources;\
+ } else {\
+ gInstanceNumber ++;\
+ }\
+ ComponentBase *inst = new CLASS;\
+ if (!inst) {\
+ return OMX_ErrorInsufficientResources;\
+ }\
+ *instance = inst;\
+ return OMX_ErrorNone;\
+ }\
+ struct wrs_omxil_cmodule_ops_s gOps = {CreateInstance};\
+ struct wrs_omxil_cmodule_s WRS_OMXIL_CMODULE_SYMBOL = {gName, &gRole, 1, &gOps};
+
+DECLARE_OMX_COMPONENT_VP8("OMX.Intel.VideoDecoder.VP8", "video_decoder.vp8", OMXVideoDecoderVP8);