Home
last modified time | relevance | path

Searched refs:ID3_TAG (Results 1 – 6 of 6) sorted by relevance

/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ts/
DAc3Extractor.java20 import static com.google.android.exoplayer2.metadata.id3.Id3Decoder.ID3_TAG;
71 if (scratch.readUnsignedInt24() != ID3_TAG) { in sniff()
DAc4Extractor.java22 import static com.google.android.exoplayer2.metadata.id3.Id3Decoder.ID3_TAG;
78 if (scratch.readUnsignedInt24() != ID3_TAG) { in sniff()
DAdtsExtractor.java20 import static com.google.android.exoplayer2.metadata.id3.Id3Decoder.ID3_TAG;
219 if (scratch.readUnsignedInt24() != ID3_TAG) { in peekId3Header()
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/
DId3Peeker.java61 if (scratch.readUnsignedInt24() != Id3Decoder.ID3_TAG) { in peekId3Data()
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/metadata/id3/
DId3Decoder.java66 public static final int ID3_TAG = 0x00494433; field in Id3Decoder
167 if (id != ID3_TAG) { in decodeHeader()
/external/exoplayer/tree/library/hls/src/main/java/com/google/android/exoplayer2/source/hls/
DHlsMediaChunk.java447 if (id != Id3Decoder.ID3_TAG) { in peekId3PrivTimestamp()