Mercurial > mplayer.hg
annotate mp3lib/sr1.c @ 30661:957fe9c46d9c
Remove commented-out cruft line.
author | diego |
---|---|
date | Mon, 22 Feb 2010 14:02:18 +0000 |
parents | fbb18bfa2dfe |
children | 5fdc3c62cf76 |
rev | line source |
---|---|
1 | 1 // #define NEWBUFFERING |
2 //#define DEBUG_RESYNC | |
3 | |
4 /* 1 frame = 4608 byte PCM */ | |
5 | |
6 #define LOCAL static inline | |
7 | |
8 //#undef LOCAL | |
9 //#define LOCAL | |
10 | |
11 #include <stdlib.h> | |
12 #include <stdio.h> | |
13 #include <string.h> | |
14 #include <math.h> | |
15 | |
16 #include "mpg123.h" | |
17 #include "huffman.h" | |
18 #include "mp3.h" | |
21507
fa99b3d31d13
Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
21372
diff
changeset
|
19 #include "mpbswap.h" |
16989 | 20 #include "cpudetect.h" |
21 //#include "liba52/mm_accel.h" | |
22 #include "mp_msg.h" | |
30552
8d2b4cef28d3
Add header file for mplayer_audio_read() instead of forward declaring it.
diego
parents:
30167
diff
changeset
|
23 #include "libmpcodecs/ad_mp3lib.h" |
19431
ac69ba536915
Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.
diego
parents:
19133
diff
changeset
|
24 #include "libvo/fastmemcpy.h" |
4262 | 25 |
28587
1064e9bbaeea
Move libavutil #includes below all others so that they do not override
diego
parents:
28338
diff
changeset
|
26 #include "libavutil/common.h" |
1064e9bbaeea
Move libavutil #includes below all others so that they do not override
diego
parents:
28338
diff
changeset
|
27 #include "libavutil/internal.h" |
1064e9bbaeea
Move libavutil #includes below all others so that they do not override
diego
parents:
28338
diff
changeset
|
28 |
28327
c39a1fd7d45c
Fix compilation after DECLARE_ASM_CONST/DECLARE_ALIGNED moving within FFmpeg.
diego
parents:
28326
diff
changeset
|
29 #undef fprintf |
c39a1fd7d45c
Fix compilation after DECLARE_ASM_CONST/DECLARE_ALIGNED moving within FFmpeg.
diego
parents:
28326
diff
changeset
|
30 #undef printf |
c39a1fd7d45c
Fix compilation after DECLARE_ASM_CONST/DECLARE_ALIGNED moving within FFmpeg.
diego
parents:
28326
diff
changeset
|
31 |
28290 | 32 #if ARCH_X86_64 |
23495 | 33 // 3DNow! and 3DNow!Ext routines don't compile under AMD64 |
28338 | 34 #undef HAVE_AMD3DNOW |
35 #undef HAVE_AMD3DNOWEXT | |
36 #define HAVE_AMD3DNOW 0 | |
37 #define HAVE_AMD3DNOWEXT 0 | |
4262 | 38 #endif |
39 | |
1 | 40 //static FILE* mp3_file=NULL; |
41 | |
42 int MP3_frames=0; | |
43 int MP3_eof=0; | |
44 int MP3_pause=0; | |
45 int MP3_filesize=0; | |
46 int MP3_fpos=0; // current file position | |
47 int MP3_framesize=0; // current framesize | |
48 int MP3_bitrate=0; // current bitrate | |
49 int MP3_samplerate=0; // current samplerate | |
17300 | 50 int MP3_resync=0; |
1 | 51 int MP3_channels=0; |
52 int MP3_bps=2; | |
53 | |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
54 static long outscale = 32768; |
1 | 55 #include "tabinit.c" |
56 | |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
57 #if 1 |
1 | 58 LOCAL int mp3_read(char *buf,int size){ |
59 // int len=fread(buf,1,size,mp3_file); | |
60 int len=mplayer_audio_read(buf,size); | |
61 if(len>0) MP3_fpos+=len; | |
62 // if(len!=size) MP3_eof=1; | |
63 return len; | |
64 } | |
65 #else | |
28051 | 66 int mp3_read(char *buf,int size); |
1 | 67 #endif |
15167
07e7a572bd84
Mark modified imported files as such to comply with (L)GPL ¡ø2a.
diego
parents:
13946
diff
changeset
|
68 /* |
18783 | 69 * Modified for use with MPlayer, for details see the changelog at |
70 * http://svn.mplayerhq.hu/mplayer/trunk/ | |
15167
07e7a572bd84
Mark modified imported files as such to comply with (L)GPL ¡ø2a.
diego
parents:
13946
diff
changeset
|
71 * $Id$ |
07e7a572bd84
Mark modified imported files as such to comply with (L)GPL ¡ø2a.
diego
parents:
13946
diff
changeset
|
72 */ |
07e7a572bd84
Mark modified imported files as such to comply with (L)GPL ¡ø2a.
diego
parents:
13946
diff
changeset
|
73 |
1 | 74 |
75 //void mp3_seek(int pos){ | |
76 // fseek(mp3_file,pos,SEEK_SET); | |
29717
afc8b80eb027
cosmetics: Remove some pointless parentheses from return calls.
diego
parents:
29263
diff
changeset
|
77 // return MP3_fpos = ftell(mp3_file); |
1 | 78 //} |
79 | |
80 /* Frame reader */ | |
81 | |
82 #define MAXFRAMESIZE 1280 | |
83 #define MAXFRAMESIZE2 (512+MAXFRAMESIZE) | |
84 | |
85 static int fsizeold=0,ssize=0; | |
86 static unsigned char bsspace[2][MAXFRAMESIZE2]; /* !!!!! */ | |
87 static unsigned char *bsbufold=bsspace[0]+512; | |
88 static unsigned char *bsbuf=bsspace[1]+512; | |
89 static int bsnum=0; | |
90 | |
91 static int bitindex; | |
92 static unsigned char *wordpointer; | |
93 static int bitsleft; | |
94 | |
12131
d155623271e3
fix symbol clashes when linking with libmp3lame including mp3 decoder, man, mp3lib is so much bloated
alex
parents:
11241
diff
changeset
|
95 static unsigned char *pcm_sample; /* outbuffer address */ |
d155623271e3
fix symbol clashes when linking with libmp3lame including mp3 decoder, man, mp3lib is so much bloated
alex
parents:
11241
diff
changeset
|
96 static int pcm_point = 0; /* outbuffer offset */ |
1 | 97 |
98 static struct frame fr; | |
99 | |
100 static int tabsel_123[2][3][16] = { | |
101 { {0,32,64,96,128,160,192,224,256,288,320,352,384,416,448,}, | |
102 {0,32,48,56, 64, 80, 96,112,128,160,192,224,256,320,384,}, | |
103 {0,32,40,48, 56, 64, 80, 96,112,128,160,192,224,256,320,} }, | |
104 | |
105 { {0,32,48,56,64,80,96,112,128,144,160,176,192,224,256,}, | |
106 {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,}, | |
107 {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,} } | |
108 }; | |
109 | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
110 static int freqs[9] = { 44100, 48000, 32000, 22050, 24000, 16000 , 11025 , 12000 , 8000 }; |
1 | 111 |
112 LOCAL unsigned int getbits(short number_of_bits) | |
113 { | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
114 unsigned rval; |
1 | 115 // if(MP3_frames>=7741) printf("getbits: bits=%d bitsleft=%d wordptr=%x\n",number_of_bits,bitsleft,wordpointer); |
116 if((bitsleft-=number_of_bits)<0) return 0; | |
117 if(!number_of_bits) return 0; | |
118 rval = wordpointer[0]; | |
119 rval <<= 8; | |
120 rval |= wordpointer[1]; | |
121 rval <<= 8; | |
122 rval |= wordpointer[2]; | |
123 rval <<= bitindex; | |
124 rval &= 0xffffff; | |
125 bitindex += number_of_bits; | |
126 rval >>= (24-number_of_bits); | |
127 wordpointer += (bitindex>>3); | |
128 bitindex &= 7; | |
129 return rval; | |
130 } | |
131 | |
132 | |
133 LOCAL unsigned int getbits_fast(short number_of_bits) | |
134 { | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
135 unsigned rval; |
1 | 136 // if(MP3_frames>=7741) printf("getbits_fast: bits=%d bitsleft=%d wordptr=%x\n",number_of_bits,bitsleft,wordpointer); |
137 if((bitsleft-=number_of_bits)<0) return 0; | |
138 if(!number_of_bits) return 0; | |
28290 | 139 #if ARCH_X86 |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
140 rval = bswap_16(*((uint16_t *)wordpointer)); |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
141 #else |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
142 /* |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
143 * we may not be able to address unaligned 16-bit data on non-x86 cpus. |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
144 * Fall back to some portable code. |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
145 */ |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
146 rval = wordpointer[0] << 8 | wordpointer[1]; |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
147 #endif |
1 | 148 rval <<= bitindex; |
149 rval &= 0xffff; | |
150 bitindex += number_of_bits; | |
151 rval >>= (16-number_of_bits); | |
152 wordpointer += (bitindex>>3); | |
153 bitindex &= 7; | |
154 return rval; | |
155 } | |
156 | |
157 LOCAL unsigned int get1bit(void) | |
158 { | |
159 unsigned char rval; | |
160 // if(MP3_frames>=7741) printf("get1bit: bitsleft=%d wordptr=%x\n",bitsleft,wordpointer); | |
161 if((--bitsleft)<0) return 0; | |
162 rval = *wordpointer << bitindex; | |
163 bitindex++; | |
164 wordpointer += (bitindex>>3); | |
165 bitindex &= 7; | |
29719 | 166 return (rval >> 7) & 1; |
1 | 167 } |
168 | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
169 LOCAL void set_pointer(int backstep) |
1 | 170 { |
171 // if(backstep!=512 && backstep>fsizeold) | |
172 // printf("\rWarning! backstep (%d>%d) \n",backstep,fsizeold); | |
173 wordpointer = bsbuf + ssize - backstep; | |
23457
a124f3abc1ec
Replace implicit use of fast_memcpy via macro by explicit use to allow
reimar
parents:
23442
diff
changeset
|
174 if (backstep) fast_memcpy(wordpointer,bsbufold+fsizeold-backstep,backstep); |
1 | 175 bitindex = 0; |
176 bitsleft+=8*backstep; | |
177 // printf("Backstep %d (bitsleft=%d)\n",backstep,bitsleft); | |
178 } | |
179 | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
180 LOCAL int stream_head_read(unsigned char *hbuf,uint32_t *newhead){ |
1 | 181 if(mp3_read(hbuf,4) != 4) return FALSE; |
28290 | 182 #if ARCH_X86 |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
183 *newhead = bswap_32(*((uint32_t*)hbuf)); |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
184 #else |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
185 /* |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
186 * we may not be able to address unaligned 32-bit data on non-x86 cpus. |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
187 * Fall back to some portable code. |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
188 */ |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28587
diff
changeset
|
189 *newhead = |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
190 hbuf[0] << 24 | |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
191 hbuf[1] << 16 | |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
192 hbuf[2] << 8 | |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
193 hbuf[3]; |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
194 #endif |
1040 | 195 return TRUE; |
1 | 196 } |
197 | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
198 LOCAL int stream_head_shift(unsigned char *hbuf,uint32_t *head){ |
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
199 *((uint32_t*)hbuf) >>= 8; |
1 | 200 if(mp3_read(hbuf+3,1) != 1) return 0; |
201 *head <<= 8; | |
202 *head |= hbuf[3]; | |
203 return 1; | |
204 } | |
205 | |
206 /* | |
207 * decode a header and write the information | |
208 * into the frame structure | |
209 */ | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
210 LOCAL int decode_header(struct frame *fr,uint32_t newhead){ |
1 | 211 |
212 // head_check: | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28587
diff
changeset
|
213 if( (newhead & 0xffe00000) != 0xffe00000 || |
1045 | 214 (newhead & 0x0000fc00) == 0x0000fc00) return FALSE; |
1 | 215 |
216 fr->lay = 4-((newhead>>17)&3); | |
217 // if(fr->lay!=3) return FALSE; | |
218 | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
219 if( newhead & (1<<20) ) { |
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
220 fr->lsf = (newhead & (1<<19)) ? 0x0 : 0x1; |
1 | 221 fr->mpeg25 = 0; |
222 } else { | |
223 fr->lsf = 1; | |
224 fr->mpeg25 = 1; | |
225 } | |
226 | |
227 if(fr->mpeg25) | |
228 fr->sampling_frequency = 6 + ((newhead>>10)&0x3); | |
229 else | |
230 fr->sampling_frequency = ((newhead>>10)&0x3) + (fr->lsf*3); | |
231 | |
1166
95f6f14176c6
fr->sampling_frequency limitation (thanx to pl <p_l@tfz.net>)
arpi_esp
parents:
1045
diff
changeset
|
232 if(fr->sampling_frequency>8) return FALSE; // valid: 0..8 |
95f6f14176c6
fr->sampling_frequency limitation (thanx to pl <p_l@tfz.net>)
arpi_esp
parents:
1045
diff
changeset
|
233 |
1 | 234 fr->error_protection = ((newhead>>16)&0x1)^0x1; |
235 fr->bitrate_index = ((newhead>>12)&0xf); | |
236 fr->padding = ((newhead>>9)&0x1); | |
237 fr->extension = ((newhead>>8)&0x1); | |
238 fr->mode = ((newhead>>6)&0x3); | |
239 fr->mode_ext = ((newhead>>4)&0x3); | |
240 fr->copyright = ((newhead>>3)&0x1); | |
241 fr->original = ((newhead>>2)&0x1); | |
242 fr->emphasis = newhead & 0x3; | |
243 | |
244 MP3_channels = fr->stereo = (fr->mode == MPG_MD_MONO) ? 1 : 2; | |
245 | |
246 if(!fr->bitrate_index){ | |
247 // fprintf(stderr,"Free format not supported.\n"); | |
248 return FALSE; | |
249 } | |
250 | |
251 switch(fr->lay){ | |
252 case 2: | |
253 MP3_bitrate=tabsel_123[fr->lsf][1][fr->bitrate_index]; | |
254 MP3_samplerate=freqs[fr->sampling_frequency]; | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
255 fr->framesize = MP3_bitrate * 144000; |
1 | 256 fr->framesize /= MP3_samplerate; |
257 MP3_framesize=fr->framesize; | |
258 fr->framesize += fr->padding - 4; | |
259 break; | |
260 case 3: | |
261 if(fr->lsf) | |
262 ssize = (fr->stereo == 1) ? 9 : 17; | |
263 else | |
264 ssize = (fr->stereo == 1) ? 17 : 32; | |
265 if(fr->error_protection) ssize += 2; | |
266 | |
267 MP3_bitrate=tabsel_123[fr->lsf][2][fr->bitrate_index]; | |
268 MP3_samplerate=freqs[fr->sampling_frequency]; | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
269 fr->framesize = MP3_bitrate * 144000; |
1 | 270 fr->framesize /= MP3_samplerate<<(fr->lsf); |
271 MP3_framesize=fr->framesize; | |
272 fr->framesize += fr->padding - 4; | |
273 break; | |
7520 | 274 case 1: |
275 // fr->jsbound = (fr->mode == MPG_MD_JOINT_STEREO) ? (fr->mode_ext<<2)+4 : 32; | |
276 MP3_bitrate=tabsel_123[fr->lsf][0][fr->bitrate_index]; | |
277 MP3_samplerate=freqs[fr->sampling_frequency]; | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
278 fr->framesize = MP3_bitrate * 12000; |
7520 | 279 fr->framesize /= MP3_samplerate; |
10468 | 280 MP3_framesize = ((fr->framesize+fr->padding)<<2); |
281 fr->framesize = MP3_framesize-4; | |
10552 | 282 // printf("framesize=%d\n",fr->framesize); |
7520 | 283 break; |
1 | 284 default: |
7520 | 285 MP3_framesize=fr->framesize=0; |
1 | 286 // fprintf(stderr,"Sorry, unsupported layer type.\n"); |
287 return 0; | |
288 } | |
289 if(fr->framesize<=0 || fr->framesize>MAXFRAMESIZE) return FALSE; | |
290 | |
291 return 1; | |
292 } | |
293 | |
294 | |
295 LOCAL int stream_read_frame_body(int size){ | |
296 | |
297 /* flip/init buffer for Layer 3 */ | |
298 bsbufold = bsbuf; | |
299 bsbuf = bsspace[bsnum]+512; | |
300 bsnum = (bsnum + 1) & 1; | |
301 | |
302 if( mp3_read(bsbuf,size) != size) return 0; // broken frame | |
303 | |
304 bitindex = 0; | |
305 wordpointer = (unsigned char *) bsbuf; | |
306 bitsleft=8*size; | |
307 | |
308 return 1; | |
309 } | |
310 | |
311 | |
312 /***************************************************************** | |
313 * read next frame return number of frames read. | |
314 */ | |
315 LOCAL int read_frame(struct frame *fr){ | |
23434
d986b47f1451
Use int and uint32_t instead of long and unsigned long, when appropriate.
zuxy
parents:
23365
diff
changeset
|
316 uint32_t newhead; |
22140
0cd17afe1d4b
Make sure buffer is aligned so no unaligned access happens.
reimar
parents:
21507
diff
changeset
|
317 union { |
0cd17afe1d4b
Make sure buffer is aligned so no unaligned access happens.
reimar
parents:
21507
diff
changeset
|
318 unsigned char buf[8]; |
0cd17afe1d4b
Make sure buffer is aligned so no unaligned access happens.
reimar
parents:
21507
diff
changeset
|
319 unsigned long dummy; // for alignment |
0cd17afe1d4b
Make sure buffer is aligned so no unaligned access happens.
reimar
parents:
21507
diff
changeset
|
320 } hbuf; |
1 | 321 int skipped,resyncpos; |
322 int frames=0; | |
323 | |
324 resync: | |
325 skipped=MP3_fpos; | |
326 resyncpos=MP3_fpos; | |
327 | |
328 set_pointer(512); | |
329 fsizeold=fr->framesize; /* for Layer3 */ | |
22140
0cd17afe1d4b
Make sure buffer is aligned so no unaligned access happens.
reimar
parents:
21507
diff
changeset
|
330 if(!stream_head_read(hbuf.buf,&newhead)) return 0; |
1 | 331 if(!decode_header(fr,newhead)){ |
332 // invalid header! try to resync stream! | |
333 #ifdef DEBUG_RESYNC | |
334 printf("ReSync: searching for a valid header... (pos=%X)\n",MP3_fpos); | |
335 #endif | |
336 retry1: | |
337 while(!decode_header(fr,newhead)){ | |
22140
0cd17afe1d4b
Make sure buffer is aligned so no unaligned access happens.
reimar
parents:
21507
diff
changeset
|
338 if(!stream_head_shift(hbuf.buf,&newhead)) return 0; |
1 | 339 } |
340 resyncpos=MP3_fpos-4; | |
341 // found valid header | |
342 #ifdef DEBUG_RESYNC | |
343 printf("ReSync: found valid hdr at %X fsize=%ld ",resyncpos,fr->framesize); | |
344 #endif | |
345 if(!stream_read_frame_body(fr->framesize)) return 0; // read body | |
346 set_pointer(512); | |
347 fsizeold=fr->framesize; /* for Layer3 */ | |
22140
0cd17afe1d4b
Make sure buffer is aligned so no unaligned access happens.
reimar
parents:
21507
diff
changeset
|
348 if(!stream_head_read(hbuf.buf,&newhead)) return 0; |
1 | 349 if(!decode_header(fr,newhead)){ |
350 // invalid hdr! go back... | |
351 #ifdef DEBUG_RESYNC | |
352 printf("INVALID\n"); | |
353 #endif | |
354 // mp3_seek(resyncpos+1); | |
22140
0cd17afe1d4b
Make sure buffer is aligned so no unaligned access happens.
reimar
parents:
21507
diff
changeset
|
355 if(!stream_head_read(hbuf.buf,&newhead)) return 0; |
1 | 356 goto retry1; |
357 } | |
358 #ifdef DEBUG_RESYNC | |
359 printf("OK!\n"); | |
360 ++frames; | |
361 #endif | |
362 } | |
363 | |
364 skipped=resyncpos-skipped; | |
365 // if(skipped && !MP3_resync) printf("\r%d bad bytes skipped (resync at 0x%X) \n",skipped,resyncpos); | |
366 | |
367 // printf("%8X [%08X] %d %d (%d)%s%s\n",MP3_fpos-4,newhead,fr->framesize,fr->mode,fr->mode_ext,fr->error_protection?" CRC":"",fr->padding?" PAD":""); | |
368 | |
369 /* read main data into memory */ | |
370 if(!stream_read_frame_body(fr->framesize)){ | |
371 printf("\nBroken frame at 0x%X \n",resyncpos); | |
372 return 0; | |
373 } | |
374 ++frames; | |
375 | |
376 if(MP3_resync){ | |
377 MP3_resync=0; | |
378 if(frames==1) goto resync; | |
379 } | |
380 | |
381 return frames; | |
382 } | |
383 | |
12131
d155623271e3
fix symbol clashes when linking with libmp3lame including mp3 decoder, man, mp3lib is so much bloated
alex
parents:
11241
diff
changeset
|
384 static int _has_mmx = 0; // used by layer2.c, layer3.c to pre-scale coeffs |
4262 | 385 |
1 | 386 /******************************************************************************/ |
387 /* PUBLIC FUNCTIONS */ | |
388 /******************************************************************************/ | |
389 | |
25349
b257a1967539
cosmetics: Move public function declarations together.
diego
parents:
25348
diff
changeset
|
390 #include "layer2.c" |
b257a1967539
cosmetics: Move public function declarations together.
diego
parents:
25348
diff
changeset
|
391 #include "layer3.c" |
b257a1967539
cosmetics: Move public function declarations together.
diego
parents:
25348
diff
changeset
|
392 #include "layer1.c" |
b257a1967539
cosmetics: Move public function declarations together.
diego
parents:
25348
diff
changeset
|
393 |
16989 | 394 #include "cpudetect.h" |
3088
73c2e9304d08
changed to use cpudetect.c (to use change te #if 1 -> #if 0 :)
alex
parents:
1393
diff
changeset
|
395 |
1 | 396 // Init decoder tables. Call first, once! |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
25848
diff
changeset
|
397 #ifdef CONFIG_FAKE_MONO |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
398 void MP3_Init(int fakemono){ |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
399 #else |
28095
7448d949d6b4
Add missing 'void' to parameterless function declaration.
diego
parents:
28051
diff
changeset
|
400 void MP3_Init(void){ |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
401 #endif |
8545 | 402 |
403 //gCpuCaps.hasMMX=gCpuCaps.hasMMX2=gCpuCaps.hasSSE=0; // for testing! | |
404 | |
405 _has_mmx = 0; | |
406 dct36_func = dct36; | |
407 | |
408 make_decode_tables(outscale); | |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
409 |
28290 | 410 #if HAVE_MMX |
8545 | 411 if (gCpuCaps.hasMMX) |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
412 { |
4262 | 413 _has_mmx = 1; |
8545 | 414 synth_func = synth_1to1_MMX; |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
415 } |
19133 | 416 #endif |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
417 |
28338 | 418 #if HAVE_AMD3DNOWEXT |
8545 | 419 if (gCpuCaps.has3DNowExt) |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
420 { |
4262 | 421 dct36_func=dct36_3dnowex; |
19500
2c458473fc5d
always use 3dnowext version of dct64 when supported by the CPU (K6-3+ and up).
gpoirier
parents:
19431
diff
changeset
|
422 dct64_MMX_func= dct64_MMX_3dnowex; |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5888
diff
changeset
|
423 mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using 3DNow!Ex optimized decore!\n"); |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
424 } |
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
425 else |
19133 | 426 #endif |
28338 | 427 #if HAVE_AMD3DNOW |
8545 | 428 if (gCpuCaps.has3DNow) |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
429 { |
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
430 dct36_func = dct36_3dnow; |
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
431 dct64_MMX_func = dct64_MMX_3dnow; |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5888
diff
changeset
|
432 mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using 3DNow! optimized decore!\n"); |
4262 | 433 } |
434 else | |
19133 | 435 #endif |
28290 | 436 #if HAVE_SSE |
18932
69c665e91946
Add dct64_sse, a replacement for dct64_MMX. About 60% faster on its author's Pentium III
gpoirier
parents:
18783
diff
changeset
|
437 if (gCpuCaps.hasSSE) |
69c665e91946
Add dct64_sse, a replacement for dct64_MMX. About 60% faster on its author's Pentium III
gpoirier
parents:
18783
diff
changeset
|
438 { |
69c665e91946
Add dct64_sse, a replacement for dct64_MMX. About 60% faster on its author's Pentium III
gpoirier
parents:
18783
diff
changeset
|
439 dct64_MMX_func = dct64_sse; |
69c665e91946
Add dct64_sse, a replacement for dct64_MMX. About 60% faster on its author's Pentium III
gpoirier
parents:
18783
diff
changeset
|
440 mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using SSE optimized decore!\n"); |
69c665e91946
Add dct64_sse, a replacement for dct64_MMX. About 60% faster on its author's Pentium III
gpoirier
parents:
18783
diff
changeset
|
441 } |
69c665e91946
Add dct64_sse, a replacement for dct64_MMX. About 60% faster on its author's Pentium III
gpoirier
parents:
18783
diff
changeset
|
442 else |
19133 | 443 #endif |
28290 | 444 #if ARCH_X86_32 |
445 #if HAVE_MMX | |
8545 | 446 if (gCpuCaps.hasMMX) |
4262 | 447 { |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
448 dct64_MMX_func = dct64_MMX; |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5888
diff
changeset
|
449 mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using MMX optimized decore!\n"); |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
450 } |
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
451 else |
19133 | 452 #endif |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
453 if (gCpuCaps.cpuType >= CPUTYPE_I586) |
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
454 { |
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
455 synth_func = synth_1to1_pent; |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5888
diff
changeset
|
456 mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using Pentium optimized decore!\n"); |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
457 } |
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
458 else |
23495 | 459 #endif /* ARCH_X86_32 */ |
28290 | 460 #if HAVE_ALTIVEC |
18101
a3d76e5ea6c2
Make mp3lib say that it's using Altivec to decode instead of generic C
diego
parents:
17566
diff
changeset
|
461 if (gCpuCaps.hasAltiVec) |
a3d76e5ea6c2
Make mp3lib say that it's using Altivec to decode instead of generic C
diego
parents:
17566
diff
changeset
|
462 { |
a3d76e5ea6c2
Make mp3lib say that it's using Altivec to decode instead of generic C
diego
parents:
17566
diff
changeset
|
463 mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using AltiVec optimized decore!\n"); |
a3d76e5ea6c2
Make mp3lib say that it's using Altivec to decode instead of generic C
diego
parents:
17566
diff
changeset
|
464 } |
a3d76e5ea6c2
Make mp3lib say that it's using Altivec to decode instead of generic C
diego
parents:
17566
diff
changeset
|
465 else |
a3d76e5ea6c2
Make mp3lib say that it's using Altivec to decode instead of generic C
diego
parents:
17566
diff
changeset
|
466 #endif |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
467 { |
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
468 synth_func = NULL; /* use default c version */ |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5888
diff
changeset
|
469 mp_msg(MSGT_DECAUDIO,MSGL_V,"mp3lib: using generic C decore!\n"); |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
470 } |
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
471 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
25848
diff
changeset
|
472 #ifdef CONFIG_FAKE_MONO |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
473 if (fakemono == 1) |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
474 fr.synth=synth_1to1_l; |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
475 else if (fakemono == 2) |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
476 fr.synth=synth_1to1_r; |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
477 else |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
478 fr.synth=synth_1to1; |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
479 #else |
1 | 480 fr.synth=synth_1to1; |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
481 #endif |
1 | 482 fr.synth_mono=synth_1to1_mono2stereo; |
483 fr.down_sample=0; | |
484 fr.down_sample_sblimit = SBLIMIT>>(fr.down_sample); | |
8545 | 485 |
1 | 486 init_layer2(); |
487 init_layer3(fr.down_sample_sblimit); | |
13946 | 488 mp_msg(MSGT_DECAUDIO,MSGL_V,"MP3lib: init layer2&3 finished, tables done\n"); |
1 | 489 } |
490 | |
491 #if 0 | |
492 | |
28232
8df85ad26746
Add missing 'void' keyword to parameterless function declarations.
diego
parents:
28095
diff
changeset
|
493 void MP3_Close(void){ |
1 | 494 MP3_eof=1; |
495 if(mp3_file) fclose(mp3_file); | |
496 mp3_file=NULL; | |
497 } | |
498 | |
499 // Open a file, init buffers. Call once per file! | |
500 int MP3_Open(char *filename,int buffsize){ | |
501 MP3_eof=1; // lock decoding | |
502 MP3_pause=1; // lock playing | |
503 if(mp3_file) MP3_Close(); // close prev. file | |
504 MP3_frames=0; | |
505 | |
506 mp3_file=fopen(filename,"rb"); | |
507 // printf("MP3_Open: file='%s'",filename); | |
508 // if(!mp3_file){ printf(" not found!\n"); return 0;} else printf("Ok!\n"); | |
509 if(!mp3_file) return 0; | |
510 | |
511 MP3_filesize=MP3_PrintTAG(); | |
512 fseek(mp3_file,0,SEEK_SET); | |
513 | |
514 MP3_InitBuffers(buffsize); | |
515 if(!tables_done_flag) MP3_Init(); | |
516 MP3_eof=0; // allow decoding | |
517 MP3_pause=0; // allow playing | |
518 return MP3_filesize; | |
519 } | |
520 | |
521 #endif | |
522 | |
523 // Read & decode a single frame. Called by sound driver. | |
524 int MP3_DecodeFrame(unsigned char *hova,short single){ | |
525 pcm_sample = hova; | |
526 pcm_point = 0; | |
29717
afc8b80eb027
cosmetics: Remove some pointless parentheses from return calls.
diego
parents:
29263
diff
changeset
|
527 if(!read_frame(&fr)) return 0; |
afc8b80eb027
cosmetics: Remove some pointless parentheses from return calls.
diego
parents:
29263
diff
changeset
|
528 if(single==-2){ set_pointer(512); return 1; } |
1 | 529 if(fr.error_protection) getbits(16); /* skip crc */ |
530 fr.single=single; | |
531 switch(fr.lay){ | |
532 case 2: do_layer2(&fr,single);break; | |
533 case 3: do_layer3(&fr,single);break; | |
10468 | 534 case 1: do_layer1(&fr,single);break; |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5888
diff
changeset
|
535 default: |
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5888
diff
changeset
|
536 return 0; // unsupported |
1 | 537 } |
538 // ++MP3_frames; | |
29717
afc8b80eb027
cosmetics: Remove some pointless parentheses from return calls.
diego
parents:
29263
diff
changeset
|
539 return pcm_point ? pcm_point : 2; |
1 | 540 } |
541 | |
542 // Prints last frame header in ascii. | |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
17300
diff
changeset
|
543 void MP3_PrintHeader(void){ |
1 | 544 static char *modes[4] = { "Stereo", "Joint-Stereo", "Dual-Channel", "Single-Channel" }; |
545 static char *layers[4] = { "???" , "I", "II", "III" }; | |
546 | |
23442
b4cd44be30d4
Change '%ld' to '%d' to remove warnings introduced by r23452
zuxy
parents:
23441
diff
changeset
|
547 mp_msg(MSGT_DECAUDIO,MSGL_V,"\rMPEG %s, Layer %s, %d Hz %d kbit %s, BPF: %d\n", |
1 | 548 fr.mpeg25 ? "2.5" : (fr.lsf ? "2.0" : "1.0"), |
549 layers[fr.lay],freqs[fr.sampling_frequency], | |
550 tabsel_123[fr.lsf][fr.lay-1][fr.bitrate_index], | |
551 modes[fr.mode],fr.framesize+4); | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5888
diff
changeset
|
552 mp_msg(MSGT_DECAUDIO,MSGL_V,"Channels: %d, copyright: %s, original: %s, CRC: %s, emphasis: %d\n", |
1 | 553 fr.stereo,fr.copyright?"Yes":"No", |
554 fr.original?"Yes":"No",fr.error_protection?"Yes":"No", | |
555 fr.emphasis); | |
556 } | |
557 | |
4150
01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
alex
parents:
3219
diff
changeset
|
558 #if 0 |
1 | 559 #include "genre.h" |
560 | |
561 // Read & print ID3 TAG. Do not call when playing!!! returns filesize. | |
28232
8df85ad26746
Add missing 'void' keyword to parameterless function declarations.
diego
parents:
28095
diff
changeset
|
562 int MP3_PrintTAG(void){ |
1 | 563 struct id3tag { |
564 char tag[3]; | |
565 char title[30]; | |
566 char artist[30]; | |
567 char album[30]; | |
568 char year[4]; | |
569 char comment[30]; | |
570 unsigned char genre; | |
571 }; | |
572 struct id3tag tag; | |
573 char title[31]={0,}; | |
574 char artist[31]={0,}; | |
575 char album[31]={0,}; | |
576 char year[5]={0,}; | |
577 char comment[31]={0,}; | |
578 char genre[31]={0,}; | |
579 int fsize; | |
580 int ret; | |
581 | |
582 fseek(mp3_file,0,SEEK_END); | |
583 fsize=ftell(mp3_file); | |
584 if(fseek(mp3_file,-128,SEEK_END)) return fsize; | |
585 ret=fread(&tag,128,1,mp3_file); | |
586 if(ret!=1 || tag.tag[0]!='T' || tag.tag[1]!='A' || tag.tag[2]!='G') return fsize; | |
587 | |
588 strncpy(title,tag.title,30); | |
589 strncpy(artist,tag.artist,30); | |
590 strncpy(album,tag.album,30); | |
591 strncpy(year,tag.year,4); | |
592 strncpy(comment,tag.comment,30); | |
593 | |
594 if ( tag.genre <= sizeof(genre_table)/sizeof(*genre_table) ) { | |
595 strncpy(genre, genre_table[tag.genre], 30); | |
596 } else { | |
597 strncpy(genre,"Unknown",30); | |
598 } | |
599 | |
600 // printf("\n"); | |
601 printf("Title : %30s Artist: %s\n",title,artist); | |
602 printf("Album : %30s Year : %4s\n",album,year); | |
603 printf("Comment: %30s Genre : %s\n",comment,genre); | |
604 printf("\n"); | |
605 return fsize-128; | |
606 } | |
607 | |
608 #endif |