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