HomeSort by relevance Sort by last modified time
    Searched refs:mVideoTrackIndex (Results 1 - 5 of 5) 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...]
  /frameworks/av/media/libstagefright/wifi-display/source/
PlaybackSession.h 116 ssize_t mVideoTrackIndex;
PlaybackSession.cpp 361 mVideoTrackIndex(-1),
558 if (mVideoTrackIndex >= 0) {
560 mTracks.valueFor(mVideoTrackIndex);
675 if (mVideoTrackIndex >= 0) {
676 const sp<Track> &videoTrack = mTracks.valueFor(mVideoTrackIndex);
800 mVideoTrackIndex = trackIndex;
998 mVideoTrackIndex = trackIndex;
  /frameworks/av/media/libstagefright/include/
AwesomePlayer.h 339 ssize_t mVideoTrackIndex;
  /frameworks/av/media/libstagefright/
AwesomePlayer.cpp 432 mStats.mVideoTrackIndex = -1;
462 mStats.mVideoTrackIndex = mStats.mTracks.size();
465 &mStats.mTracks.editItemAt(mStats.mVideoTrackIndex);
625 mStats.mVideoTrackIndex = -1;
    [all...]

Completed in 245 milliseconds