OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OMXVideoDecoderBase
(Results
1 - 21
of
21
) sorted by null
/hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderBase.h
34
class
OMXVideoDecoderBase
: public OMXComponentCodecBase {
36
OMXVideoDecoderBase
();
37
virtual ~
OMXVideoDecoderBase
();
77
DECLARE_HANDLER(
OMXVideoDecoderBase
, ParamVideoPortFormat);
78
DECLARE_HANDLER(
OMXVideoDecoderBase
, CapabilityFlags);
79
DECLARE_HANDLER(
OMXVideoDecoderBase
, NativeBufferUsage);
80
DECLARE_HANDLER(
OMXVideoDecoderBase
, NativeBuffer);
81
DECLARE_HANDLER(
OMXVideoDecoderBase
, NativeBufferMode);
82
DECLARE_HANDLER(
OMXVideoDecoderBase
, DecoderRotation);
83
DECLARE_HANDLER(
OMXVideoDecoderBase
, DecoderOutputCrop)
[
all
...]
OMXVideoDecoderVP8.cpp
59
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);
OMXVideoDecoderWMV.cpp
58
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);
OMXVideoDecoderH263.cpp
60
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);
OMXVideoDecoderMPEG2.cpp
60
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);
OMXVideoDecoderMPEG4.cpp
60
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);
OMXVideoDecoderPAVC.cpp
65
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();
OMXVideoDecoderBase.cpp
25
#include "
OMXVideoDecoderBase
.h"
32
OMXVideoDecoderBase
::
OMXVideoDecoderBase
()
51
OMXVideoDecoderBase
::~
OMXVideoDecoderBase
() {
67
OMX_ERRORTYPE
OMXVideoDecoderBase
::InitInputPort(void) {
125
OMX_ERRORTYPE
OMXVideoDecoderBase
::InitOutputPort(void) {
182
OMX_ERRORTYPE
OMXVideoDecoderBase
::InitOutputPortFormatSpecific(OMX_PARAM_PORTDEFINITIONTYPE *) {
187
OMX_ERRORTYPE
OMXVideoDecoderBase
::ProcessorInit(void) {
212
OMX_ERRORTYPE
OMXVideoDecoderBase
::ProcessorReset(void)
[
all
...]
OMXVideoDecoderH263.h
22
#include "
OMXVideoDecoderBase
.h"
24
class OMXVideoDecoderH263 : public
OMXVideoDecoderBase
{
OMXVideoDecoderMPEG2.h
23
#include "
OMXVideoDecoderBase
.h"
25
class OMXVideoDecoderMPEG2 : public
OMXVideoDecoderBase
{
OMXVideoDecoderMPEG4.h
23
#include "
OMXVideoDecoderBase
.h"
25
class OMXVideoDecoderMPEG4 : public
OMXVideoDecoderBase
{
OMXVideoDecoderVP8.h
23
#include "
OMXVideoDecoderBase
.h"
26
class OMXVideoDecoderVP8 : public
OMXVideoDecoderBase
{
OMXVideoDecoderWMV.h
23
#include "
OMXVideoDecoderBase
.h"
25
class OMXVideoDecoderWMV : public
OMXVideoDecoderBase
{
OMXVideoDecoderAVC.cpp
73
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
::GetOutputColorFormat(width)
[
all
...]
OMXVideoDecoderPAVC.h
21
#include "
OMXVideoDecoderBase
.h"
23
class OMXVideoDecoderPAVC : public
OMXVideoDecoderBase
{
OMXVideoDecoderAVC.h
21
#include "
OMXVideoDecoderBase
.h"
23
class OMXVideoDecoderAVC : public
OMXVideoDecoderBase
{
Android.mk
45
OMXVideoDecoderBase
.cpp \
114
OMXVideoDecoderBase
.cpp \
185
OMXVideoDecoderBase
.cpp \
248
OMXVideoDecoderBase
.cpp \
312
OMXVideoDecoderBase
.cpp \
376
OMXVideoDecoderBase
.cpp \
441
OMXVideoDecoderBase
.cpp
497
OMXVideoDecoderBase
.cpp\
665
OMXVideoDecoderBase
.cpp \
OMXVideoDecoderVP9Hybrid.h
22
#include "
OMXVideoDecoderBase
.h"
26
class OMXVideoDecoderVP9Hybrid : public
OMXVideoDecoderBase
{
OMXVideoDecoderVP9Hybrid.cpp
536
OMXVideoDecoderBase
::BuildHandlerList();
/hardware/intel/common/omx-components/videocodec/securevideo/moorefield/
OMXVideoDecoderAVCSecure.cpp
124
return
OMXVideoDecoderBase
::ProcessorInit();
138
return
OMXVideoDecoderBase
::ProcessorDeinit();
150
return
OMXVideoDecoderBase
::ProcessorStart();
159
return
OMXVideoDecoderBase
::ProcessorStop();
164
return
OMXVideoDecoderBase
::ProcessorFlush(portIndex);
235
ret =
OMXVideoDecoderBase
::ProcessorProcess(pBuffers, retains, numberBuffers);
237
ALOGE("
OMXVideoDecoderBase
::ProcessorProcess failed. Result: %#x", ret);
253
return
OMXVideoDecoderBase
::ProcessorPause();
257
return
OMXVideoDecoderBase
::ProcessorResume();
262
ret =
OMXVideoDecoderBase
::PrepareConfigBuffer(p)
[
all
...]
OMXVideoDecoderAVCSecure.h
21
#include "
OMXVideoDecoderBase
.h"
26
class OMXVideoDecoderAVCSecure : public
OMXVideoDecoderBase
{
Completed in 4216 milliseconds