OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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>
69
mCodec(new
ACodec
),
519
case
ACodec
::kWhatError:
614
case
ACodec
::kWhatComponentAllocated:
637
case
ACodec
::kWhatComponentConfigured:
649
case
ACodec
::kWhatInputSurfaceCreated:
651
// response to
ACodec
::kWhatCreateInputSurface
667
case
ACodec
::kWhatSignaledInputEOS:
669
// response to
ACodec
::kWhatSignalEndOfInputStream
680
case
ACodec
::kWhatBuffersAllocated
[
all
...]
Android.mk
7
ACodec
.cpp \
/frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.h
55
sp<
ACodec
> mCodec;
NuPlayerDecoder.cpp
26
#include <media/stagefright/
ACodec
.h>
71
mCodec = new
ACodec
;
92
if (what ==
ACodec
::kWhatFillThisBuffer) {
NuPlayer.cpp
40
#include <media/stagefright/
ACodec
.h>
543
if (what ==
ACodec
::kWhatFillThisBuffer) {
552
} else if (what ==
ACodec
::kWhatEOS) {
565
} else if (what ==
ACodec
::kWhatFlushCompleted) {
594
} else if (what ==
ACodec
::kWhatOutputFormatChanged) {
684
} else if (what ==
ACodec
::kWhatShutdownCompleted) {
699
} else if (what ==
ACodec
::kWhatError) {
704
} else if (what ==
ACodec
::kWhatDrainThisBuffer) {
706
} else if (what !=
ACodec
::kWhatComponentAllocated
707
&& what !=
ACodec
::kWhatComponentConfigure
[
all
...]
NuPlayer.h
27
struct
ACodec
;
/frameworks/av/include/media/stagefright/
ACodec.h
35
struct
ACodec
: public AHierarchicalStateMachine {
52
ACodec
();
78
friend struct
ACodec
;
90
virtual ~
ACodec
();
312
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 130 milliseconds