1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
9 * Copyright (C) 2006-2008 Adam Gashlin (hcs)
10 * Copyright (C) 2006 Jens Arnold
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
24 #include "lib/fixedpoint.h"
28 /* Maximum number of bytes to process in one iteration */
29 #define WAV_CHUNK_SIZE (1024*2)
31 /* Number of times to loop looped tracks when repeat is disabled */
34 /* Length of fade-out for looped tracks (milliseconds) */
35 #define FADE_LENGTH 10000L
37 /* Default high pass filter cutoff frequency is 500 Hz.
38 * Others can be set, but the default is nearly always used,
39 * and there is no way to determine if another was used, anyway.
41 const long cutoff
= 500;
43 static int16_t samples
[WAV_CHUNK_SIZE
] IBSS_ATTR
;
45 /* this is the codec entry point */
46 enum codec_status
codec_main(void)
49 int sampleswritten
, i
;
51 int32_t ch1_1
, ch1_2
, ch2_1
, ch2_2
; /* ADPCM history */
53 int endofstream
; /* end of stream flag */
54 uint32_t avgbytespersec
;
55 int looping
; /* looping flag */
56 int loop_count
; /* number of loops done so far */
57 int fade_count
; /* countdown for fadeout */
58 int fade_frames
; /* length of fade in frames */
59 off_t start_adr
, end_adr
; /* loop points */
60 off_t chanstart
, bufoff
;
61 /*long coef1=0x7298L,coef2=-0x3350L;*/
64 /* Generic codec initialisation */
65 /* we only render 16 bits */
66 ci
->configure(DSP_SET_SAMPLE_DEPTH
, 16);
69 DEBUGF("ADX: next_track\n");
73 DEBUGF("ADX: after init\n");
76 ch1_1
=ch1_2
=ch2_1
=ch2_2
=0;
78 /* wait for track info to load */
79 while (!*ci
->taginfo_ready
&& !ci
->stop_codec
)
82 codec_set_replaygain(ci
->id3
);
85 DEBUGF("ADX: request initial buffer\n");
87 buf
= ci
->request_buffer(&n
, 0x38);
88 if (!buf
|| n
< 0x38) {
92 DEBUGF("ADX: read size = %lx\n",(unsigned long)n
);
94 /* Get file header for starting offset, channel count */
96 chanstart
= ((buf
[2] << 8) | buf
[3]) + 4;
99 /* useful for seeking and reporting current playback position */
100 avgbytespersec
= ci
->id3
->frequency
* 18 * channels
/ 32;
101 DEBUGF("avgbytespersec=%ld\n",(unsigned long)avgbytespersec
);
103 /* calculate filter coefficients */
106 * A simple table of these coefficients would be nice, but
107 * some very odd frequencies are used and if I'm going to
108 * interpolate I might as well just go all the way and
109 * calclate them precisely.
110 * Speed is not an issue as this only needs to be done once per file.
113 const int64_t big28
= 0x10000000LL
;
114 const int64_t big32
= 0x100000000LL
;
115 int64_t frequency
= ci
->id3
->frequency
;
116 int64_t phasemultiple
= cutoff
*big32
/frequency
;
120 const int64_t b
= (M_SQRT2
*big28
)-big28
;
124 fp_sincos((unsigned long)phasemultiple
,&z
);
126 a
= (M_SQRT2
*big28
)-(z
*big28
/LONG_MAX
);
129 * In the long passed to fsqrt there are only 4 nonfractional bits,
130 * which is sufficient here, but this is the only reason why I don't
131 * use 32 fractional bits everywhere.
133 d
= fp_sqrt((a
+b
)*(a
-b
)/big28
,28);
136 coef1
= (c
*8192) >> 28;
137 coef2
= (c
*c
/big28
*-4096) >> 28;
138 DEBUGF("ADX: samprate=%ld ",(long)frequency
);
139 DEBUGF("coef1 %04x ",(unsigned int)(coef1
*4));
140 DEBUGF("coef2 %04x\n",(unsigned int)(coef2
*-4));
145 looping
= 0; start_adr
= 0; end_adr
= 0;
146 if (!memcmp(buf
+0x10,"\x01\xF4\x03\x00",4)) {
147 /* Soul Calibur 2 style (type 03) */
148 DEBUGF("ADX: type 03 found\n");
149 /* check if header is too small for loop data */
150 if (chanstart
-6 < 0x2c) looping
=0;
152 looping
= (buf
[0x18]) ||
156 end_adr
= (buf
[0x28]<<24) |
166 )/32*channels
*18+chanstart
;
168 } else if (!memcmp(buf
+0x10,"\x01\xF4\x04\x00",4)) {
169 /* Standard (type 04) */
170 DEBUGF("ADX: type 04 found\n");
171 /* check if header is too small for loop data */
172 if (chanstart
-6 < 0x38) looping
=0;
174 looping
= (buf
[0x24]) ||
178 end_adr
= (buf
[0x34]<<24) |
187 )/32*channels
*18+chanstart
;
190 DEBUGF("ADX: error, couldn't determine ADX type\n");
195 DEBUGF("ADX: looped, start: %lx end: %lx\n",start_adr
,end_adr
);
197 DEBUGF("ADX: not looped\n");
200 /* advance to first frame */
201 DEBUGF("ADX: first frame at %lx\n",chanstart
);
204 /* get in position */
205 ci
->seek_buffer(bufoff
);
208 /* setup pcm buffer format */
209 ci
->configure(DSP_SWITCH_FREQUENCY
, ci
->id3
->frequency
);
211 ci
->configure(DSP_SET_STEREO_MODE
, STEREO_INTERLEAVED
);
212 } else if (channels
== 1) {
213 ci
->configure(DSP_SET_STEREO_MODE
, STEREO_MONO
);
215 DEBUGF("ADX CODEC_ERROR: more than 2 channels\n");
221 fade_count
= -1; /* disable fade */
224 /* The main decoder loop */
226 while (!endofstream
) {
228 if (ci
->stop_codec
|| ci
->new_track
) {
232 /* do we need to loop? */
233 if (bufoff
> end_adr
-18*channels
&& looping
) {
234 DEBUGF("ADX: loop!\n");
235 /* check for endless looping */
236 if (ci
->global_settings
->repeat_mode
==REPEAT_ONE
) {
238 fade_count
= -1; /* disable fade */
240 /* otherwise start fade after LOOP_TIMES loops */
242 if (loop_count
>= LOOP_TIMES
&& fade_count
< 0) {
243 /* frames to fade over */
244 fade_frames
= FADE_LENGTH
*ci
->id3
->frequency
/32/1000;
245 /* volume relative to fade_frames */
246 fade_count
= fade_frames
;
247 DEBUGF("ADX: fade_frames = %d\n",fade_frames
);
251 ci
->seek_buffer(bufoff
);
254 /* do we need to seek? */
258 DEBUGF("ADX: seek to %ldms\n",ci
->seek_time
);
262 fade_count
= -1; /* disable fade */
265 newpos
= (((uint64_t)avgbytespersec
*(ci
->seek_time
- 1))
266 / (1000LL*18*channels
))*(18*channels
);
267 bufoff
= chanstart
+ newpos
;
268 while (bufoff
> end_adr
-18*channels
) {
269 bufoff
-=end_adr
-start_adr
;
272 ci
->seek_buffer(bufoff
);
276 if (bufoff
>ci
->filesize
-channels
*18) break; /* End of stream */
281 /* Is there data left in the file? */
282 (bufoff
<= ci
->filesize
-(18*channels
)) &&
283 /* Is there space in the output buffer? */
284 (sampleswritten
<= WAV_CHUNK_SIZE
-(32*channels
)) &&
285 /* Should we be looping? */
286 ((!looping
) || bufoff
<= end_adr
-18*channels
))
288 /* decode first/only channel */
293 buf
= ci
->request_buffer(&n
, 18);
296 DEBUGF("ADX: couldn't get buffer at %lx\n",
301 scale
= ((buf
[0] << 8) | (buf
[1])) +1;
303 for (i
= 2; i
< 18; i
++)
305 d
= (buf
[i
] >> 4) & 15;
307 ch1_0
= d
*scale
+ ((coef1
*ch1_1
+ coef2
*ch1_2
) >> 12);
308 if (ch1_0
> 32767) ch1_0
= 32767;
309 else if (ch1_0
< -32768) ch1_0
= -32768;
310 samples
[sampleswritten
] = ch1_0
;
311 sampleswritten
+=channels
;
312 ch1_2
= ch1_1
; ch1_1
= ch1_0
;
316 ch1_0
= d
*scale
+ ((coef1
*ch1_1
+ coef2
*ch1_2
) >> 12);
317 if (ch1_0
> 32767) ch1_0
= 32767;
318 else if (ch1_0
< -32768) ch1_0
= -32768;
319 samples
[sampleswritten
] = ch1_0
;
320 sampleswritten
+=channels
;
321 ch1_2
= ch1_1
; ch1_1
= ch1_0
;
324 ci
->advance_buffer(18);
327 /* decode second channel */
331 buf
= ci
->request_buffer(&n
, 18);
334 DEBUGF("ADX: couldn't get buffer at %lx\n",
339 scale
= ((buf
[0] << 8)|(buf
[1]))+1;
343 for (i
= 2; i
< 18; i
++)
345 d
= (buf
[i
] >> 4) & 15;
347 ch2_0
= d
*scale
+ ((coef1
*ch2_1
+ coef2
*ch2_2
) >> 12);
348 if (ch2_0
> 32767) ch2_0
= 32767;
349 else if (ch2_0
< -32768) ch2_0
= -32768;
350 samples
[sampleswritten
] = ch2_0
;
352 ch2_2
= ch2_1
; ch2_1
= ch2_0
;
356 ch2_0
= d
*scale
+ ((coef1
*ch2_1
+ coef2
*ch2_2
) >> 12);
357 if (ch2_0
> 32767) ch2_0
= 32767;
358 else if (ch2_0
< -32768) ch2_0
= -32768;
359 samples
[sampleswritten
] = ch2_0
;
361 ch2_2
= ch2_1
; ch2_1
= ch2_0
;
364 ci
->advance_buffer(18);
365 sampleswritten
--; /* go back to first channel's next sample */
370 for (i
=0;i
<(channels
==1?32:64);i
++) samples
[sampleswritten
-i
-1]=
371 ((int32_t)samples
[sampleswritten
-i
-1])*fade_count
/fade_frames
;
372 if (fade_count
==0) {endofstream
=1; break;}
377 sampleswritten
>>= 1; /* make samples/channel */
379 ci
->pcmbuf_insert(samples
, NULL
, sampleswritten
);
382 ((end_adr
-start_adr
)*loop_count
+ bufoff
-chanstart
)*
383 1000LL/avgbytespersec
);
386 if (ci
->request_next_track())