#ifndef TAG_PARSER_AVCCONFIGURATION_H #define TAG_PARSER_AVCCONFIGURATION_H #include "./avcinfo.h" #include namespace TagParser { class MediaFormat; class Diagnostics; struct TAG_PARSER_EXPORT AvcConfiguration { AvcConfiguration(); std::uint8_t profileIndication; std::uint8_t profileCompat; std::uint8_t levelIndication; std::uint8_t naluSizeLength; std::vector spsInfos; std::vector ppsInfos; void parse(CppUtilities::BinaryReader &reader, std::uint64_t maxSize, Diagnostics &diag); }; /*! * \brief Constructs an empty AVC configuration. */ inline AvcConfiguration::AvcConfiguration() : profileIndication(0) , profileCompat(0) , levelIndication(0) , naluSizeLength(0) { } } // namespace TagParser #endif // TAG_PARSER_AVCCONFIGURATION_H