|
| | Mp4Atom (ContainerType &container, std::uint64_t startOffset) |
| std::string | idToString () const |
| | Converts the specified atom ID to a printable string.
|
| bool | isParent () const |
| | Returns an indication whether the atom is a parent element.
|
| bool | isPadding () const |
| | Returns an indication whether the atom is a padding element.
|
| std::uint64_t | firstChildOffset () const |
| | Returns the offset of the first child (relative to the start offset of this atom).
|
| | GenericFileElement (ContainerType &container, std::uint64_t startOffset) |
| GenericFileElement & | operator= (const GenericFileElement &other)=delete |
| ContainerType & | container () |
| | Returns the related container.
|
| std::iostream & | stream () |
| | Returns the related stream.
|
| CppUtilities::BinaryReader & | reader () |
| | Returns the related BinaryReader.
|
| CppUtilities::BinaryWriter & | writer () |
| | Returns the related BinaryWriter.
|
| std::uint64_t | startOffset () const |
| | Returns the start offset in the related stream.
|
| std::uint64_t | relativeStartOffset () const |
| | Returns the offset of the element in its parent or - if it is a top-level element - in the related stream.
|
| const IdentifierType & | id () const |
| | Returns the element ID.
|
| std::string | idToString () const |
| | Returns a printable string representation of the element ID.
|
| std::uint32_t | idLength () const |
| | Returns the length of the id denotation in byte.
|
| std::uint32_t | headerSize () const |
| | Returns the header size of the element in byte.
|
| DataSizeType | dataSize () const |
| | Returns the data size of the element in byte.
|
| std::uint32_t | sizeLength () const |
| | Returns the length of the size denotation of the element in byte.
|
| std::uint64_t | dataOffset () const |
| | Returns the data offset of the element in the related stream.
|
| std::uint64_t | totalSize () const |
| | Returns the total size of the element.
|
| std::uint64_t | endOffset () const |
| | Returns the offset of the first byte which doesn't belong to this element anymore.
|
| std::uint64_t | maxTotalSize () const |
| | Returns maximum total size.
|
| std::uint8_t | level () const |
| | Returns how deep the element is nested (0 for top-level elements, 1 for children of top-level elements, ...).
|
| Mp4Atom * | parent () |
| | Returns the parent of the element.
|
| Mp4Atom * | nextSibling () |
| | Returns the next sibling of the element.
|
| Mp4Atom * | firstChild () |
| | Returns the first child of the element.
|
| Mp4Atom * | lastChild () |
| | Returns the last child of the element.
|
| Mp4Atom * | subelementByPath (Diagnostics &diag, IdType item) |
| | Returns the sub element for the specified path.
|
| Mp4Atom * | childById (const IdentifierType &id, Diagnostics &diag) |
| | Returns the first child with the specified id.
|
| Mp4Atom * | siblingById (const IdentifierType &id, Diagnostics &diag) |
| | Returns the first sibling with the specified id.
|
| Mp4Atom * | siblingByIdIncludingThis (const IdentifierType &id, Diagnostics &diag) |
| | Returns the first sibling with the specified id or the current instance if its ID equals id.
|
| bool | isParent () const |
| | Returns an indication whether this instance is a parent element.
|
| bool | isPadding () const |
| | Returns an indication whether this instance is a padding element.
|
| std::uint64_t | firstChildOffset () const |
| | Returns the offset of the first child (relative to the start offset of this element).
|
| bool | isParsed () const |
| | Returns an indication whether this instance has been parsed yet.
|
| void | clear () |
| | Clears the status of the element.
|
| void | parse (Diagnostics &diag) |
| | Parses the header information of the element which is read from the related stream at the start offset.
|
| void | reparse (Diagnostics &diag) |
| | Parses the header information of the element which is read from the related stream at the start offset.
|
| void | validateSubsequentElementStructure (Diagnostics &diag, std::uint64_t *paddingSize=nullptr, AbortableProgressFeedback *progress=nullptr) |
| | Parses (see parse()) this and all subsequent elements.
|
| void | copyHeader (TargetStream &targetStream, Diagnostics &diag, AbortableProgressFeedback *progress) |
| | Writes the header information of the element to the specified targetStream.
|
| void | copyWithoutChilds (TargetStream &targetStream, Diagnostics &diag, AbortableProgressFeedback *progress) |
| | Writes the element without its children to the specified targetStream.
|
| void | copyEntirely (TargetStream &targetStream, Diagnostics &diag, AbortableProgressFeedback *progress) |
| | Writes the entire element including all children to the specified targetStream.
|
| void | makeBuffer () |
| | Buffers the element (header and data).
|
| void | discardBuffer () |
| | Discards buffered data.
|
| void | copyBuffer (TargetStream &targetStream) |
| | Copies buffered data to targetStream.
|
| void | copyPreferablyFromBuffer (TargetStream &targetStream, Diagnostics &diag, AbortableProgressFeedback *progress) |
| | Copies buffered data to targetStream if data has been buffered; copies from input stream otherwise.
|
| const std::unique_ptr< char[]> & | buffer () |
| | Returns buffered data.
|
| Mp4Atom * | denoteFirstChild (std::uint32_t offset) |
| | Denotes the first child to start at the specified offset (relative to the start offset of this descriptor).
|
The Mp4Atom class helps to parse MP4 files.
Definition at line 38 of file mp4atom.h.