Mercurial > mplayer.hg
annotate mp3lib/sr1.c @ 5931:95c14d5dbb22
printf to mp_msg
author | albeu |
---|---|
date | Thu, 02 May 2002 10:28:33 +0000 |
parents | 90730a179d18 |
children | 523014df7d32 |
rev | line source |
---|---|
1 | 1 // #define NEWBUFFERING |
2 //#define DEBUG_RESYNC | |
3 | |
4 /* 1 frame = 4608 byte PCM */ | |
5 | |
6 #ifdef __GNUC__ | |
7 #define LOCAL static inline | |
8 #else | |
9 #define LOCAL static _inline | |
10 #endif | |
11 | |
12 //#undef LOCAL | |
13 //#define LOCAL | |
14 | |
15 #include <stdlib.h> | |
16 #include <stdio.h> | |
17 #include <string.h> | |
18 #include <signal.h> | |
19 #include <math.h> | |
20 | |
21 #define real float | |
22 // #define int long | |
23 | |
24 #include "mpg123.h" | |
25 #include "huffman.h" | |
26 #include "mp3.h" | |
1040 | 27 #include "bswap.h" |
4262 | 28 #include "../cpudetect.h" |
29 #include "../liba52/mm_accel.h" | |
1 | 30 |
1045 | 31 #include "fastmemcpy.h" |
4262 | 32 |
33 #ifdef ARCH_X86 | |
34 #define CAN_COMPILE_X86_ASM | |
35 #endif | |
36 | |
1 | 37 //static FILE* mp3_file=NULL; |
38 | |
39 int MP3_frames=0; | |
40 int MP3_eof=0; | |
41 int MP3_pause=0; | |
42 int MP3_filesize=0; | |
43 int MP3_fpos=0; // current file position | |
44 int MP3_framesize=0; // current framesize | |
45 int MP3_bitrate=0; // current bitrate | |
46 int MP3_samplerate=0; // current samplerate | |
47 int MP3_resync=0; | |
48 int MP3_channels=0; | |
49 int MP3_bps=2; | |
50 | |
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
|
51 static long outscale = 32768; |
1 | 52 #include "tabinit.c" |
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 #if 1 |
1 | 55 extern int mplayer_audio_read(char *buf,int size); |
56 | |
57 LOCAL int mp3_read(char *buf,int size){ | |
58 // int len=fread(buf,1,size,mp3_file); | |
59 int len=mplayer_audio_read(buf,size); | |
60 if(len>0) MP3_fpos+=len; | |
61 // if(len!=size) MP3_eof=1; | |
62 return len; | |
63 } | |
64 #else | |
65 extern int mp3_read(char *buf,int size); | |
66 #endif | |
67 | |
68 //void mp3_seek(int pos){ | |
69 // fseek(mp3_file,pos,SEEK_SET); | |
70 // return (MP3_fpos=ftell(mp3_file)); | |
71 //} | |
72 | |
73 /* Frame reader */ | |
74 | |
75 #define MAXFRAMESIZE 1280 | |
76 #define MAXFRAMESIZE2 (512+MAXFRAMESIZE) | |
77 | |
78 static int fsizeold=0,ssize=0; | |
79 static unsigned char bsspace[2][MAXFRAMESIZE2]; /* !!!!! */ | |
80 static unsigned char *bsbufold=bsspace[0]+512; | |
81 static unsigned char *bsbuf=bsspace[1]+512; | |
82 static int bsnum=0; | |
83 | |
84 static int bitindex; | |
85 static unsigned char *wordpointer; | |
86 static int bitsleft; | |
87 | |
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
|
88 unsigned char *pcm_sample; /* outbuffer address */ |
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
|
89 int pcm_point = 0; /* outbuffer offset */ |
1 | 90 |
91 static struct frame fr; | |
92 | |
93 static int tabsel_123[2][3][16] = { | |
94 { {0,32,64,96,128,160,192,224,256,288,320,352,384,416,448,}, | |
95 {0,32,48,56, 64, 80, 96,112,128,160,192,224,256,320,384,}, | |
96 {0,32,40,48, 56, 64, 80, 96,112,128,160,192,224,256,320,} }, | |
97 | |
98 { {0,32,48,56,64,80,96,112,128,144,160,176,192,224,256,}, | |
99 {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,}, | |
100 {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,} } | |
101 }; | |
102 | |
103 static long freqs[9] = { 44100, 48000, 32000, 22050, 24000, 16000 , 11025 , 12000 , 8000 }; | |
104 | |
105 LOCAL unsigned int getbits(short number_of_bits) | |
106 { | |
107 unsigned long rval; | |
108 // if(MP3_frames>=7741) printf("getbits: bits=%d bitsleft=%d wordptr=%x\n",number_of_bits,bitsleft,wordpointer); | |
109 if((bitsleft-=number_of_bits)<0) return 0; | |
110 if(!number_of_bits) return 0; | |
111 rval = wordpointer[0]; | |
112 rval <<= 8; | |
113 rval |= wordpointer[1]; | |
114 rval <<= 8; | |
115 rval |= wordpointer[2]; | |
116 rval <<= bitindex; | |
117 rval &= 0xffffff; | |
118 bitindex += number_of_bits; | |
119 rval >>= (24-number_of_bits); | |
120 wordpointer += (bitindex>>3); | |
121 bitindex &= 7; | |
122 return rval; | |
123 } | |
124 | |
125 | |
126 LOCAL unsigned int getbits_fast(short number_of_bits) | |
127 { | |
128 unsigned long rval; | |
129 // if(MP3_frames>=7741) printf("getbits_fast: bits=%d bitsleft=%d wordptr=%x\n",number_of_bits,bitsleft,wordpointer); | |
130 if((bitsleft-=number_of_bits)<0) return 0; | |
131 if(!number_of_bits) return 0; | |
4321 | 132 #if defined(CAN_COMPILE_X86_ASM) |
1040 | 133 rval = bswap_16(*((unsigned short *)wordpointer)); |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
134 #else |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
135 /* |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
136 * 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
|
137 * Fall back to some portable code. |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
138 */ |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
139 rval = wordpointer[0] << 8 | wordpointer[1]; |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
140 #endif |
1 | 141 rval <<= bitindex; |
142 rval &= 0xffff; | |
143 bitindex += number_of_bits; | |
144 rval >>= (16-number_of_bits); | |
145 wordpointer += (bitindex>>3); | |
146 bitindex &= 7; | |
147 return rval; | |
148 } | |
149 | |
150 LOCAL unsigned int get1bit(void) | |
151 { | |
152 unsigned char rval; | |
153 // if(MP3_frames>=7741) printf("get1bit: bitsleft=%d wordptr=%x\n",bitsleft,wordpointer); | |
154 if((--bitsleft)<0) return 0; | |
155 rval = *wordpointer << bitindex; | |
156 bitindex++; | |
157 wordpointer += (bitindex>>3); | |
158 bitindex &= 7; | |
159 return ((rval>>7)&1); | |
160 } | |
161 | |
162 LOCAL void set_pointer(long backstep) | |
163 { | |
164 // if(backstep!=512 && backstep>fsizeold) | |
165 // printf("\rWarning! backstep (%d>%d) \n",backstep,fsizeold); | |
166 wordpointer = bsbuf + ssize - backstep; | |
167 if (backstep) memcpy(wordpointer,bsbufold+fsizeold-backstep,backstep); | |
168 bitindex = 0; | |
169 bitsleft+=8*backstep; | |
170 // printf("Backstep %d (bitsleft=%d)\n",backstep,bitsleft); | |
171 } | |
172 | |
173 LOCAL int stream_head_read(unsigned char *hbuf,unsigned long *newhead){ | |
174 if(mp3_read(hbuf,4) != 4) return FALSE; | |
4321 | 175 #if defined(CAN_COMPILE_X86_ASM) |
1040 | 176 *newhead = bswap_32(*((unsigned long *)hbuf)); |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
177 #else |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
178 /* |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
179 * 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
|
180 * Fall back to some portable code. |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
181 */ |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
182 *newhead = |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
183 hbuf[0] << 24 | |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
184 hbuf[1] << 16 | |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
185 hbuf[2] << 8 | |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
186 hbuf[3]; |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1276
diff
changeset
|
187 #endif |
1040 | 188 return TRUE; |
1 | 189 } |
190 | |
191 LOCAL int stream_head_shift(unsigned char *hbuf,unsigned long *head){ | |
1040 | 192 *((unsigned long *)hbuf) >>= 8; |
1 | 193 if(mp3_read(hbuf+3,1) != 1) return 0; |
194 *head <<= 8; | |
195 *head |= hbuf[3]; | |
196 return 1; | |
197 } | |
198 | |
199 /* | |
200 * decode a header and write the information | |
201 * into the frame structure | |
202 */ | |
203 LOCAL int decode_header(struct frame *fr,unsigned long newhead){ | |
204 | |
205 // head_check: | |
1040 | 206 if( (newhead & 0xffe00000) != 0xffe00000 || |
1045 | 207 (newhead & 0x0000fc00) == 0x0000fc00) return FALSE; |
1 | 208 |
209 fr->lay = 4-((newhead>>17)&3); | |
210 // if(fr->lay!=3) return FALSE; | |
211 | |
212 if( newhead & ((long)1<<20) ) { | |
213 fr->lsf = (newhead & ((long)1<<19)) ? 0x0 : 0x1; | |
214 fr->mpeg25 = 0; | |
215 } else { | |
216 fr->lsf = 1; | |
217 fr->mpeg25 = 1; | |
218 } | |
219 | |
220 if(fr->mpeg25) | |
221 fr->sampling_frequency = 6 + ((newhead>>10)&0x3); | |
222 else | |
223 fr->sampling_frequency = ((newhead>>10)&0x3) + (fr->lsf*3); | |
224 | |
1166
95f6f14176c6
fr->sampling_frequency limitation (thanx to pl <p_l@tfz.net>)
arpi_esp
parents:
1045
diff
changeset
|
225 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
|
226 |
1 | 227 fr->error_protection = ((newhead>>16)&0x1)^0x1; |
228 fr->bitrate_index = ((newhead>>12)&0xf); | |
229 fr->padding = ((newhead>>9)&0x1); | |
230 fr->extension = ((newhead>>8)&0x1); | |
231 fr->mode = ((newhead>>6)&0x3); | |
232 fr->mode_ext = ((newhead>>4)&0x3); | |
233 fr->copyright = ((newhead>>3)&0x1); | |
234 fr->original = ((newhead>>2)&0x1); | |
235 fr->emphasis = newhead & 0x3; | |
236 | |
237 MP3_channels = fr->stereo = (fr->mode == MPG_MD_MONO) ? 1 : 2; | |
238 | |
239 if(!fr->bitrate_index){ | |
240 // fprintf(stderr,"Free format not supported.\n"); | |
241 return FALSE; | |
242 } | |
243 | |
244 switch(fr->lay){ | |
245 case 2: | |
246 MP3_bitrate=tabsel_123[fr->lsf][1][fr->bitrate_index]; | |
247 MP3_samplerate=freqs[fr->sampling_frequency]; | |
248 fr->framesize = (long) MP3_bitrate * 144000; | |
249 fr->framesize /= MP3_samplerate; | |
250 MP3_framesize=fr->framesize; | |
251 fr->framesize += fr->padding - 4; | |
252 break; | |
253 case 3: | |
254 if(fr->lsf) | |
255 ssize = (fr->stereo == 1) ? 9 : 17; | |
256 else | |
257 ssize = (fr->stereo == 1) ? 17 : 32; | |
258 if(fr->error_protection) ssize += 2; | |
259 | |
260 MP3_bitrate=tabsel_123[fr->lsf][2][fr->bitrate_index]; | |
261 MP3_samplerate=freqs[fr->sampling_frequency]; | |
262 fr->framesize = (long) MP3_bitrate * 144000; | |
263 fr->framesize /= MP3_samplerate<<(fr->lsf); | |
264 MP3_framesize=fr->framesize; | |
265 fr->framesize += fr->padding - 4; | |
266 break; | |
267 default: | |
268 // fprintf(stderr,"Sorry, unsupported layer type.\n"); | |
269 return 0; | |
270 } | |
271 if(fr->framesize<=0 || fr->framesize>MAXFRAMESIZE) return FALSE; | |
272 | |
273 return 1; | |
274 } | |
275 | |
276 | |
277 LOCAL int stream_read_frame_body(int size){ | |
278 | |
279 /* flip/init buffer for Layer 3 */ | |
280 bsbufold = bsbuf; | |
281 bsbuf = bsspace[bsnum]+512; | |
282 bsnum = (bsnum + 1) & 1; | |
283 | |
284 if( mp3_read(bsbuf,size) != size) return 0; // broken frame | |
285 | |
286 bitindex = 0; | |
287 wordpointer = (unsigned char *) bsbuf; | |
288 bitsleft=8*size; | |
289 | |
290 return 1; | |
291 } | |
292 | |
293 | |
294 /***************************************************************** | |
295 * read next frame return number of frames read. | |
296 */ | |
297 LOCAL int read_frame(struct frame *fr){ | |
298 unsigned long newhead; | |
299 unsigned char hbuf[8]; | |
300 int skipped,resyncpos; | |
301 int frames=0; | |
302 | |
303 resync: | |
304 skipped=MP3_fpos; | |
305 resyncpos=MP3_fpos; | |
306 | |
307 set_pointer(512); | |
308 fsizeold=fr->framesize; /* for Layer3 */ | |
309 if(!stream_head_read(hbuf,&newhead)) return 0; | |
310 if(!decode_header(fr,newhead)){ | |
311 // invalid header! try to resync stream! | |
312 #ifdef DEBUG_RESYNC | |
313 printf("ReSync: searching for a valid header... (pos=%X)\n",MP3_fpos); | |
314 #endif | |
315 retry1: | |
316 while(!decode_header(fr,newhead)){ | |
317 if(!stream_head_shift(hbuf,&newhead)) return 0; | |
318 } | |
319 resyncpos=MP3_fpos-4; | |
320 // found valid header | |
321 #ifdef DEBUG_RESYNC | |
322 printf("ReSync: found valid hdr at %X fsize=%ld ",resyncpos,fr->framesize); | |
323 #endif | |
324 if(!stream_read_frame_body(fr->framesize)) return 0; // read body | |
325 set_pointer(512); | |
326 fsizeold=fr->framesize; /* for Layer3 */ | |
327 if(!stream_head_read(hbuf,&newhead)) return 0; | |
328 if(!decode_header(fr,newhead)){ | |
329 // invalid hdr! go back... | |
330 #ifdef DEBUG_RESYNC | |
331 printf("INVALID\n"); | |
332 #endif | |
333 // mp3_seek(resyncpos+1); | |
334 if(!stream_head_read(hbuf,&newhead)) return 0; | |
335 goto retry1; | |
336 } | |
337 #ifdef DEBUG_RESYNC | |
338 printf("OK!\n"); | |
339 ++frames; | |
340 #endif | |
341 } | |
342 | |
343 skipped=resyncpos-skipped; | |
344 // if(skipped && !MP3_resync) printf("\r%d bad bytes skipped (resync at 0x%X) \n",skipped,resyncpos); | |
345 | |
346 // 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":""); | |
347 | |
348 /* read main data into memory */ | |
349 if(!stream_read_frame_body(fr->framesize)){ | |
350 printf("\nBroken frame at 0x%X \n",resyncpos); | |
351 return 0; | |
352 } | |
353 ++frames; | |
354 | |
355 if(MP3_resync){ | |
356 MP3_resync=0; | |
357 if(frames==1) goto resync; | |
358 } | |
359 | |
360 return frames; | |
361 } | |
362 | |
4262 | 363 int _has_mmx = 0; |
364 | |
1 | 365 #include "layer2.c" |
366 #include "layer3.c" | |
367 | |
368 /******************************************************************************/ | |
369 /* PUBLIC FUNCTIONS */ | |
370 /******************************************************************************/ | |
371 | |
372 static int tables_done_flag=0; | |
373 | |
1245
03b7e2955a20
Added newest MMX-optimized decore which speedups decoding at least on 13% for any cpu.
nick
parents:
1166
diff
changeset
|
374 /* It's hidden from gcc in assembler */ |
03b7e2955a20
Added newest MMX-optimized decore which speedups decoding at least on 13% for any cpu.
nick
parents:
1166
diff
changeset
|
375 extern void dct64_MMX( void ); |
03b7e2955a20
Added newest MMX-optimized decore which speedups decoding at least on 13% for any cpu.
nick
parents:
1166
diff
changeset
|
376 extern void dct64_MMX_3dnow( void ); |
03b7e2955a20
Added newest MMX-optimized decore which speedups decoding at least on 13% for any cpu.
nick
parents:
1166
diff
changeset
|
377 extern void dct64_MMX_3dnowex( void ); |
1393 | 378 extern void dct64_MMX_sse( void ); |
1245
03b7e2955a20
Added newest MMX-optimized decore which speedups decoding at least on 13% for any cpu.
nick
parents:
1166
diff
changeset
|
379 void (*dct64_MMX_func)( void ); |
03b7e2955a20
Added newest MMX-optimized decore which speedups decoding at least on 13% for any cpu.
nick
parents:
1166
diff
changeset
|
380 |
3088
73c2e9304d08
changed to use cpudetect.c (to use change te #if 1 -> #if 0 :)
alex
parents:
1393
diff
changeset
|
381 #include "../cpudetect.h" |
73c2e9304d08
changed to use cpudetect.c (to use change te #if 1 -> #if 0 :)
alex
parents:
1393
diff
changeset
|
382 |
1 | 383 // Init decoder tables. Call first, once! |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
384 #ifdef USE_FAKE_MONO |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
385 void MP3_Init(int fakemono){ |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
386 #else |
1 | 387 void MP3_Init(){ |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
388 #endif |
4262 | 389 int accel=0; |
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
|
390 |
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
|
391 #ifdef CAN_COMPILE_X86_ASM |
5888 | 392 // GetCpuCaps(&gCpuCaps); |
4262 | 393 if(gCpuCaps.hasMMX) accel |= MM_ACCEL_X86_MMX; |
394 if(gCpuCaps.hasMMX2) accel |= MM_ACCEL_X86_MMXEXT; | |
395 if(gCpuCaps.hasSSE) accel |= MM_ACCEL_X86_SSE; | |
396 if(gCpuCaps.has3DNow) accel |= MM_ACCEL_X86_3DNOW; | |
397 if(gCpuCaps.has3DNowExt) accel |= MM_ACCEL_X86_3DNOWEXT; | |
398 | |
399 if (accel & MM_ACCEL_X86_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
|
400 { |
4262 | 401 _has_mmx = 1; |
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
|
402 make_decode_tables_MMX(outscale); |
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
|
403 printf("mp3lib: made decode tables with MMX optimization\n"); |
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
|
404 } |
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
|
405 else |
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
|
406 make_decode_tables(outscale); |
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
|
407 #else |
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
|
408 make_decode_tables(outscale); |
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 #endif |
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
|
410 |
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
|
411 #ifdef USE_FAKE_MONO |
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 if (fakemono == 1) |
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
|
413 fr.synth = synth_1to1_l; |
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
|
414 else if (fakemono == 2) |
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 fr.synth = synth_1to1_r; |
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
|
416 else |
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 fr.synth = synth_1to1; |
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
|
418 #else |
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
|
419 fr.synth = synth_1to1; |
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 #endif |
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 fr.synth_mono = synth_1to1_mono2stereo; |
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
|
422 fr.down_sample = 0; |
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
|
423 fr.down_sample_sblimit = SBLIMIT>>(fr.down_sample); |
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 init_layer2(); |
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 init_layer3(fr.down_sample_sblimit); |
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
|
426 tables_done_flag = 1; |
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 |
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
|
428 dct36_func = dct36; |
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 printf("init layer2&3 finished, tables done\n"); |
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 |
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 #ifdef CAN_COMPILE_X86_ASM |
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 #if 0 |
4262 | 433 if(accel & MM_ACCEL_X86_SSE) |
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
|
434 { |
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
|
435 /* SSE version is buggy */ |
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 synth_func = synth_1to1_MMX; |
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 dct64_MMX_func = dct64_MMX_sse; |
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
|
438 printf("mp3lib: using SSE optimized decore!\n"); |
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
|
439 } |
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
|
440 else |
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 #endif |
4262 | 442 if (accel & MM_ACCEL_X86_3DNOWEXT) |
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
|
443 { |
4262 | 444 synth_func=synth_1to1_MMX; |
445 dct36_func=dct36_3dnowex; | |
446 dct64_MMX_func=dct64_MMX_3dnowex; | |
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
|
447 printf("mp3lib: using 3DNow!Ex optimized decore!\n"); |
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 } |
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
|
449 else |
4262 | 450 if (accel & MM_ACCEL_X86_3DNOW) |
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
|
451 { |
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
|
452 synth_func = synth_1to1_MMX; |
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 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
|
454 dct64_MMX_func = dct64_MMX_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
|
455 printf("mp3lib: using 3DNow! optimized decore!\n"); |
4262 | 456 } |
457 else | |
458 if (accel & MM_ACCEL_X86_MMX) | |
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 synth_func = synth_1to1_MMX; |
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
|
461 dct64_MMX_func = dct64_MMX; |
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 printf("mp3lib: using MMX optimized decore!\n"); |
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 } |
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
|
464 else |
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; |
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 printf("mp3lib: using Pentium optimized decore!\n"); |
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 |
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 { |
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
|
472 synth_func = NULL; /* use default c version */ |
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
|
473 printf("mp3lib: using generic decore!\n"); |
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
|
474 } |
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
|
475 #else /* CAN_COMPILE_X86_ASM */ |
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
|
476 synth_func = NULL; |
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
|
477 printf("mp3lib: using generic decore!\n"); |
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
|
478 #endif |
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 |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
480 #ifdef USE_FAKE_MONO |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
481 if (fakemono == 1) |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
482 fr.synth=synth_1to1_l; |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
483 else if (fakemono == 2) |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
484 fr.synth=synth_1to1_r; |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
485 else |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
486 fr.synth=synth_1to1; |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
487 #else |
1 | 488 fr.synth=synth_1to1; |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
73
diff
changeset
|
489 #endif |
1 | 490 fr.synth_mono=synth_1to1_mono2stereo; |
491 fr.down_sample=0; | |
492 fr.down_sample_sblimit = SBLIMIT>>(fr.down_sample); | |
493 init_layer2(); | |
494 init_layer3(fr.down_sample_sblimit); | |
495 tables_done_flag=1; | |
496 } | |
497 | |
498 #if 0 | |
499 | |
500 void MP3_Close(){ | |
501 MP3_eof=1; | |
502 if(mp3_file) fclose(mp3_file); | |
503 mp3_file=NULL; | |
504 } | |
505 | |
506 // Open a file, init buffers. Call once per file! | |
507 int MP3_Open(char *filename,int buffsize){ | |
508 MP3_eof=1; // lock decoding | |
509 MP3_pause=1; // lock playing | |
510 if(mp3_file) MP3_Close(); // close prev. file | |
511 MP3_frames=0; | |
512 | |
513 mp3_file=fopen(filename,"rb"); | |
514 // printf("MP3_Open: file='%s'",filename); | |
515 // if(!mp3_file){ printf(" not found!\n"); return 0;} else printf("Ok!\n"); | |
516 if(!mp3_file) return 0; | |
517 | |
518 MP3_filesize=MP3_PrintTAG(); | |
519 fseek(mp3_file,0,SEEK_SET); | |
520 | |
521 MP3_InitBuffers(buffsize); | |
522 if(!tables_done_flag) MP3_Init(); | |
523 MP3_eof=0; // allow decoding | |
524 MP3_pause=0; // allow playing | |
525 return MP3_filesize; | |
526 } | |
527 | |
528 #endif | |
529 | |
530 // Read & decode a single frame. Called by sound driver. | |
531 int MP3_DecodeFrame(unsigned char *hova,short single){ | |
532 pcm_sample = hova; | |
533 pcm_point = 0; | |
534 if(!read_frame(&fr))return(0); | |
535 if(single==-2){ set_pointer(512); return(1); } | |
536 if(fr.error_protection) getbits(16); /* skip crc */ | |
537 fr.single=single; | |
538 switch(fr.lay){ | |
539 case 2: do_layer2(&fr,single);break; | |
540 case 3: do_layer3(&fr,single);break; | |
541 } | |
542 // ++MP3_frames; | |
543 return(pcm_point?pcm_point:2); | |
544 } | |
545 | |
546 // Prints last frame header in ascii. | |
547 void MP3_PrintHeader(){ | |
548 static char *modes[4] = { "Stereo", "Joint-Stereo", "Dual-Channel", "Single-Channel" }; | |
549 static char *layers[4] = { "???" , "I", "II", "III" }; | |
550 | |
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
|
551 printf("\rMPEG %s, Layer %s, %ld Hz %d kbit %s, BPF: %ld\n", |
1 | 552 fr.mpeg25 ? "2.5" : (fr.lsf ? "2.0" : "1.0"), |
553 layers[fr.lay],freqs[fr.sampling_frequency], | |
554 tabsel_123[fr.lsf][fr.lay-1][fr.bitrate_index], | |
555 modes[fr.mode],fr.framesize+4); | |
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
|
556 printf("Channels: %d, copyright: %s, original: %s, CRC: %s, emphasis: %d\n", |
1 | 557 fr.stereo,fr.copyright?"Yes":"No", |
558 fr.original?"Yes":"No",fr.error_protection?"Yes":"No", | |
559 fr.emphasis); | |
560 } | |
561 | |
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
|
562 #if 0 |
1 | 563 #include "genre.h" |
564 | |
565 // Read & print ID3 TAG. Do not call when playing!!! returns filesize. | |
566 int MP3_PrintTAG(){ | |
567 struct id3tag { | |
568 char tag[3]; | |
569 char title[30]; | |
570 char artist[30]; | |
571 char album[30]; | |
572 char year[4]; | |
573 char comment[30]; | |
574 unsigned char genre; | |
575 }; | |
576 struct id3tag tag; | |
577 char title[31]={0,}; | |
578 char artist[31]={0,}; | |
579 char album[31]={0,}; | |
580 char year[5]={0,}; | |
581 char comment[31]={0,}; | |
582 char genre[31]={0,}; | |
583 int fsize; | |
584 int ret; | |
585 | |
586 fseek(mp3_file,0,SEEK_END); | |
587 fsize=ftell(mp3_file); | |
588 if(fseek(mp3_file,-128,SEEK_END)) return fsize; | |
589 ret=fread(&tag,128,1,mp3_file); | |
590 if(ret!=1 || tag.tag[0]!='T' || tag.tag[1]!='A' || tag.tag[2]!='G') return fsize; | |
591 | |
592 strncpy(title,tag.title,30); | |
593 strncpy(artist,tag.artist,30); | |
594 strncpy(album,tag.album,30); | |
595 strncpy(year,tag.year,4); | |
596 strncpy(comment,tag.comment,30); | |
597 | |
598 if ( tag.genre <= sizeof(genre_table)/sizeof(*genre_table) ) { | |
599 strncpy(genre, genre_table[tag.genre], 30); | |
600 } else { | |
601 strncpy(genre,"Unknown",30); | |
602 } | |
603 | |
604 // printf("\n"); | |
605 printf("Title : %30s Artist: %s\n",title,artist); | |
606 printf("Album : %30s Year : %4s\n",album,year); | |
607 printf("Comment: %30s Genre : %s\n",comment,genre); | |
608 printf("\n"); | |
609 return fsize-128; | |
610 } | |
611 | |
612 #endif |