Tag Parser
12.5.0
C++ library for reading and writing MP4 (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
y
Variables
Typedefs
Enumerations
a
b
c
d
e
f
g
i
k
l
m
p
r
s
t
v
x
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Typedefs
c
d
f
i
t
Related Symbols
:
f
g
i
m
o
t
w
Files
File List
File Members
All
Functions
Variables
Enumerations
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
ivf
ivfframe.h
Go to the documentation of this file.
1
#ifndef TAG_PARSER_IVFRAME_H
2
#define TAG_PARSER_IVFRAME_H
3
4
#include "
../diagnostics.h
"
5
6
namespace
CppUtilities
{
7
class
BinaryReader;
8
}
9
10
namespace
TagParser
{
11
12
class
TAG_PARSER_EXPORT
IvfFrame
{
13
public
:
14
constexpr
IvfFrame
();
15
void
parseHeader
(CppUtilities::BinaryReader &reader,
Diagnostics
&diag);
16
17
private
:
18
std::uint64_t startOffset;
19
std::uint64_t timestamp;
20
std::uint32_t size;
21
};
12
class
TAG_PARSER_EXPORT
IvfFrame
{
…
};
22
26
constexpr
IvfFrame::IvfFrame
()
27
: startOffset(0)
28
, timestamp(0)
29
, size(0)
30
{
31
}
26
constexpr
IvfFrame::IvfFrame
() {
…
}
32
33
}
// namespace TagParser
34
35
#endif
// TAG_PARSER_IVFRAME_H
TagParser::Diagnostics
The Diagnostics class is a container for DiagMessage.
Definition
diagnostics.h:156
TagParser::IvfFrame::IvfFrame
constexpr IvfFrame()
Constructs a new frame.
Definition
ivfframe.h:26
TagParser::IvfFrame::parseHeader
void parseHeader(CppUtilities::BinaryReader &reader, Diagnostics &diag)
Parses the header read using the specified reader.
Definition
ivfframe.cpp:21
diagnostics.h
TAG_PARSER_EXPORT
#define TAG_PARSER_EXPORT
Marks the symbol to be exported by the tagparser library.
Definition
global.h:14
CppUtilities
Definition
abstractcontainer.h:16
TagParser
Contains all classes and functions of the TagInfo library.
Definition
aaccodebook.h:10
Generated on Thu Apr 3 2025 20:33:00 for Tag Parser by
1.13.2