Home
last modified time | relevance | path

Searched refs:CodecBase (Results 1 – 11 of 11) sorted by relevance

/frameworks/av/media/libstagefright/
DCodecBase.cpp26 CodecBase::CodecBase() { in CodecBase() function in android::CodecBase
29 CodecBase::~CodecBase() { in ~CodecBase()
32 CodecBase::PortDescription::PortDescription() { in PortDescription()
35 CodecBase::PortDescription::~PortDescription() { in ~PortDescription()
DMediaCodec.cpp203 sp<CodecBase> codec = GetCodecBase(name); in QueryCapabilities()
318 sp<CodecBase> MediaCodec::GetCodecBase(const AString &name, bool nameIsType) { in GetCodecBase()
1090 case CodecBase::kWhatError: in onMessageReceived()
1222 case CodecBase::kWhatComponentAllocated: in onMessageReceived()
1254 case CodecBase::kWhatComponentConfigured: in onMessageReceived()
1283 case CodecBase::kWhatInputSurfaceCreated: in onMessageReceived()
1307 case CodecBase::kWhatInputSurfaceAccepted: in onMessageReceived()
1321 case CodecBase::kWhatSignaledInputEOS: in onMessageReceived()
1334 case CodecBase::kWhatBuffersAllocated: in onMessageReceived()
1353 sp<CodecBase::PortDescription> portDesc = in onMessageReceived()
[all …]
DAndroid.mk16 CodecBase.cpp \
DACodec.cpp936 notify->setInt32("what", CodecBase::kWhatBuffersAllocated); in allocateBuffersOnPort()
1367 msg->setInt32("what", CodecBase::kWhatOutputFramesRendered); in notifyOfRenderedFrames()
5262 notify->setInt32("what", CodecBase::kWhatError); in signalError()
5417 notify->setInt32("what", CodecBase::kWhatShutdownCompleted); in onMessageReceived()
5646 notify->setInt32("what", CodecBase::kWhatFillThisBuffer); in postFillThisBuffer()
6072 notify->setInt32("what", CodecBase::kWhatDrainThisBuffer); in onOMXFillBufferDone()
6089 notify->setInt32("what", CodecBase::kWhatEOS); in onOMXFillBufferDone()
6309 notify->setInt32("what", CodecBase::kWhatShutdownCompleted); in onMessageReceived()
6319 notify->setInt32("what", CodecBase::kWhatFlushCompleted); in onMessageReceived()
6452 notify->setInt32("what", CodecBase::kWhatComponentAllocated); in onAllocateComponent()
[all …]
DUtils.cpp127 if (CodecBase::convertCodecColorAspectsToPlatformAspects( in convertMetaDataToMessageColorAspects()
1228 if (CodecBase::convertPlatformColorAspectsToCodecAspects( in convertMessageToMetaDataColorAspects()
/frameworks/av/include/media/stagefright/
DCodecBase.h40 struct CodecBase : public AHandler, /* static */ ColorUtils { struct
108 CodecBase(); argument
109 virtual ~CodecBase();
112 DISALLOW_EVIL_CONSTRUCTORS(CodecBase);
DMediaFilter.h29 struct MediaFilter : public CodecBase {
51 struct PortDescription : public CodecBase::PortDescription {
DMediaCodec.h35 struct CodecBase;
294 sp<CodecBase> mCodec;
351 static sp<CodecBase> GetCodecBase(const AString &name, bool nameIsType = false);
DACodec.h42 struct ACodec : public AHierarchicalStateMachine, public CodecBase {
74 struct PortDescription : public CodecBase::PortDescription {
/frameworks/av/cmds/stagefright/
Dsf2.cpp213 if (what == CodecBase::kWhatFillThisBuffer) { in onMessageReceived()
215 } else if (what == CodecBase::kWhatDrainThisBuffer) { in onMessageReceived()
222 } else if (what == CodecBase::kWhatEOS in onMessageReceived()
223 || what == CodecBase::kWhatError) { in onMessageReceived()
224 printf((what == CodecBase::kWhatEOS) ? "$\n" : "E\n"); in onMessageReceived()
228 } else if (what == CodecBase::kWhatFlushCompleted) { in onMessageReceived()
233 } else if (what == CodecBase::kWhatOutputFormatChanged) { in onMessageReceived()
234 } else if (what == CodecBase::kWhatShutdownCompleted) { in onMessageReceived()
/frameworks/av/media/libstagefright/filters/
DMediaFilter.cpp223 notify->setInt32("what", CodecBase::kWhatError); in signalError()
265 notify->setInt32("what", CodecBase::kWhatBuffersAllocated); in allocateBuffersOnPort()
313 notify->setInt32("what", CodecBase::kWhatFillThisBuffer); in postFillThisBuffer()
334 notify->setInt32("what", CodecBase::kWhatDrainThisBuffer); in postDrainThisBuffer()
351 notify->setInt32("what", CodecBase::kWhatEOS); in postEOS()
692 notify->setInt32("what", CodecBase::kWhatShutdownCompleted); in onShutdown()
716 notify->setInt32("what", CodecBase::kWhatFlushCompleted); in onFlush()
750 reply->setInt32("what", CodecBase::kWhatInputSurfaceCreated); in onCreateInputSurface()
817 notify->setInt32("what", CodecBase::kWhatSignaledInputEOS); in onSignalEndOfInputStream()