/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/ |
D | MetadataUtil.java | 413 int atomType = ilst.readInt(); in parseMdtaMetadataEntryFromIlst() local 414 if (atomType == Atom.TYPE_data) { in parseMdtaMetadataEntryFromIlst() 431 int atomType = data.readInt(); in parseTextAttribute() local 432 if (atomType == Atom.TYPE_data) { in parseTextAttribute() 444 int atomType = data.readInt(); in parseCommentAttribute() local 445 if (atomType == Atom.TYPE_data) { in parseCommentAttribute() 478 int atomType = data.readInt(); in parseIndexAndCountAttribute() local 479 if (atomType == Atom.TYPE_data && atomSize >= 22) { in parseIndexAndCountAttribute() 513 int atomType = data.readInt(); in parseCoverArt() local 514 if (atomType == Atom.TYPE_data) { in parseCoverArt() [all …]
|
D | Sniffer.java | 102 int atomType = buffer.readInt(); in sniffInternal() local 123 if (atomType == Atom.TYPE_moov) { in sniffInternal() 135 if (atomType == Atom.TYPE_moof || atomType == Atom.TYPE_mvex) { in sniffInternal() 148 if (atomType == Atom.TYPE_ftyp) { in sniffInternal()
|
D | AtomParsers.java | 535 int atomType = udtaData.readInt(); in parseUdta() local 536 if (atomType == Atom.TYPE_meta) { in parseUdta() 606 int atomType = meta.readInt(); in parseUdtaMeta() local 607 if (atomType == Atom.TYPE_ilst) { in parseUdtaMeta() 835 int atomType, in parseTextSampleEntry() argument 848 if (atomType == Atom.TYPE_TTML) { in parseTextSampleEntry() 850 } else if (atomType == Atom.TYPE_tx3g) { in parseTextSampleEntry() 856 } else if (atomType == Atom.TYPE_wvtt) { in parseTextSampleEntry() 858 } else if (atomType == Atom.TYPE_stpp) { in parseTextSampleEntry() 861 } else if (atomType == Atom.TYPE_c608) { in parseTextSampleEntry() [all …]
|
D | Mp4Extractor.java | 107 private int atomType; field in Mp4Extractor 281 atomType = atomHeader.readInt(); in readAtomHeader() 309 if (shouldParseContainerAtom(atomType)) { in readAtomHeader() 311 if (atomSize != atomHeaderBytesRead && atomType == Atom.TYPE_meta) { in readAtomHeader() 314 containerAtoms.push(new ContainerAtom(atomType, endPosition)); in readAtomHeader() 321 } else if (shouldParseLeafAtom(atomType)) { in readAtomHeader() 349 if (atomType == Atom.TYPE_ftyp) { in readAtomPayload() 352 containerAtoms.peek().add(new Atom.LeafAtom(atomType, atomData)); in readAtomPayload()
|
D | PsshAtomUtil.java | 169 int atomType = atomData.readInt(); in parsePsshAtom() local 170 if (atomType != Atom.TYPE_pssh) { in parsePsshAtom()
|
D | FragmentedMp4Extractor.java | 155 private int atomType; field in FragmentedMp4Extractor 342 atomType = atomHeader.readInt(); in readAtomHeader() 368 if (atomType == Atom.TYPE_moof) { in readAtomHeader() 379 if (atomType == Atom.TYPE_mdat) { in readAtomHeader() 391 if (shouldParseContainerAtom(atomType)) { in readAtomHeader() 393 containerAtoms.push(new ContainerAtom(atomType, endPosition)); in readAtomHeader() 400 } else if (shouldParseLeafAtom(atomType)) { in readAtomHeader() 425 onLeafAtomRead(new LeafAtom(atomType, atomData), input.getPosition()); in readAtomPayload()
|
/external/llvm-project/lld/lib/ReaderWriter/MachO/ |
D | MachONormalizedFileToAtoms.cpp | 51 #define ENTRY(seg, sect, type, atomType) \ argument 52 {seg, sect, type, DefinedAtom::atomType } 58 DefinedAtom::ContentType atomType; member 110 p->atomType != DefinedAtom::typeUnknown; ++p) { in atomTypeFromSection() 118 return p->atomType; in atomTypeFromSection() 139 void sectionParseInfo(DefinedAtom::ContentType atomType, in sectionParseInfo() argument 145 DefinedAtom::ContentType atomType; in sectionParseInfo() member 196 if (parseInfo[i].atomType == atomType) { in sectionParseInfo() 240 void atomFromSymbol(DefinedAtom::ContentType atomType, const Section §ion, in atomFromSymbol() argument 256 if (atomType == DefinedAtom::typeUnknown) { in atomFromSymbol() [all …]
|
D | MachONormalizedFileFromAtoms.cpp | 256 #define ENTRY(seg, sect, type, atomType) \ argument 257 {seg, sect, type, DefinedAtom::atomType } 263 DefinedAtom::ContentType atomType; member 306 SectionInfo *Util::getFinalSection(DefinedAtom::ContentType atomType) { in getFinalSection() argument 308 if (p.atomType != atomType) in getFinalSection() 311 switch (atomType) { in getFinalSection() 337 _sectionMap[atomType] = sect; in getFinalSection()
|
D | MachONormalizedFileBinaryUtils.h | 202 void relocatableSectionInfoForContentType(DefinedAtom::ContentType atomType,
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/tx3g/ |
D | Tx3gDecoder.java | 137 int atomType = parsableByteArray.readInt(); in decode() local 138 if (atomType == TYPE_STYL) { in decode() 144 } else if (atomType == TYPE_TBOX && customVerticalPlacement) { in decode()
|