Home
last modified time | relevance | path

Searched refs:pmtItem (Results 1 – 3 of 3) sorted by relevance

/packages/apps/TV/src/com/android/tv/tuner/tvinput/
DFileSourceEventDetector.java178 for (PmtItem pmtItem : pmtItems) {
179 if (pmtItem.getAudioTracks() != null) {
180 audioTracks.addAll(pmtItem.getAudioTracks());
182 if (pmtItem.getCaptionTracks() != null) {
183 captionTracks.addAll(pmtItem.getCaptionTracks());
DEventDetector.java137 for (PsiData.PmtItem pmtItem : pmtItems) {
138 if (pmtItem.getAudioTracks() != null) {
139 audioTracks.addAll(pmtItem.getAudioTracks());
141 if (pmtItem.getCaptionTracks() != null) {
142 captionTracks.addAll(pmtItem.getCaptionTracks());
/packages/apps/TV/src/com/android/tv/tuner/ts/
DSectionParser.java476 PmtItem pmtItem = new PmtItem(streamType, esPid, audioTracks, captionTracks); in parsePMT() local
478 Log.d(TAG, "PMT " + pmtItem + " descriptors size: " + descriptors.size()); in parsePMT()
480 results.add(pmtItem); in parsePMT()