Tag Parser  9.1.3
C++ library for reading and writing MP4 (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags
vorbispackagetypes.h
Go to the documentation of this file.
1 #ifndef TAG_PARSER_VORBISPACKAGETYPES_H
2 #define TAG_PARSER_VORBISPACKAGETYPES_H
3 
4 #include <cstdint>
5 
6 namespace TagParser {
7 
11 namespace VorbisPackageTypes {
12 enum KnownType : std::uint8_t { Identification = 0x1, Comments = 0x3, Setup = 0x5 };
13 }
14 
15 } // namespace TagParser
16 
17 #endif // TAG_PARSER_VORBISPACKAGETYPES_H
TagParser
Contains all classes and functions of the TagInfo library.
Definition: aaccodebook.h:10
TagParser::VorbisPackageTypes::Setup
@ Setup
Definition: vorbispackagetypes.h:12
TagParser::VorbisPackageTypes::KnownType
KnownType
Definition: vorbispackagetypes.h:12
TagParser::VorbisPackageTypes::Identification
@ Identification
Definition: vorbispackagetypes.h:12
TagParser::VorbisPackageTypes::Comments
@ Comments
Definition: vorbispackagetypes.h:12