Mercurial > mplayer.hg
annotate libmpdemux/mp3_hdr.h @ 25866:178006e9ea75
Replace with the output of the updated alaw-gen generator program.
This adds multiple inclusion guards and reformats the tables.
author | diego |
---|---|
date | Sun, 27 Jan 2008 18:49:24 +0000 |
parents | 6ac1ece1f9fe |
children | 4129c8cfa742 |
rev | line source |
---|---|
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
16162
diff
changeset
|
1 #ifndef MP3_HDR_H |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
16162
diff
changeset
|
2 #define MP3_HDR_H |
4710 | 3 |
16162
b5c2254d13f8
set i_bps in demux_audio for WAV and MP3 to avoid division by zero before
reimar
parents:
15199
diff
changeset
|
4 int mp_get_mp3_header(unsigned char* hbuf,int* chans, int* freq, int* spf, int* mpa_layer, int* br); |
6763 | 5 |
16162
b5c2254d13f8
set i_bps in demux_audio for WAV and MP3 to avoid division by zero before
reimar
parents:
15199
diff
changeset
|
6 #define mp_decode_mp3_header(hbuf) mp_get_mp3_header(hbuf,NULL,NULL,NULL,NULL,NULL) |
4710 | 7 |
8 static inline int mp_check_mp3_header(unsigned int head){ | |
9 if( (head & 0x0000e0ff) != 0x0000e0ff || | |
10 (head & 0x00fc0000) == 0x00fc0000) return 0; | |
11 if(mp_decode_mp3_header((unsigned char*)(&head))<=0) return 0; | |
12 return 1; | |
13 } | |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
16162
diff
changeset
|
14 |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
16162
diff
changeset
|
15 #endif /* MP3_HDR_H */ |