Home
last modified time | relevance | path

Searched refs:atomType (Results 1 – 10 of 10) sorted by relevance

/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/
DMetadataUtil.java413 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 …]
DSniffer.java102 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()
DAtomParsers.java535 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 …]
DMp4Extractor.java107 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()
DPsshAtomUtil.java169 int atomType = atomData.readInt(); in parsePsshAtom() local
170 if (atomType != Atom.TYPE_pssh) { in parsePsshAtom()
DFragmentedMp4Extractor.java155 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/
DMachONormalizedFileToAtoms.cpp51 #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 &section, in atomFromSymbol() argument
256 if (atomType == DefinedAtom::typeUnknown) { in atomFromSymbol()
[all …]
DMachONormalizedFileFromAtoms.cpp256 #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()
DMachONormalizedFileBinaryUtils.h202 void relocatableSectionInfoForContentType(DefinedAtom::ContentType atomType,
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/tx3g/
DTx3gDecoder.java137 int atomType = parsableByteArray.readInt(); in decode() local
138 if (atomType == TYPE_STYL) { in decode()
144 } else if (atomType == TYPE_TBOX && customVerticalPlacement) { in decode()