Searched refs:mVideoTrackIndex (Results 1 – 3 of 3) sorted by relevance
98 private int mVideoTrackIndex; field in MediaDecoder231 mVideoTrackIndex = -1; in onStart()239 if (DecoderUtil.isVideoFormat(format) && mVideoTrackIndex == -1) { in onStart()240 mVideoTrackIndex = i; in onStart()246 if (mVideoTrackIndex == -1 && mAudioTrackIndex == -1) { in onStart()251 if (mVideoTrackIndex != -1) { in onStart()252 MediaFormat videoFormat = mMediaExtractor.getTrackFormat(mVideoTrackIndex); in onStart()254 ? new GpuVideoTrackDecoder(mVideoTrackIndex, videoFormat, this) in onStart()255 : new CpuVideoTrackDecoder(mVideoTrackIndex, videoFormat, this); in onStart()257 mMediaExtractor.selectTrack(mVideoTrackIndex); in onStart()[all …]
363 mVideoTrackIndex(-1), in PlaybackSession()560 if (mVideoTrackIndex >= 0) { in onMessageReceived()562 mTracks.valueFor(mVideoTrackIndex); in onMessageReceived()677 if (mVideoTrackIndex >= 0) { in onSinkFeedback()678 const sp<Track> &videoTrack = mTracks.valueFor(mVideoTrackIndex); in onSinkFeedback()802 mVideoTrackIndex = trackIndex; in setupMediaPacketizer()1009 mVideoTrackIndex = trackIndex; in addSource()
121 ssize_t mVideoTrackIndex; member