Mercurial > mplayer.hg
annotate libmpdemux/mp3_hdr.h @ 26107:610397af3388
synced with r26138
author | Gabrov |
---|---|
date | Sat, 01 Mar 2008 12:35:07 +0000 |
parents | 4129c8cfa742 |
children | 268ecf0e1ba4 |
rev | line source |
---|---|
26029 | 1 #ifndef MPLAYER_MP3_HDR_H |
2 #define MPLAYER_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 |
26029 | 15 #endif /* MPLAYER_MP3_HDR_H */ |