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

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
MediaDecoder.java 98 private int mVideoTrackIndex;
231 mVideoTrackIndex = -1;
239 if (DecoderUtil.isVideoFormat(format) && mVideoTrackIndex == -1) {
240 mVideoTrackIndex = i;
246 if (mVideoTrackIndex == -1 && mAudioTrackIndex == -1) {
251 if (mVideoTrackIndex != -1) {
252 MediaFormat videoFormat = mMediaExtractor.getTrackFormat(mVideoTrackIndex);
254 ? new GpuVideoTrackDecoder(mVideoTrackIndex, videoFormat, this)
255 : new CpuVideoTrackDecoder(mVideoTrackIndex, videoFormat, this);
257 mMediaExtractor.selectTrack(mVideoTrackIndex);
    [all...]
  /cts/tests/tests/media/libmediandkjni/
native_media_decoder_source.cpp 53 int mVideoTrackIndex;
77 mVideoTrackIndex(-1),
94 mVideoTrackIndex = -1;
106 mVideoTrackIndex = i;
116 return mVideoTrackIndex == -1 ? FAIL : OK;
136 } else if (t != mVideoTrackIndex) {
204 if (mVideoTrackIndex < 0) {
210 AMediaExtractor_selectTrack(mEx.get(), mVideoTrackIndex);
  /packages/apps/TV/src/com/android/tv/tuner/exoplayer/
MpegTsSampleExtractor.java 49 private int mVideoTrackIndex;
59 mVideoTrackIndex = -1;
113 if (MimeTypes.isVideo(mime) && mVideoTrackIndex == -1) {
114 mVideoTrackIndex = i;
123 if (mVideoTrackIndex != -1) {
188 return mVideoTrackIndex < 0 || mReachedEos.get(mVideoTrackIndex)
200 if (mCea708TextTrackSelected && track == mVideoTrackIndex
213 mVideoTrackIndex = -1;
ExoPlayerSampleExtractor.java 81 private int mVideoTrackIndex = INVALID_TRACK_INDEX;
238 mVideoTrackIndex = i;
244 mVideoTrackIndex = INVALID_TRACK_INDEX;
369 if (mVideoTrackIndex != INVALID_TRACK_INDEX) {
371 if (index != mVideoTrackIndex) {
403 && mVideoTrackIndex != index) {
543 if (mVideoTrackIndex != entry.getKey()) {
  /frameworks/av/media/libstagefright/wifi-display/source/
PlaybackSession.h 121 ssize_t mVideoTrackIndex;
PlaybackSession.cpp 362 mVideoTrackIndex(-1),
559 if (mVideoTrackIndex >= 0) {
561 mTracks.valueFor(mVideoTrackIndex);
676 if (mVideoTrackIndex >= 0) {
677 const sp<Track> &videoTrack = mTracks.valueFor(mVideoTrackIndex);
799 mVideoTrackIndex = trackIndex;
1006 mVideoTrackIndex = trackIndex;

Completed in 164 milliseconds