Tag Parser 11.0.0
C++ library for reading and writing MP4 (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags
av1configuration.cpp
Go to the documentation of this file.
2
3#include "../diagnostics.h"
4#include "../exceptions.h"
5
6#include <c++utilities/io/binaryreader.h>
7
8using namespace std;
9using namespace CppUtilities;
10
11namespace TagParser {
12
24void Av1Configuration::parse(BinaryReader &reader, std::uint64_t maxSize, Diagnostics &diag)
25{
26 CPP_UTILITIES_UNUSED(reader)
27 CPP_UTILITIES_UNUSED(maxSize)
28 CPP_UTILITIES_UNUSED(diag)
30}
31
32} // namespace TagParser
The Diagnostics class is a container for DiagMessage.
Definition: diagnostics.h:156
This exception is thrown when the an operation is invoked that has not been implemented yet.
Definition: exceptions.h:60
Contains all classes and functions of the TagInfo library.
Definition: aaccodebook.h:10
void parse(CppUtilities::BinaryReader &reader, std::uint64_t maxSize, Diagnostics &diag)
Parses the AV1 configuration using the specified reader.