OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pmtItem
(Results
1 - 3
of
3
) sorted by null
/packages/apps/TV/src/com/android/tv/tuner/tvinput/
EventDetector.java
126
public void onVctItemParsed(PsipData.VctItem channel, List<PsiData.
PmtItem
> pmtItems) {
137
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());
FileSourceEventDetector.java
24
import com.android.tv.tuner.data.PsiData.
PmtItem
;
167
public void onVctItemParsed(VctItem channel, List<
PmtItem
> pmtItems) {
178
for (
PmtItem
pmtItem
: pmtItems) {
179
if (
pmtItem
.getAudioTracks() != null) {
180
audioTracks.addAll(
pmtItem
.getAudioTracks());
182
if (
pmtItem
.getCaptionTracks() != null) {
183
captionTracks.addAll(
pmtItem
.getCaptionTracks());
/packages/apps/TV/src/com/android/tv/tuner/ts/
SectionParser.java
27
import com.android.tv.tuner.data.PsiData.
PmtItem
;
328
void onPmtParsed(int programNumber, List<
PmtItem
> items);
460
List<
PmtItem
> results = new ArrayList<>();
476
PmtItem
pmtItem
= new
PmtItem
(streamType, esPid, audioTracks, captionTracks);
478
Log.d(TAG, "PMT " +
pmtItem
+ " descriptors size: " + descriptors.size());
480
results.add(
pmtItem
);
483
results.add(new
PmtItem
(
PmtItem
.ES_PID_PCR, pcrPid, null, null))
[
all
...]
Completed in 343 milliseconds