1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (c) 2005 Jvo Studer
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 ****************************************************************************/
27 /* Macro that sign extends an unsigned byte */
28 #define SE(x) ((int32_t)((int8_t)(x)))
30 /* This codec supports AIFF files with the following formats:
31 * - PCM, 8, 16 and 24 bits, mono or stereo
36 AIFF_FORMAT_PCM
= 0x0001, /* AIFF PCM Format (big endian) */
37 IEEE_FORMAT_FLOAT
= 0x0003, /* IEEE Float */
38 AIFF_FORMAT_ALAW
= 0x0004, /* AIFC ALaw compressed */
39 AIFF_FORMAT_ULAW
= 0x0005 /* AIFC uLaw compressed */
42 /* Maximum number of bytes to process in one iteration */
43 /* for 44.1kHz stereo 16bits, this represents 0.023s ~= 1/50s */
44 #define AIF_CHUNK_SIZE (1024*2)
46 static int32_t samples
[AIF_CHUNK_SIZE
] IBSS_ATTR
;
48 enum codec_status
codec_main(void)
50 uint32_t numbytes
, bytesdone
;
51 uint16_t num_channels
= 0;
52 uint32_t num_sample_frames
= 0;
53 uint16_t sample_size
= 0;
54 uint32_t sample_rate
= 0;
62 uint32_t offset2snd
= 0;
63 uint16_t block_size
= 0;
64 uint32_t avgbytespersec
= 0;
65 off_t firstblockposn
; /* position of the first block in file */
67 /* Generic codec initialisation */
68 ci
->configure(DSP_SET_SAMPLE_DEPTH
, 28);
76 while (!*ci
->taginfo_ready
&& !ci
->stop_codec
)
79 codec_set_replaygain(ci
->id3
);
81 /* assume the AIFF header is less than 1024 bytes */
82 buf
= ci
->request_buffer(&n
, 1024);
87 if ((memcmp(buf
, "FORM", 4) != 0) || (memcmp(&buf
[8], "AIFF", 4) != 0)) {
96 /* read until 'SSND' chunk, which typically is last */
97 while (numbytes
== 0 && n
>= 8) {
99 i
= ((buf
[4]<<24)|(buf
[5]<<16)|(buf
[6]<<8)|buf
[7]);
100 if (memcmp(buf
, "COMM", 4) == 0) {
102 DEBUGF("CODEC_ERROR: 'COMM' chunk size=%lu < 18\n",
108 num_channels
= ((buf
[8]<<8)|buf
[9]);
109 /* num_sample_frames */
110 num_sample_frames
= ((buf
[10]<<24)|(buf
[11]<<16)|(buf
[12]<<8)
113 sample_size
= ((buf
[14]<<8)|buf
[15]);
114 /* sample_rate (don't use last 4 bytes, only integer fs) */
115 if (buf
[16] != 0x40) {
116 DEBUGF("CODEC_ERROR: weird sampling rate (no @)\n");
120 sample_rate
= ((buf
[18]<<24)|(buf
[19]<<16)|(buf
[20]<<8)|buf
[21])+1;
121 sample_rate
= sample_rate
>> (16 + 14 - buf
[17]);
122 /* calc average bytes per second */
123 avgbytespersec
= sample_rate
*num_channels
*sample_size
/8;
124 } else if (memcmp(buf
, "SSND", 4)==0) {
125 if (sample_size
== 0) {
126 DEBUGF("CODEC_ERROR: unsupported chunk order\n");
131 offset2snd
= (buf
[8]<<24)|(buf
[9]<<16)|(buf
[10]<<8)|buf
[11];
133 block_size
= (buf
[12]<<24)|(buf
[13]<<16)|(buf
[14]<<8)|buf
[15];
135 block_size
= num_channels
*sample_size
;
136 numbytes
= i
- 8 - offset2snd
;
137 i
= 8 + offset2snd
; /* advance to the beginning of data */
139 DEBUGF("unsupported AIFF chunk: '%c%c%c%c', size=%lu\n",
140 buf
[0], buf
[1], buf
[2], buf
[3], (unsigned long)i
);
143 if (i
& 0x01) /* odd chunk sizes must be padded */
147 DEBUGF("CODEC_ERROR: AIFF header size > 1024\n");
154 if (num_channels
== 0) {
155 DEBUGF("CODEC_ERROR: 'COMM' chunk not found or 0-channels file\n");
160 DEBUGF("CODEC_ERROR: 'SSND' chunk not found or has zero length\n");
164 if (sample_size
> 24) {
165 DEBUGF("CODEC_ERROR: PCM with more than 24 bits per sample "
171 ci
->configure(DSP_SWITCH_FREQUENCY
, ci
->id3
->frequency
);
173 if (num_channels
== 2) {
174 ci
->configure(DSP_SET_STEREO_MODE
, STEREO_INTERLEAVED
);
175 } else if (num_channels
== 1) {
176 ci
->configure(DSP_SET_STEREO_MODE
, STEREO_MONO
);
178 DEBUGF("CODEC_ERROR: more than 2 channels unsupported\n");
183 firstblockposn
= 1024 - n
;
184 ci
->advance_buffer(firstblockposn
);
186 /* The main decoder loop */
190 /* chunksize is computed so that one chunk is about 1/50s.
191 * this make 4096 for 44.1kHz 16bits stereo.
192 * It also has to be a multiple of blockalign */
193 chunksize
= (1 + avgbytespersec
/(50*block_size
))*block_size
;
194 /* check that the output buffer is big enough (convert to samplespersec,
195 then round to the block_size multiple below) */
196 if (((uint64_t)chunksize
*ci
->id3
->frequency
*num_channels
*2)
197 /(uint64_t)avgbytespersec
>= AIF_CHUNK_SIZE
) {
198 chunksize
= ((uint64_t)AIF_CHUNK_SIZE
*avgbytespersec
199 /((uint64_t)ci
->id3
->frequency
*num_channels
*2
200 *block_size
))*block_size
;
203 while (!endofstream
) {
205 if (ci
->stop_codec
|| ci
->new_track
)
211 /* use avgbytespersec to round to the closest blockalign multiple,
212 add firstblockposn. 64-bit casts to avoid overflows. */
213 newpos
= (((uint64_t)avgbytespersec
*(ci
->seek_time
- 1))
214 /(1000LL*block_size
))*block_size
;
215 if (newpos
> numbytes
)
217 if (ci
->seek_buffer(firstblockposn
+ newpos
))
221 aifbuf
= (uint8_t *)ci
->request_buffer(&n
, chunksize
);
224 break; /* End of stream */
226 if (bytesdone
+ n
> numbytes
) {
227 n
= numbytes
- bytesdone
;
231 if (sample_size
> 24) {
232 for (i
= 0; i
< n
; i
+= 4) {
233 samples
[i
/4] = (SE(aifbuf
[i
])<<21)|(aifbuf
[i
+ 1]<<13)
234 |(aifbuf
[i
+ 2]<<5)|(aifbuf
[i
+ 3]>>3);
237 } else if (sample_size
> 16) {
238 for (i
= 0; i
< n
; i
+= 3) {
239 samples
[i
/3] = (SE(aifbuf
[i
])<<21)|(aifbuf
[i
+ 1]<<13)
243 } else if (sample_size
> 8) {
244 for (i
= 0; i
< n
; i
+= 2)
245 samples
[i
/2] = (SE(aifbuf
[i
])<<21)|(aifbuf
[i
+ 1]<<13);
248 for (i
= 0; i
< n
; i
++)
249 samples
[i
] = SE(aifbuf
[i
]) << 21;
253 if (num_channels
== 2)
256 ci
->pcmbuf_insert(samples
, NULL
, bufcount
);
258 ci
->advance_buffer(n
);
260 if (bytesdone
>= numbytes
)
263 ci
->set_elapsed(bytesdone
*1000LL/avgbytespersec
);
268 if (ci
->request_next_track())