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>
121 struct ACodec::BaseState : public AState {
122 BaseState(ACodec *codec, const sp<AState> &parentState = NULL);
131 ACodec *mCodec;
164 struct ACodec::UninitializedState : public ACodec::BaseState {
165 UninitializedState(ACodec *codec);
180 struct ACodec::LoadedState : public ACodec::BaseState
    [all...]
MediaCodec.cpp 32 #include <media/stagefright/ACodec.h>
64 mCodec(new ACodec),
443 case ACodec::kWhatError:
518 case ACodec::kWhatComponentAllocated:
542 case ACodec::kWhatComponentConfigured:
551 case ACodec::kWhatBuffersAllocated:
569 sp<ACodec::PortDescription> portDesc =
570 static_cast<ACodec::PortDescription *>(obj.get());
602 case ACodec::kWhatOutputFormatChanged:
638 case ACodec::kWhatFillThisBuffer
    [all...]
Android.mk 7 ACodec.cpp \
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.h 52 sp<ACodec> mCodec;
NuPlayerDecoder.cpp 28 #include <media/stagefright/ACodec.h>
66 mCodec = new ACodec;
87 if (what == ACodec::kWhatFillThisBuffer) {
NuPlayer.cpp 38 #include <media/stagefright/ACodec.h>
300 if (what == ACodec::kWhatFillThisBuffer) {
309 } else if (what == ACodec::kWhatEOS) {
322 } else if (what == ACodec::kWhatFlushCompleted) {
351 } else if (what == ACodec::kWhatOutputFormatChanged) {
420 } else if (what == ACodec::kWhatShutdownCompleted) {
435 } else if (what == ACodec::kWhatError) {
440 } else if (what == ACodec::kWhatDrainThisBuffer) {
NuPlayer.h 27 struct ACodec;
  /frameworks/av/include/media/stagefright/
ACodec.h 33 struct ACodec : public AHierarchicalStateMachine {
47 ACodec();
65 friend struct ACodec;
77 virtual ~ACodec();
254 DISALLOW_EVIL_CONSTRUCTORS(ACodec);
MediaCodec.h 29 struct ACodec;
171 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 5161 milliseconds