ReactOS 0.4.16-dev-300-g2aadf2e
|
Go to the source code of this file.
#define HDR_BITRATE 0x0000f000 |
Definition at line 44 of file mpeghead.h.
#define HDR_BITRATE_VAL | ( | h | ) | (((h)&HDR_BITRATE) >> 12) |
Definition at line 45 of file mpeghead.h.
#define HDR_CHANEX 0x00000030 |
Definition at line 59 of file mpeghead.h.
#define HDR_CHANEX_VAL | ( | h | ) | (((h)&HDR_CHANEX) >> 4) |
Definition at line 60 of file mpeghead.h.
#define HDR_CHANNEL 0x000000c0 |
Definition at line 56 of file mpeghead.h.
#define HDR_CHANNEL_VAL | ( | h | ) | (((h)&HDR_CHANNEL) >> 6) |
Definition at line 57 of file mpeghead.h.
#define HDR_CMPMASK (HDR_SYNC|HDR_VERSION|HDR_LAYER|HDR_SAMPLERATE) |
Definition at line 78 of file mpeghead.h.
#define HDR_COPYRIGHT 0x00000008 |
Definition at line 62 of file mpeghead.h.
#define HDR_COPYRIGHT_VAL | ( | h | ) | (((h)&HDR_COPYRIGHT) >> 3) |
Definition at line 63 of file mpeghead.h.
#define HDR_CRC 0x00010000 |
Definition at line 41 of file mpeghead.h.
#define HDR_EMPHASIS 0x00000003 |
Definition at line 68 of file mpeghead.h.
#define HDR_EMPHASIS_VAL | ( | h | ) | (((h)&HDR_EMPHASIS) >> 0) |
Definition at line 69 of file mpeghead.h.
#define HDR_FREE_FORMAT | ( | head | ) | (!(head & HDR_BITRATE)) |
Definition at line 84 of file mpeghead.h.
#define HDR_LAYER 0x00060000 |
Definition at line 38 of file mpeghead.h.
#define HDR_ORIGINAL 0x00000004 |
Definition at line 65 of file mpeghead.h.
#define HDR_ORIGINAL_VAL | ( | h | ) | (((h)&HDR_ORIGINAL) >> 2) |
Definition at line 66 of file mpeghead.h.
#define HDR_PADDING 0x00000200 |
Definition at line 50 of file mpeghead.h.
#define HDR_PADDING_VAL | ( | h | ) | (((h)&HDR_PADDING) >> 9) |
Definition at line 51 of file mpeghead.h.
#define HDR_PRIVATE 0x00000100 |
Definition at line 53 of file mpeghead.h.
#define HDR_PRIVATE_VAL | ( | h | ) | (((h)&HDR_PRIVATE) >> 8) |
Definition at line 54 of file mpeghead.h.
#define HDR_SAMEMASK (HDR_SYNC|HDR_VERSION|HDR_LAYER|HDR_BITRATE|HDR_SAMPLERATE|HDR_CHANNEL) |
Definition at line 81 of file mpeghead.h.
#define HDR_SAMPLERATE 0x00000c00 |
Definition at line 47 of file mpeghead.h.
#define HDR_SAMPLERATE_VAL | ( | h | ) | (((h)&HDR_SAMPLERATE) >> 10) |
Definition at line 48 of file mpeghead.h.
#define HDR_SAMPMASK (HDR_VERSION|HDR_SAMPLERATE) |
Definition at line 87 of file mpeghead.h.
#define HDR_SYNC 0xffe00000 |
Definition at line 32 of file mpeghead.h.
#define HDR_VERSION 0x00180000 |
Definition at line 35 of file mpeghead.h.
#define HDR_VERSION_VAL | ( | h | ) | (((h)&HDR_VERSION) >> 19) |
Definition at line 36 of file mpeghead.h.