HomeSort by relevance Sort by last modified time
    Searched refs:ACodec (Results 1 - 10 of 10) sorted by null

  /frameworks/av/media/libstagefright/
ACodec.cpp 18 #define LOG_TAG "ACodec"
20 #include <media/stagefright/ACodec.h>
126 struct ACodec::BaseState : public AState {
127 BaseState(ACodec *codec, const sp<AState> &parentState = NULL);
136 ACodec *mCodec;
169 struct ACodec::DeathNotifier : public IBinder::DeathRecipient {
187 struct ACodec::UninitializedState : public ACodec::BaseState {
188 UninitializedState(ACodec *codec);
205 struct ACodec::LoadedState : public ACodec::BaseState
    [all...]
MediaCodec.cpp 32 #include <media/stagefright/ACodec.h>
68 mCodec(new ACodec),
502 case ACodec::kWhatError:
597 case ACodec::kWhatComponentAllocated:
620 case ACodec::kWhatComponentConfigured:
632 case ACodec::kWhatInputSurfaceCreated:
634 // response to ACodec::kWhatCreateInputSurface
650 case ACodec::kWhatSignaledInputEOS:
652 // response to ACodec::kWhatSignalEndOfInputStream
663 case ACodec::kWhatBuffersAllocated
    [all...]
Android.mk 7 ACodec.cpp \
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.cpp 26 #include <media/stagefright/ACodec.h>
70 mCodec = new ACodec;
91 if (what == ACodec::kWhatFillThisBuffer) {
NuPlayerDecoder.h 52 sp<ACodec> mCodec;
NuPlayer.cpp 40 #include <media/stagefright/ACodec.h>
470 if (what == ACodec::kWhatFillThisBuffer) {
479 } else if (what == ACodec::kWhatEOS) {
492 } else if (what == ACodec::kWhatFlushCompleted) {
521 } else if (what == ACodec::kWhatOutputFormatChanged) {
611 } else if (what == ACodec::kWhatShutdownCompleted) {
626 } else if (what == ACodec::kWhatError) {
631 } else if (what == ACodec::kWhatDrainThisBuffer) {
633 } else if (what != ACodec::kWhatComponentAllocated
634 && what != ACodec::kWhatComponentConfigure
    [all...]
NuPlayer.h 27 struct ACodec;
  /frameworks/av/include/media/stagefright/
ACodec.h 35 struct ACodec : public AHierarchicalStateMachine {
52 ACodec();
76 friend struct ACodec;
88 virtual ~ACodec();
293 DISALLOW_EVIL_CONSTRUCTORS(ACodec);
MediaCodec.h 29 struct ACodec;
195 sp<ACodec> mCodec;
  /frameworks/av/cmds/stagefright/
sf2.cpp 29 #include <media/stagefright/ACodec.h>
52 mCodec(new ACodec),
170 if (what == ACodec::kWhatFillThisBuffer) {
172 } else if (what == ACodec::kWhatDrainThisBuffer) {
179 } else if (what == ACodec::kWhatEOS
180 || what == ACodec::kWhatError) {
181 printf((what == ACodec::kWhatEOS) ? "$\n" : "E\n");
199 } else if (what == ACodec::kWhatFlushCompleted) {
204 } else if (what == ACodec::kWhatOutputFormatChanged) {
205 } else if (what == ACodec::kWhatShutdownCompleted)
    [all...]

Completed in 190 milliseconds