1 // #define NEWBUFFERING
4 /* 1 frame = 4608 byte PCM */
6 #define LOCAL static inline
20 #include "cpudetect.h"
22 #include "libmpcodecs/ad_mp3lib.h"
23 #include "libvo/fastmemcpy.h"
25 #include "libavutil/common.h"
28 // 3DNow! and 3DNow!Ext routines don't compile under AMD64
30 #undef HAVE_AMD3DNOWEXT
31 #define HAVE_AMD3DNOW 0
32 #define HAVE_AMD3DNOWEXT 0
35 //static FILE* mp3_file=NULL;
41 int MP3_fpos
=0; // current file position
42 int MP3_framesize
=0; // current framesize
43 int MP3_bitrate
=0; // current bitrate
44 int MP3_samplerate
=0; // current samplerate
49 static long outscale
= 32768;
53 LOCAL
int mp3_read(char *buf
,int size
){
54 // int len=fread(buf,1,size,mp3_file);
55 int len
=mplayer_audio_read(buf
,size
);
56 if(len
>0) MP3_fpos
+=len
;
57 // if(len!=size) MP3_eof=1;
61 int mp3_read(char *buf
,int size
);
64 * Modified for use with MPlayer, for details see the changelog at
65 * http://svn.mplayerhq.hu/mplayer/trunk/
70 //void mp3_seek(int pos){
71 // fseek(mp3_file,pos,SEEK_SET);
72 // return MP3_fpos = ftell(mp3_file);
77 #define MAXFRAMESIZE 1280
78 #define MAXFRAMESIZE2 (512+MAXFRAMESIZE)
80 static int fsizeold
=0,ssize
=0;
81 static unsigned char bsspace
[2][MAXFRAMESIZE2
]; /* !!!!! */
82 static unsigned char *bsbufold
=bsspace
[0]+512;
83 static unsigned char *bsbuf
=bsspace
[1]+512;
87 static unsigned char *wordpointer
;
90 static unsigned char *pcm_sample
; /* outbuffer address */
91 static int pcm_point
= 0; /* outbuffer offset */
93 static struct frame fr
;
95 static int tabsel_123
[2][3][16] = {
96 { {0,32,64,96,128,160,192,224,256,288,320,352,384,416,448,},
97 {0,32,48,56, 64, 80, 96,112,128,160,192,224,256,320,384,},
98 {0,32,40,48, 56, 64, 80, 96,112,128,160,192,224,256,320,} },
100 { {0,32,48,56,64,80,96,112,128,144,160,176,192,224,256,},
101 {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,},
102 {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,} }
105 static int freqs
[9] = { 44100, 48000, 32000, 22050, 24000, 16000 , 11025 , 12000 , 8000 };
107 LOCAL
unsigned int getbits(short number_of_bits
)
110 // if(MP3_frames>=7741) printf("getbits: bits=%d bitsleft=%d wordptr=%x\n",number_of_bits,bitsleft,wordpointer);
111 if((bitsleft
-=number_of_bits
)<0) return 0;
112 if(!number_of_bits
) return 0;
113 rval
= wordpointer
[0];
115 rval
|= wordpointer
[1];
117 rval
|= wordpointer
[2];
120 bitindex
+= number_of_bits
;
121 rval
>>= (24-number_of_bits
);
122 wordpointer
+= (bitindex
>>3);
128 LOCAL
unsigned int getbits_fast(short number_of_bits
)
131 // if(MP3_frames>=7741) printf("getbits_fast: bits=%d bitsleft=%d wordptr=%x\n",number_of_bits,bitsleft,wordpointer);
132 if((bitsleft
-=number_of_bits
)<0) return 0;
133 if(!number_of_bits
) return 0;
135 rval
= bswap_16(*((uint16_t *)wordpointer
));
138 * we may not be able to address unaligned 16-bit data on non-x86 cpus.
139 * Fall back to some portable code.
141 rval
= wordpointer
[0] << 8 | wordpointer
[1];
145 bitindex
+= number_of_bits
;
146 rval
>>= (16-number_of_bits
);
147 wordpointer
+= (bitindex
>>3);
152 LOCAL
unsigned int get1bit(void)
155 // if(MP3_frames>=7741) printf("get1bit: bitsleft=%d wordptr=%x\n",bitsleft,wordpointer);
156 if((--bitsleft
)<0) return 0;
157 rval
= *wordpointer
<< bitindex
;
159 wordpointer
+= (bitindex
>>3);
161 return (rval
>> 7) & 1;
164 LOCAL
void set_pointer(int backstep
)
166 // if(backstep!=512 && backstep>fsizeold)
167 // printf("\rWarning! backstep (%d>%d) \n",backstep,fsizeold);
168 wordpointer
= bsbuf
+ ssize
- backstep
;
169 if (backstep
) fast_memcpy(wordpointer
,bsbufold
+fsizeold
-backstep
,backstep
);
171 bitsleft
+=8*backstep
;
172 // printf("Backstep %d (bitsleft=%d)\n",backstep,bitsleft);
175 LOCAL
int stream_head_read(unsigned char *hbuf
,uint32_t *newhead
){
176 if(mp3_read(hbuf
,4) != 4) return FALSE
;
178 *newhead
= bswap_32(*((uint32_t*)hbuf
));
181 * we may not be able to address unaligned 32-bit data on non-x86 cpus.
182 * Fall back to some portable code.
193 LOCAL
int stream_head_shift(unsigned char *hbuf
,uint32_t *head
){
194 *((uint32_t*)hbuf
) >>= 8;
195 if(mp3_read(hbuf
+3,1) != 1) return 0;
202 * decode a header and write the information
203 * into the frame structure
205 LOCAL
int decode_header(struct frame
*fr
,uint32_t newhead
){
208 if( (newhead
& 0xffe00000) != 0xffe00000 ||
209 (newhead
& 0x0000fc00) == 0x0000fc00) return FALSE
;
211 fr
->lay
= 4-((newhead
>>17)&3);
212 // if(fr->lay!=3) return FALSE;
214 if( newhead
& (1<<20) ) {
215 fr
->lsf
= (newhead
& (1<<19)) ? 0x0 : 0x1;
223 fr
->sampling_frequency
= 6 + ((newhead
>>10)&0x3);
225 fr
->sampling_frequency
= ((newhead
>>10)&0x3) + (fr
->lsf
*3);
227 if(fr
->sampling_frequency
>8) return FALSE
; // valid: 0..8
229 fr
->error_protection
= ((newhead
>>16)&0x1)^0x1;
230 fr
->bitrate_index
= ((newhead
>>12)&0xf);
231 fr
->padding
= ((newhead
>>9)&0x1);
232 fr
->extension
= ((newhead
>>8)&0x1);
233 fr
->mode
= ((newhead
>>6)&0x3);
234 fr
->mode_ext
= ((newhead
>>4)&0x3);
235 fr
->copyright
= ((newhead
>>3)&0x1);
236 fr
->original
= ((newhead
>>2)&0x1);
237 fr
->emphasis
= newhead
& 0x3;
239 MP3_channels
= fr
->stereo
= (fr
->mode
== MPG_MD_MONO
) ? 1 : 2;
241 if(!fr
->bitrate_index
){
242 // fprintf(stderr,"Free format not supported.\n");
248 MP3_bitrate
=tabsel_123
[fr
->lsf
][1][fr
->bitrate_index
];
249 MP3_samplerate
=freqs
[fr
->sampling_frequency
];
250 fr
->framesize
= MP3_bitrate
* 144000;
251 fr
->framesize
/= MP3_samplerate
;
252 MP3_framesize
=fr
->framesize
;
253 fr
->framesize
+= fr
->padding
- 4;
257 ssize
= (fr
->stereo
== 1) ? 9 : 17;
259 ssize
= (fr
->stereo
== 1) ? 17 : 32;
260 if(fr
->error_protection
) ssize
+= 2;
262 MP3_bitrate
=tabsel_123
[fr
->lsf
][2][fr
->bitrate_index
];
263 MP3_samplerate
=freqs
[fr
->sampling_frequency
];
264 fr
->framesize
= MP3_bitrate
* 144000;
265 fr
->framesize
/= MP3_samplerate
<<(fr
->lsf
);
266 MP3_framesize
=fr
->framesize
;
267 fr
->framesize
+= fr
->padding
- 4;
270 // fr->jsbound = (fr->mode == MPG_MD_JOINT_STEREO) ? (fr->mode_ext<<2)+4 : 32;
271 MP3_bitrate
=tabsel_123
[fr
->lsf
][0][fr
->bitrate_index
];
272 MP3_samplerate
=freqs
[fr
->sampling_frequency
];
273 fr
->framesize
= MP3_bitrate
* 12000;
274 fr
->framesize
/= MP3_samplerate
;
275 MP3_framesize
= ((fr
->framesize
+fr
->padding
)<<2);
276 fr
->framesize
= MP3_framesize
-4;
277 // printf("framesize=%d\n",fr->framesize);
280 MP3_framesize
=fr
->framesize
=0;
281 // fprintf(stderr,"Sorry, unsupported layer type.\n");
284 if(fr
->framesize
<=0 || fr
->framesize
>MAXFRAMESIZE
) return FALSE
;
290 LOCAL
int stream_read_frame_body(int size
){
292 /* flip/init buffer for Layer 3 */
294 bsbuf
= bsspace
[bsnum
]+512;
295 bsnum
= (bsnum
+ 1) & 1;
297 if( mp3_read(bsbuf
,size
) != size
) return 0; // broken frame
300 wordpointer
= (unsigned char *) bsbuf
;
307 /*****************************************************************
308 * read next frame return number of frames read.
310 LOCAL
int read_frame(struct frame
*fr
){
313 unsigned char buf
[8];
314 unsigned long dummy
; // for alignment
316 int skipped
,resyncpos
;
324 fsizeold
=fr
->framesize
; /* for Layer3 */
325 if(!stream_head_read(hbuf
.buf
,&newhead
)) return 0;
326 if(!decode_header(fr
,newhead
)){
327 // invalid header! try to resync stream!
329 printf("ReSync: searching for a valid header... (pos=%X)\n",MP3_fpos
);
332 while(!decode_header(fr
,newhead
)){
333 if(!stream_head_shift(hbuf
.buf
,&newhead
)) return 0;
335 resyncpos
=MP3_fpos
-4;
336 // found valid header
338 printf("ReSync: found valid hdr at %X fsize=%ld ",resyncpos
,fr
->framesize
);
340 if(!stream_read_frame_body(fr
->framesize
)) return 0; // read body
342 fsizeold
=fr
->framesize
; /* for Layer3 */
343 if(!stream_head_read(hbuf
.buf
,&newhead
)) return 0;
344 if(!decode_header(fr
,newhead
)){
345 // invalid hdr! go back...
349 // mp3_seek(resyncpos+1);
350 if(!stream_head_read(hbuf
.buf
,&newhead
)) return 0;
359 skipped
=resyncpos
-skipped
;
360 // if(skipped && !MP3_resync) printf("\r%d bad bytes skipped (resync at 0x%X) \n",skipped,resyncpos);
362 // 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":"");
364 /* read main data into memory */
365 if(!stream_read_frame_body(fr
->framesize
)){
366 printf("\nBroken frame at 0x%X \n",resyncpos
);
373 if(frames
==1) goto resync
;
379 static int _has_mmx
= 0; // used by layer2.c, layer3.c to pre-scale coeffs
381 /******************************************************************************/
382 /* PUBLIC FUNCTIONS */
383 /******************************************************************************/
385 void (*dct64_MMX_func
)(short *, short *, real
*);
391 #include "cpudetect.h"
393 // Init decoder tables. Call first, once!
394 #ifdef CONFIG_FAKE_MONO
395 void MP3_Init(int fakemono
){
400 //gCpuCaps.hasMMX=gCpuCaps.hasMMX2=gCpuCaps.hasSSE=0; // for testing!
405 make_decode_tables(outscale
);
411 synth_func
= synth_1to1_MMX
;
416 if (gCpuCaps
.has3DNowExt
)
418 dct36_func
=dct36_3dnowex
;
419 dct64_MMX_func
= dct64_MMX_3dnowex
;
420 mp_msg(MSGT_DECAUDIO
,MSGL_V
,"mp3lib: using 3DNow!Ex optimized decore!\n");
425 if (gCpuCaps
.has3DNow
)
427 dct36_func
= dct36_3dnow
;
428 dct64_MMX_func
= dct64_MMX_3dnow
;
429 mp_msg(MSGT_DECAUDIO
,MSGL_V
,"mp3lib: using 3DNow! optimized decore!\n");
436 dct64_MMX_func
= dct64_sse
;
437 mp_msg(MSGT_DECAUDIO
,MSGL_V
,"mp3lib: using SSE optimized decore!\n");
445 dct64_MMX_func
= dct64_MMX
;
446 mp_msg(MSGT_DECAUDIO
,MSGL_V
,"mp3lib: using MMX optimized decore!\n");
450 if (gCpuCaps
.cpuType
>= CPUTYPE_I586
)
452 synth_func
= synth_1to1_pent
;
453 mp_msg(MSGT_DECAUDIO
,MSGL_V
,"mp3lib: using Pentium optimized decore!\n");
456 #endif /* ARCH_X86_32 */
458 if (gCpuCaps
.hasAltiVec
)
460 mp_msg(MSGT_DECAUDIO
,MSGL_V
,"mp3lib: using AltiVec optimized decore!\n");
465 synth_func
= NULL
; /* use default c version */
466 mp_msg(MSGT_DECAUDIO
,MSGL_V
,"mp3lib: using generic C decore!\n");
469 #ifdef CONFIG_FAKE_MONO
471 fr
.synth
=synth_1to1_l
;
472 else if (fakemono
== 2)
473 fr
.synth
=synth_1to1_r
;
479 fr
.synth_mono
=synth_1to1_mono2stereo
;
481 fr
.down_sample_sblimit
= SBLIMIT
>>(fr
.down_sample
);
484 init_layer3(fr
.down_sample_sblimit
);
485 mp_msg(MSGT_DECAUDIO
,MSGL_V
,"MP3lib: init layer2&3 finished, tables done\n");
490 void MP3_Close(void){
492 if(mp3_file
) fclose(mp3_file
);
496 // Open a file, init buffers. Call once per file!
497 int MP3_Open(char *filename
,int buffsize
){
498 MP3_eof
=1; // lock decoding
499 MP3_pause
=1; // lock playing
500 if(mp3_file
) MP3_Close(); // close prev. file
503 mp3_file
=fopen(filename
,"rb");
504 // printf("MP3_Open: file='%s'",filename);
505 // if(!mp3_file){ printf(" not found!\n"); return 0;} else printf("Ok!\n");
506 if(!mp3_file
) return 0;
508 MP3_filesize
=MP3_PrintTAG();
509 fseek(mp3_file
,0,SEEK_SET
);
511 MP3_InitBuffers(buffsize
);
512 if(!tables_done_flag
) MP3_Init();
513 MP3_eof
=0; // allow decoding
514 MP3_pause
=0; // allow playing
520 // Read & decode a single frame. Called by sound driver.
521 int MP3_DecodeFrame(unsigned char *hova
,short single
){
524 if(!read_frame(&fr
)) return 0;
525 if(single
==-2){ set_pointer(512); return 1; }
526 if(fr
.error_protection
) getbits(16); /* skip crc */
529 case 2: do_layer2(&fr
,single
);break;
530 case 3: do_layer3(&fr
,single
);break;
531 case 1: do_layer1(&fr
,single
);break;
533 return 0; // unsupported
536 return pcm_point
? pcm_point
: 2;
539 // Prints last frame header in ascii.
540 void MP3_PrintHeader(void){
541 static char *modes
[4] = { "Stereo", "Joint-Stereo", "Dual-Channel", "Single-Channel" };
542 static char *layers
[4] = { "???" , "I", "II", "III" };
544 mp_msg(MSGT_DECAUDIO
,MSGL_V
,"\rMPEG %s, Layer %s, %d Hz %d kbit %s, BPF: %d\n",
545 fr
.mpeg25
? "2.5" : (fr
.lsf
? "2.0" : "1.0"),
546 layers
[fr
.lay
],freqs
[fr
.sampling_frequency
],
547 tabsel_123
[fr
.lsf
][fr
.lay
-1][fr
.bitrate_index
],
548 modes
[fr
.mode
],fr
.framesize
+4);
549 mp_msg(MSGT_DECAUDIO
,MSGL_V
,"Channels: %d, copyright: %s, original: %s, CRC: %s, emphasis: %d\n",
550 fr
.stereo
,fr
.copyright
?"Yes":"No",
551 fr
.original
?"Yes":"No",fr
.error_protection
?"Yes":"No",
558 // Read & print ID3 TAG. Do not call when playing!!! returns filesize.
559 int MP3_PrintTAG(void){
571 char artist
[31]={0,};
574 char comment
[31]={0,};
579 fseek(mp3_file
,0,SEEK_END
);
580 fsize
=ftell(mp3_file
);
581 if(fseek(mp3_file
,-128,SEEK_END
)) return fsize
;
582 ret
=fread(&tag
,128,1,mp3_file
);
583 if(ret
!=1 || tag
.tag
[0]!='T' || tag
.tag
[1]!='A' || tag
.tag
[2]!='G') return fsize
;
585 strncpy(title
,tag
.title
,30);
586 strncpy(artist
,tag
.artist
,30);
587 strncpy(album
,tag
.album
,30);
588 strncpy(year
,tag
.year
,4);
589 strncpy(comment
,tag
.comment
,30);
591 if ( tag
.genre
<= sizeof(genre_table
)/sizeof(*genre_table
) ) {
592 strncpy(genre
, genre_table
[tag
.genre
], 30);
594 strncpy(genre
,"Unknown",30);
598 printf("Title : %30s Artist: %s\n",title
,artist
);
599 printf("Album : %30s Year : %4s\n",album
,year
);
600 printf("Comment: %30s Genre : %s\n",comment
,genre
);