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

  /frameworks/av/cmds/stagefright/
SimplePlayer.h 72 struct CodecState
91 KeyedVector<size_t, CodecState> mStateByTrackIndex;
101 status_t onOutputFormatChanged(size_t trackIndex, CodecState *state);
104 CodecState *state, BufferInfo *info, const sp<ABuffer> &buffer);
mediafilter.cpp 132 struct CodecState {
161 CodecState *filterState,
162 CodecState *vidState) {
253 CodecState *filterState,
328 KeyedVector<size_t, CodecState> stateByTrack;
330 CodecState *vidState = NULL;
348 CodecState *state =
349 &stateByTrack.editValueAt(stateByTrack.add(i, CodecState()));
390 CodecState *filterState = new CodecState();
    [all...]
codec.cpp 57 struct CodecState {
88 KeyedVector<size_t, CodecState> stateByTrack;
116 CodecState *state =
117 &stateByTrack.editValueAt(stateByTrack.add(i, CodecState()));
145 CodecState *state = &stateByTrack.editValueAt(i);
169 CodecState *state = &stateByTrack.editValueFor(trackIndex);
204 CodecState *state = &stateByTrack.editValueAt(i);
233 CodecState *state = &stateByTrack.editValueAt(i);
245 CodecState *state = &stateByTrack.editValueAt(i);
311 CodecState *state = &stateByTrack.editValueAt(i)
    [all...]
SimplePlayer.cpp 312 CodecState *state =
314 mStateByTrackIndex.add(i, CodecState()));
340 CodecState *state = &mStateByTrackIndex.editValueAt(i);
401 CodecState *state = &mStateByTrackIndex.editValueAt(i);
420 CodecState *state = &mStateByTrackIndex.editValueAt(i);
475 CodecState *state = &mStateByTrackIndex.editValueFor(trackIndex);
516 CodecState *state = &mStateByTrackIndex.editValueAt(i);
569 size_t trackIndex __unused, CodecState *state) {
600 CodecState *state, BufferInfo *info, const sp<ABuffer> &buffer) {
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecTunneledPlayer.java 48 private CodecState mAudioTrackState;
54 private Map<Integer, CodecState> mAudioCodecStates;
55 private Map<Integer, CodecState> mVideoCodecStates;
209 mVideoCodecStates = new HashMap<Integer, CodecState>();
215 mAudioCodecStates = new HashMap<Integer, CodecState>();
276 CodecState state;
278 state = new CodecState((MediaTimeProvider)this, mVideoExtractor,
282 state = new CodecState((MediaTimeProvider)this, mAudioExtractor,
311 for (CodecState state : mVideoCodecStates.values()) {
315 for (CodecState state : mAudioCodecStates.values())
    [all...]
MediaCodecCencPlayer.java 59 private CodecState mAudioTrackState;
65 private Map<Integer, CodecState> mAudioCodecStates;
66 private Map<Integer, CodecState> mVideoCodecStates;
266 mVideoCodecStates = new HashMap<Integer, CodecState>();
272 mAudioCodecStates = new HashMap<Integer, CodecState>();
304 CodecState state;
306 state = new CodecState((MediaTimeProvider)this, mVideoExtractor,
311 state = new CodecState((MediaTimeProvider)this, mAudioExtractor,
358 for (CodecState state : mVideoCodecStates.values()) {
362 for (CodecState state : mAudioCodecStates.values())
    [all...]
CodecState.java 31 public class CodecState {
32 private static final String TAG = CodecState.class.getSimpleName();
57 public CodecState(
85 Log.d(TAG, "CodecState::onOutputFormatChanged " + mime);
272 Log.d(TAG, "CodecState::onOutputFormatChanged " + mime);
281 Log.d(TAG, "CodecState::onOutputFormatChanged Audio" +
299 Log.d(TAG, "CodecState::onOutputFormatChanged Video" +

Completed in 112 milliseconds