ReactOS
0.4.16-dev-927-g467dec4
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class 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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
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
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File 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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
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
Typedefs
_
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
Enumerations
_
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
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
Macros
_
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
Examples
mpeg2bits.h
Go to the documentation of this file.
1
2
#pragma once
3
#pragma pack(push)
4
5
#ifdef __midl
6
typedef
struct
7
{
8
WORD
Bits;
9
} PID_BITS_MIDL;
10
11
typedef
struct
12
{
13
WORD
Bits;
14
} MPEG_HEADER_BITS_MIDL;
15
16
typedef
struct
17
{
18
BYTE
Bits;
19
} MPEG_HEADER_VERSION_BITS_MIDL;
20
21
#else
22
23
typedef
struct
24
{
25
WORD
Reserved
: 3;
26
WORD
ProgramId
: 13;
27
}
PID_BITS
, *
PPID_BITS
;
28
typedef
struct
29
{
30
WORD
SectionLength
: 12;
31
WORD
Reserved
: 2;
32
WORD
PrivateIndicator
: 1;
33
WORD
SectionSyntaxIndicator
: 1;
34
}
MPEG_HEADER_BITS
, *
PMPEG_HEADER_BITS
;
35
36
typedef
struct
37
{
38
BYTE
CurrentNextIndicator
: 1;
39
BYTE
VersionNumber
: 5;
40
BYTE
Reserved
: 2;
41
}
MPEG_HEADER_VERSION_BITS
, *
PMPEG_HEADER_VERSION_BITS
;
42
#endif
43
44
#pragma pack(pop)
45
WORD
unsigned short WORD
Definition:
ntddk_ex.h:93
PMPEG_HEADER_VERSION_BITS
struct MPEG_HEADER_VERSION_BITS * PMPEG_HEADER_VERSION_BITS
PPID_BITS
struct PID_BITS * PPID_BITS
PMPEG_HEADER_BITS
struct MPEG_HEADER_BITS * PMPEG_HEADER_BITS
MPEG_HEADER_BITS
Definition:
mpeg2bits.h:29
MPEG_HEADER_BITS::PrivateIndicator
WORD PrivateIndicator
Definition:
mpeg2bits.h:32
MPEG_HEADER_BITS::SectionLength
WORD SectionLength
Definition:
mpeg2bits.h:30
MPEG_HEADER_BITS::Reserved
WORD Reserved
Definition:
mpeg2bits.h:31
MPEG_HEADER_BITS::SectionSyntaxIndicator
WORD SectionSyntaxIndicator
Definition:
mpeg2bits.h:33
MPEG_HEADER_VERSION_BITS
Definition:
mpeg2bits.h:37
MPEG_HEADER_VERSION_BITS::VersionNumber
BYTE VersionNumber
Definition:
mpeg2bits.h:39
MPEG_HEADER_VERSION_BITS::CurrentNextIndicator
BYTE CurrentNextIndicator
Definition:
mpeg2bits.h:38
MPEG_HEADER_VERSION_BITS::Reserved
BYTE Reserved
Definition:
mpeg2bits.h:40
PID_BITS
Definition:
mpeg2bits.h:24
PID_BITS::ProgramId
WORD ProgramId
Definition:
mpeg2bits.h:26
PID_BITS::Reserved
WORD Reserved
Definition:
mpeg2bits.h:25
BYTE
unsigned char BYTE
Definition:
xxhash.c:193
sdk
include
dxsdk
mpeg2bits.h
Generated on Sun Mar 30 2025 06:12:17 for ReactOS by
1.9.6