Home
last modified time | relevance | path

Searched refs:trackFormatList (Results 1 – 4 of 4) sorted by relevance

/packages/apps/TV/src/com/android/tv/tuner/exoplayer/
DFileSampleExtractor.java63 List<BufferManager.TrackFormat> trackFormatList = mBufferManager.readTrackInfoFiles(); in prepare() local
64 if (trackFormatList == null || trackFormatList.isEmpty()) { in prepare()
67 mTrackCount = trackFormatList.size(); in prepare()
71 BufferManager.TrackFormat trackFormat = trackFormatList.get(i); in prepare()
/packages/apps/TV/src/com/android/tv/tuner/exoplayer/buffer/
DBufferManager.java551 List<TrackFormat> trackFormatList = new ArrayList<>(); in readTrackInfoFiles() local
552 trackFormatList.addAll(mStorageManager.readTrackInfoFiles(false)); in readTrackInfoFiles()
553 trackFormatList.addAll(mStorageManager.readTrackInfoFiles(true)); in readTrackInfoFiles()
554 if (trackFormatList.isEmpty()) { in readTrackInfoFiles()
557 return trackFormatList; in readTrackInfoFiles()
DDvrStorageManager.java169 List<BufferManager.TrackFormat> trackFormatList = new ArrayList<>(); in readTrackInfoFiles() local
193 trackFormatList.add(new BufferManager.TrackFormat(name, format)); in readTrackInfoFiles()
199 return trackFormatList; in readTrackInfoFiles()
/packages/apps/TV/src/com/android/tv/tuner/tvinput/
DTunerSessionWorker.java345 List<BufferManager.TrackFormat> trackFormatList = in getDurationForRecording() local
347 if (trackFormatList.isEmpty()) { in getDurationForRecording()
348 trackFormatList = storageManager.readTrackInfoFiles(true); in getDurationForRecording()
350 if (!trackFormatList.isEmpty()) { in getDurationForRecording()
351 BufferManager.TrackFormat trackFormat = trackFormatList.get(0); in getDurationForRecording()