Home | History | Annotate | Download | only in decoder

Lines Matching refs:mVideoTrackIndex

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);
308 mVideoTrackIndex = -1;
321 if (sampleTrackIndex == mVideoTrackIndex) {
392 mVideoTrackIndex != -1 ? mVideoTrackIndex : mAudioTrackIndex);