aboutsummaryrefslogtreecommitdiffstats
path: root/videocodec/OMXVideoEncoderVP8.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/OMXVideoEncoderVP8.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/OMXVideoEncoderVP8.cpp')
-rw-r--r--videocodec/OMXVideoEncoderVP8.cpp28
1 files changed, 27 insertions, 1 deletions
diff --git a/videocodec/OMXVideoEncoderVP8.cpp b/videocodec/OMXVideoEncoderVP8.cpp
index ec1062d..c78a0ad 100644
--- a/videocodec/OMXVideoEncoderVP8.cpp
+++ b/videocodec/OMXVideoEncoderVP8.cpp
@@ -4,6 +4,10 @@
static const char *VP8_MIME_TYPE = "video/x-vnd.on2.vp8";
+// VP8 encoder instance limitation
+#define INSTANCE_LIMITATION 3
+static int gInstanceNumber = 0;
+
OMXVideoEncoderVP8::OMXVideoEncoderVP8() {
LOGV("OMXVideoEncoderVP8 is constructed.");
mLastTimestamp = 0x7FFFFFFFFFFFFFFFLL;
@@ -14,6 +18,7 @@ OMXVideoEncoderVP8::OMXVideoEncoderVP8() {
OMXVideoEncoderVP8::~OMXVideoEncoderVP8() {
LOGV("OMXVideoEncoderVP8 is destructed.");
+ gInstanceNumber --;
}
OMX_ERRORTYPE OMXVideoEncoderVP8::InitOutputPortFormatSpecific(OMX_PARAM_PORTDEFINITIONTYPE *paramPortDefinitionOutput) {
@@ -321,4 +326,25 @@ OMX_ERRORTYPE OMXVideoEncoderVP8::SetConfigVp8MaxFrameSizeRatio(OMX_PTR pStructu
return OMX_ErrorNone;
}
-DECLARE_OMX_COMPONENT("OMX.Intel.VideoEncoder.VP8", "video_encoder.vp8", OMXVideoEncoderVP8);
+#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.VideoEncoder.VP8", "video_encoder.vp8", OMXVideoEncoderVP8);