#include "./mpeg4descriptor.h" #include "./mp4container.h" #include "./mp4ids.h" #include #include #include using namespace std; using namespace ConversionUtilities; namespace Media { /*! * \class Media::Mpeg4Descriptor * \brief The Mpeg4Descriptor class helps to parse MPEG-4 descriptors. */ /*! * \brief Constructs a new top level descriptor with the specified \a container at the specified \a startOffset * and with the specified \a maxSize. */ Mpeg4Descriptor::Mpeg4Descriptor(ContainerType &container, uint64 startOffset, uint64 maxSize) : GenericFileElement(container, startOffset, maxSize) {} /*! * \brief Constructs a new sub level descriptor with the specified \a parent at the specified \a startOffset. */ Mpeg4Descriptor::Mpeg4Descriptor(Mpeg4Descriptor &parent, uint64 startOffset) : GenericFileElement(parent, startOffset) {} /*! * \brief Returns the parsing context. */ string Mpeg4Descriptor::parsingContext() const { return "parsing " % idToString() % " descriptor at " + startOffset(); } /*! * \brief Converts the specified atom \a ID to a printable string. */ std::string Mpeg4Descriptor::idToString() const { return "0x" + ConversionUtilities::numberToString(id(), 16); } /*! * \brief Parses the MPEG-4 descriptor. * \remarks Does not detect the first child. */ void Mpeg4Descriptor::internalParse() { invalidateStatus(); if(maxTotalSize() < minimumElementSize()) { addNotification(NotificationType::Critical, "Descriptor is smaller than 2 byte and hence invalid. The maximum size within the encloding element is " % numberToString(maxTotalSize()) + '.', "parsing MPEG-4 descriptor"); throw TruncatedDataException(); } stream().seekg(startOffset()); // read ID m_idLength = m_sizeLength = 1; m_id = reader().readByte(); // read data size byte tmp = reader().readByte(); m_dataSize = tmp & 0x7F; while(tmp & 0x80) { m_dataSize = (m_dataSize << 7) | ((tmp = reader().readByte()) & 0x7F); ++m_sizeLength; } // check whether the denoted data size exceeds the available data size if(maxTotalSize() < totalSize()) { addNotification(NotificationType::Warning, "The descriptor seems to be truncated; unable to parse siblings of that ", parsingContext()); m_dataSize = maxTotalSize(); // using max size instead } m_firstChild.reset(); Mpeg4Descriptor *sibling = nullptr; if(totalSize() < maxTotalSize()) { if(parent()) { sibling = new Mpeg4Descriptor(*(parent()), startOffset() + totalSize()); } else { sibling = new Mpeg4Descriptor(container(), startOffset() + totalSize(), maxTotalSize() - totalSize()); } } m_nextSibling.reset(sibling); } }