Searched defs:mVideoTrackIndex (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.h121 ssize_t mVideoTrackIndex; member in struct:android::WifiDisplaySource::PlaybackSession
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DMediaDecoder.java98 private int mVideoTrackIndex; field in class:MediaDecoder
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...]

Completed in 108 milliseconds