demux_mkv: Make seeks more precise in some cases
[mplayer/glamo.git] / libmpdemux / mp3_hdr.c
blob7095efeb7875a8d34b246b245c82e76096ebaa3a
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include <stdio.h>
21 #include "config.h"
22 #include "mp3_hdr.h"
23 #include "mp_msg.h"
25 //----------------------- mp3 audio frame header parser -----------------------
27 static int tabsel_123[2][3][16] = {
28 { {0,32,64,96,128,160,192,224,256,288,320,352,384,416,448,0},
29 {0,32,48,56, 64, 80, 96,112,128,160,192,224,256,320,384,0},
30 {0,32,40,48, 56, 64, 80, 96,112,128,160,192,224,256,320,0} },
32 { {0,32,48,56,64,80,96,112,128,144,160,176,192,224,256,0},
33 {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,0},
34 {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,0} }
37 static long freqs[9] = { 44100, 48000, 32000, // MPEG 1.0
38 22050, 24000, 16000, // MPEG 2.0
39 11025, 12000, 8000}; // MPEG 2.5
41 static int mp_mp3_get_lsf(unsigned char* hbuf){
42 unsigned long newhead =
43 hbuf[0] << 24 |
44 hbuf[1] << 16 |
45 hbuf[2] << 8 |
46 hbuf[3];
47 if( newhead & ((long)1<<20) ) {
48 return (newhead & ((long)1<<19)) ? 0x0 : 0x1;
50 return 1;
54 * return frame size or -1 (bad frame)
56 int mp_get_mp3_header(unsigned char* hbuf,int* chans, int* srate, int* spf, int* mpa_layer, int* br){
57 int stereo,ssize,lsf,framesize,padding,bitrate_index,sampling_frequency, divisor;
58 int bitrate;
59 int layer, mult[3] = { 12000, 144000, 144000 };
60 unsigned long newhead =
61 hbuf[0] << 24 |
62 hbuf[1] << 16 |
63 hbuf[2] << 8 |
64 hbuf[3];
66 // printf("head=0x%08X\n",newhead);
68 #if 1
69 // head_check:
70 if( (newhead & 0xffe00000) != 0xffe00000 ){
71 mp_msg(MSGT_DEMUXER,MSGL_DBG2,"head_check failed\n");
72 return -1;
74 #endif
76 layer = 4-((newhead>>17)&3);
77 if(layer==4){
78 mp_msg(MSGT_DEMUXER,MSGL_DBG2,"not layer-1/2/3\n");
79 return -1;
82 sampling_frequency = ((newhead>>10)&0x3); // valid: 0..2
83 if(sampling_frequency==3){
84 mp_msg(MSGT_DEMUXER,MSGL_DBG2,"invalid sampling_frequency\n");
85 return -1;
88 if( newhead & ((long)1<<20) ) {
89 // MPEG 1.0 (lsf==0) or MPEG 2.0 (lsf==1)
90 lsf = (newhead & ((long)1<<19)) ? 0x0 : 0x1;
91 sampling_frequency += (lsf*3);
92 } else {
93 // MPEG 2.5
94 lsf = 1;
95 sampling_frequency += 6;
98 // crc = ((newhead>>16)&0x1)^0x1;
99 bitrate_index = ((newhead>>12)&0xf); // valid: 1..14
100 padding = ((newhead>>9)&0x1);
101 // fr->extension = ((newhead>>8)&0x1);
102 // fr->mode = ((newhead>>6)&0x3);
103 // fr->mode_ext = ((newhead>>4)&0x3);
104 // fr->copyright = ((newhead>>3)&0x1);
105 // fr->original = ((newhead>>2)&0x1);
106 // fr->emphasis = newhead & 0x3;
108 stereo = ( (((newhead>>6)&0x3)) == 3) ? 1 : 2;
110 // !checked later through tabsel_123[]!
111 // if(!bitrate_index || bitrate_index==15){
112 // mp_msg(MSGT_DEMUXER,MSGL_DBG2,"Free format not supported.\n");
113 // return -1;
114 // }
116 if(lsf)
117 ssize = (stereo == 1) ? 9 : 17;
118 else
119 ssize = (stereo == 1) ? 17 : 32;
120 if(!((newhead>>16)&0x1)) ssize += 2; // CRC
122 bitrate = tabsel_123[lsf][layer-1][bitrate_index];
123 framesize = bitrate * mult[layer-1];
125 mp_msg(MSGT_DEMUXER,MSGL_DBG2,"FRAMESIZE: %d, layer: %d, bitrate: %d, mult: %d\n",
126 framesize, layer, tabsel_123[lsf][layer-1][bitrate_index], mult[layer-1]);
127 if(!framesize){
128 mp_msg(MSGT_DEMUXER,MSGL_DBG2,"invalid framesize/bitrate_index\n");
129 return -1;
132 divisor = (layer == 3 ? (freqs[sampling_frequency] << lsf) : freqs[sampling_frequency]);
133 framesize /= divisor;
134 if(layer==1)
135 framesize = (framesize+padding)*4;
136 else
137 framesize += padding;
139 // if(framesize<=0 || framesize>MAXFRAMESIZE) return FALSE;
140 if(srate) {
141 *srate = freqs[sampling_frequency];
142 if(spf) {
143 if(layer == 1)
144 *spf = 384;
145 else if(layer == 2)
146 *spf = 1152;
147 else if(*srate < 32000)
148 *spf = 576;
149 else
150 *spf = 1152;
153 if(mpa_layer) *mpa_layer = layer;
154 if(chans) *chans = stereo;
155 if(br) *br = bitrate;
157 return framesize;