added some more MPEG descriptions

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5425 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
beveloper 2003-11-21 15:27:20 +00:00
parent ce09dfb8e6
commit 5ccadc29e6
1 changed files with 8 additions and 1 deletions

View File

@ -92,7 +92,14 @@ enum mpeg_id {
B_MPEG_1_AUDIO_LAYER_1 = 0x101, B_MPEG_1_AUDIO_LAYER_1 = 0x101,
B_MPEG_1_AUDIO_LAYER_2 = 0x102, B_MPEG_1_AUDIO_LAYER_2 = 0x102,
B_MPEG_1_AUDIO_LAYER_3 = 0x103, // "MP3" B_MPEG_1_AUDIO_LAYER_3 = 0x103, // "MP3"
B_MPEG_1_VIDEO = 0x111 B_MPEG_1_VIDEO = 0x111,
B_MPEG_2_AUDIO_LAYER_1 = 0x201,
B_MPEG_2_AUDIO_LAYER_2 = 0x202,
B_MPEG_2_AUDIO_LAYER_3 = 0x203,
B_MPEG_2_VIDEO = 0x211,
B_MPEG_2_5_AUDIO_LAYER_1 = 0x301,
B_MPEG_2_5_AUDIO_LAYER_2 = 0x302,
B_MPEG_2_5_AUDIO_LAYER_3 = 0x303,
}; };
typedef struct { typedef struct {
uint32 id; uint32 id;