MPEG_HEADER_VERSION_BITS structure (mpeg2bits.h)
[The feature associated with this page, Microsoft TV Technologies, is a legacy feature. Microsoft strongly recommends that new code does not use this feature.]
The MPEG_HEADER_VERSION_BITS structure contains the first 8 bits following the TSID in an MPEG-2 PSI section. These bits contain the version number and the current/next indicator.
Syntax
typedef struct {
BYTE CurrentNextIndicator : 1;
BYTE VersionNumber : 5;
BYTE Reserved : 2;
} MPEG_HEADER_VERSION_BITS, *PMPEG_HEADER_VERSION_BITS;
Members
CurrentNextIndicator
The current_next_indicator field.
VersionNumber
The version_number field.
Reserved
Two reserved bits.
Requirements
Requirement | Value |
---|---|
Header | mpeg2bits.h (include Mpeg2Structs.h) |