Searched refs:OMXVideoDecoderBase (Results 1 - 21 of 21) sorted by relevance

/hardware/intel/common/omx-components/videocodec/
H A DOMXVideoDecoderBase.h34 class OMXVideoDecoderBase : public OMXComponentCodecBase { class in inherits:OMXComponentCodecBase
36 OMXVideoDecoderBase();
37 virtual ~OMXVideoDecoderBase();
76 DECLARE_HANDLER(OMXVideoDecoderBase, ParamVideoPortFormat);
77 DECLARE_HANDLER(OMXVideoDecoderBase, CapabilityFlags);
78 DECLARE_HANDLER(OMXVideoDecoderBase, NativeBufferUsage);
79 DECLARE_HANDLER(OMXVideoDecoderBase, NativeBuffer);
80 DECLARE_HANDLER(OMXVideoDecoderBase, NativeBufferMode);
81 DECLARE_HANDLER(OMXVideoDecoderBase, DecoderRotation);
82 DECLARE_HANDLER(OMXVideoDecoderBase, DecoderOutputCro
[all...]
H A DOMXVideoDecoderVP8.cpp59 return OMXVideoDecoderBase::ProcessorInit();
63 return OMXVideoDecoderBase::ProcessorDeinit();
71 return OMXVideoDecoderBase::ProcessorProcess(pBuffers, retains, numberBuffers);
75 return OMXVideoDecoderBase::PrepareConfigBuffer(p);
79 return OMXVideoDecoderBase::PrepareDecodeBuffer(buffer, retain, p);
83 OMXVideoDecoderBase::BuildHandlerList();
119 return OMXVideoDecoderBase::GetOutputColorFormat(width);
129 return OMXVideoDecoderBase::SetMaxOutputBufferCount(p);
H A DOMXVideoDecoderWMV.cpp58 return OMXVideoDecoderBase::ProcessorInit();
62 return OMXVideoDecoderBase::ProcessorDeinit();
70 return OMXVideoDecoderBase::ProcessorProcess(pBuffers, retains, numberBuffers);
74 return OMXVideoDecoderBase::PrepareConfigBuffer(p);
78 return OMXVideoDecoderBase::PrepareDecodeBuffer(buffer, retain, p);
82 OMXVideoDecoderBase::BuildHandlerList();
114 return OMXVideoDecoderBase::GetOutputColorFormat(width);
124 return OMXVideoDecoderBase::SetMaxOutputBufferCount(p);
H A DOMXVideoDecoderH263.cpp60 return OMXVideoDecoderBase::ProcessorInit();
64 return OMXVideoDecoderBase::ProcessorDeinit();
72 return OMXVideoDecoderBase::ProcessorProcess(pBuffers, retains, numberBuffers);
76 return OMXVideoDecoderBase::PrepareConfigBuffer(p);
80 return OMXVideoDecoderBase::PrepareDecodeBuffer(buffer, retain, p);
84 OMXVideoDecoderBase::BuildHandlerList();
144 return OMXVideoDecoderBase::GetOutputColorFormat(width);
154 return OMXVideoDecoderBase::SetMaxOutputBufferCount(p);
H A DOMXVideoDecoderMPEG4.cpp60 return OMXVideoDecoderBase::ProcessorInit();
64 return OMXVideoDecoderBase::ProcessorDeinit();
72 return OMXVideoDecoderBase::ProcessorProcess(pBuffers, retains, numberBuffers);
76 return OMXVideoDecoderBase::PrepareConfigBuffer(p);
80 return OMXVideoDecoderBase::PrepareDecodeBuffer(buffer, retain, p);
84 OMXVideoDecoderBase::BuildHandlerList();
145 return OMXVideoDecoderBase::GetOutputColorFormat(width);
155 return OMXVideoDecoderBase::SetMaxOutputBufferCount(p);
H A DOMXVideoDecoderBase.cpp24 #include "OMXVideoDecoderBase.h"
29 OMXVideoDecoderBase::OMXVideoDecoderBase() function in class:OMXVideoDecoderBase
42 OMXVideoDecoderBase::~OMXVideoDecoderBase() {
58 OMX_ERRORTYPE OMXVideoDecoderBase::InitInputPort(void) {
116 OMX_ERRORTYPE OMXVideoDecoderBase::InitOutputPort(void) {
173 OMX_ERRORTYPE OMXVideoDecoderBase::InitOutputPortFormatSpecific(OMX_PARAM_PORTDEFINITIONTYPE *) {
178 OMX_ERRORTYPE OMXVideoDecoderBase::ProcessorInit(void) {
203 OMX_ERRORTYPE OMXVideoDecoderBase
[all...]
H A DOMXVideoDecoderPAVC.cpp65 return OMXVideoDecoderBase::ProcessorInit();
69 return OMXVideoDecoderBase::ProcessorDeinit();
73 return OMXVideoDecoderBase::ProcessorFlush(portIndex);
81 return OMXVideoDecoderBase::ProcessorProcess(pBuffers, retains, numberBuffers);
86 ret = OMXVideoDecoderBase::PrepareConfigBuffer(p);
87 CHECK_RETURN_VALUE("OMXVideoDecoderBase::PrepareConfigBuffer");
98 ret = OMXVideoDecoderBase::PrepareDecodeBuffer(buffer, retain, p);
99 CHECK_RETURN_VALUE("OMXVideoDecoderBase::PrepareDecodeBuffer");
117 OMXVideoDecoderBase::BuildHandlerList();
H A DOMXVideoDecoderAVC.cpp73 return OMXVideoDecoderBase::ProcessorInit();
85 return OMXVideoDecoderBase::ProcessorDeinit();
91 return OMXVideoDecoderBase::ProcessorFlush(portIndex);
99 return OMXVideoDecoderBase::ProcessorProcess(pBuffers, retains, numberBuffers);
105 ret = OMXVideoDecoderBase::PrepareConfigBuffer(p);
106 CHECK_RETURN_VALUE("OMXVideoDecoderBase::PrepareConfigBuffer");
135 ret = OMXVideoDecoderBase::PrepareDecodeBuffer(buffer, retain, p);
136 CHECK_RETURN_VALUE("OMXVideoDecoderBase::PrepareDecodeBuffer");
230 OMXVideoDecoderBase::BuildHandlerList();
319 return OMXVideoDecoderBase
[all...]
H A DOMXVideoDecoderH263.h22 #include "OMXVideoDecoderBase.h"
24 class OMXVideoDecoderH263 : public OMXVideoDecoderBase {
H A DOMXVideoDecoderMPEG4.h23 #include "OMXVideoDecoderBase.h"
25 class OMXVideoDecoderMPEG4 : public OMXVideoDecoderBase {
H A DOMXVideoDecoderPAVC.h21 #include "OMXVideoDecoderBase.h"
23 class OMXVideoDecoderPAVC : public OMXVideoDecoderBase {
H A DOMXVideoDecoderVP8.h23 #include "OMXVideoDecoderBase.h"
26 class OMXVideoDecoderVP8 : public OMXVideoDecoderBase {
H A DOMXVideoDecoderWMV.h23 #include "OMXVideoDecoderBase.h"
25 class OMXVideoDecoderWMV : public OMXVideoDecoderBase {
H A DOMXVideoDecoderAVC.h21 #include "OMXVideoDecoderBase.h"
23 class OMXVideoDecoderAVC : public OMXVideoDecoderBase {
H A DAndroid.mk42 OMXVideoDecoderBase.cpp \
104 OMXVideoDecoderBase.cpp \
176 OMXVideoDecoderBase.cpp \
223 OMXVideoDecoderBase.cpp \
275 OMXVideoDecoderBase.cpp \
332 OMXVideoDecoderBase.cpp \
389 OMXVideoDecoderBase.cpp \
447 OMXVideoDecoderBase.cpp
609 OMXVideoDecoderBase.cpp \
H A DOMXVideoDecoderVP9HWR.h22 #include "OMXVideoDecoderBase.h"
48 class OMXVideoDecoderVP9HWR : public OMXVideoDecoderBase {
H A DOMXVideoDecoderVP9Hybrid.h22 #include "OMXVideoDecoderBase.h"
26 class OMXVideoDecoderVP9Hybrid : public OMXVideoDecoderBase {
H A DOMXVideoDecoderVP9Hybrid.cpp391 OMXVideoDecoderBase::BuildHandlerList();
H A DOMXVideoDecoderVP9HWR.cpp705 OMXVideoDecoderBase::BuildHandlerList();
/hardware/intel/common/omx-components/videocodec/securevideo/moorefield/
H A DOMXVideoDecoderAVCSecure.cpp132 return OMXVideoDecoderBase::ProcessorInit();
146 return OMXVideoDecoderBase::ProcessorDeinit();
160 return OMXVideoDecoderBase::ProcessorStart();
169 return OMXVideoDecoderBase::ProcessorStop();
174 return OMXVideoDecoderBase::ProcessorFlush(portIndex);
226 ret = OMXVideoDecoderBase::ProcessorProcess(pBuffers, retains, numberBuffers);
228 ALOGE("OMXVideoDecoderBase::ProcessorProcess failed. Result: %#x", ret);
244 return OMXVideoDecoderBase::ProcessorPause();
248 return OMXVideoDecoderBase::ProcessorResume();
253 ret = OMXVideoDecoderBase
[all...]
H A DOMXVideoDecoderAVCSecure.h21 #include "OMXVideoDecoderBase.h"
26 class OMXVideoDecoderAVCSecure : public OMXVideoDecoderBase {

Completed in 713 milliseconds