libpcm: decoded pcm depth corrects.
[kugel-rb.git] / apps / codecs / wav.c
blob412d548817e5176482013f97af4d8070772b6d71
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Dave Chapman
11 * Copyright (C) 2009 Yoshihisa Uchida
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
23 #include "codeclib.h"
24 #include "codecs/libpcm/support_formats.h"
26 CODEC_HEADER
28 /* WAVE (RIFF) codec:
30 * For a good documentation on WAVE files, see:
31 * http://www.tsp.ece.mcgill.ca/MMSP/Documents/AudioFormats/WAVE/WAVE.html
32 * and
33 * http://www.sonicspot.com/guide/wavefiles.html
35 * For sample WAV files, see:
36 * http://www.tsp.ece.mcgill.ca/MMSP/Documents/AudioFormats/WAVE/Samples.html
40 #define PCM_SAMPLE_SIZE (4096*2)
42 static int32_t samples[PCM_SAMPLE_SIZE] IBSS_ATTR;
44 /* This codec support WAVE files with the following formats: */
45 enum
47 WAVE_FORMAT_UNKNOWN = 0x0000, /* Microsoft Unknown Wave Format */
48 WAVE_FORMAT_PCM = 0x0001, /* Microsoft PCM Format */
49 WAVE_FORMAT_ADPCM = 0x0002, /* Microsoft ADPCM Format */
50 WAVE_FORMAT_IEEE_FLOAT = 0x0003, /* IEEE Float */
51 WAVE_FORMAT_ALAW = 0x0006, /* Microsoft ALAW */
52 WAVE_FORMAT_MULAW = 0x0007, /* Microsoft MULAW */
53 WAVE_FORMAT_DVI_ADPCM = 0x0011, /* Intel's DVI ADPCM */
54 WAVE_FORMAT_DIALOGIC_OKI_ADPCM = 0x0017, /* Dialogic OKI ADPCM */
55 WAVE_FORMAT_YAMAHA_ADPCM = 0x0020, /* Yamaha ADPCM */
56 WAVE_FORMAT_XBOX_ADPCM = 0x0069, /* XBOX ADPCM */
57 IBM_FORMAT_MULAW = 0x0101, /* same as WAVE_FORMAT_MULAW */
58 IBM_FORMAT_ALAW = 0x0102, /* same as WAVE_FORMAT_ALAW */
59 WAVE_FORMAT_SWF_ADPCM = 0x5346, /* Adobe SWF ADPCM */
60 WAVE_FORMAT_EXTENSIBLE = 0xFFFE
63 const struct pcm_entry wave_codecs[] = {
64 { WAVE_FORMAT_UNKNOWN, 0 },
65 { WAVE_FORMAT_PCM, get_linear_pcm_codec },
66 { WAVE_FORMAT_ADPCM, get_ms_adpcm_codec },
67 { WAVE_FORMAT_IEEE_FLOAT, get_ieee_float_codec },
68 { WAVE_FORMAT_ALAW, get_itut_g711_alaw_codec },
69 { WAVE_FORMAT_MULAW, get_itut_g711_mulaw_codec },
70 { WAVE_FORMAT_DVI_ADPCM, get_dvi_adpcm_codec },
71 { WAVE_FORMAT_DIALOGIC_OKI_ADPCM, get_dialogic_oki_adpcm_codec },
72 { WAVE_FORMAT_YAMAHA_ADPCM, get_yamaha_adpcm_codec },
73 { WAVE_FORMAT_XBOX_ADPCM, get_dvi_adpcm_codec },
74 { IBM_FORMAT_MULAW, get_itut_g711_mulaw_codec },
75 { IBM_FORMAT_ALAW, get_itut_g711_alaw_codec },
76 { WAVE_FORMAT_SWF_ADPCM, get_swf_adpcm_codec },
79 #define NUM_FORMATS 13
81 static const struct pcm_codec *get_wave_codec(uint32_t formattag)
83 int i;
85 for (i = 0; i < NUM_FORMATS; i++)
87 if (wave_codecs[i].format_tag == formattag)
89 if (wave_codecs[i].get_codec)
90 return wave_codecs[i].get_codec();
91 return 0;
94 return 0;
97 static struct pcm_format format;
98 static uint32_t bytesdone;
100 static bool set_msadpcm_coeffs(const uint8_t *buf)
102 int i;
103 int num;
104 int size;
106 buf += 4; /* skip 'fmt ' */
107 size = buf[0] | (buf[1] << 8) | (buf[1] << 16) | (buf[1] << 24);
108 if (size < 50)
110 DEBUGF("CODEC_ERROR: microsoft adpcm 'fmt ' chunk size=%lu < 50\n",
111 (unsigned long)size);
112 return false;
115 /* get nNumCoef */
116 buf += 24;
117 num = buf[0] | (buf[1] << 8);
120 * In many case, nNumCoef is 7.
121 * Depending upon the encoder, as for this value there is a possibility of
122 * increasing more.
123 * If you found the file where this value exceeds 7, please report.
125 if (num != MSADPCM_NUM_COEFF)
127 DEBUGF("CODEC_ERROR: microsoft adpcm nNumCoef=%d != 7\n", num);
128 return false;
131 /* get aCoeffs */
132 buf += 2;
133 for (i = 0; i < MSADPCM_NUM_COEFF; i++)
135 format.coeffs[i][0] = buf[0] | (SE(buf[1]) << 8);
136 format.coeffs[i][1] = buf[2] | (SE(buf[3]) << 8);
137 buf += 4;
140 return true;
143 static uint8_t *read_buffer(size_t *realsize)
145 uint8_t *buffer = (uint8_t *)ci->request_buffer(realsize, format.chunksize);
146 if (bytesdone + (*realsize) > format.numbytes)
147 *realsize = format.numbytes - bytesdone;
148 bytesdone += *realsize;
149 ci->advance_buffer(*realsize);
150 return buffer;
153 /* this is the codec entry point */
154 enum codec_status codec_main(void)
156 int status = CODEC_OK;
157 uint32_t decodedsamples;
158 uint32_t i;
159 size_t n;
160 int bufcount;
161 int endofstream;
162 unsigned char *buf;
163 uint8_t *wavbuf;
164 off_t firstblockposn; /* position of the first block in file */
165 const struct pcm_codec *codec;
167 /* Generic codec initialisation */
168 ci->configure(DSP_SET_SAMPLE_DEPTH, PCM_OUTPUT_DEPTH);
170 next_track:
171 if (codec_init()) {
172 DEBUGF("codec_init() error\n");
173 status = CODEC_ERROR;
174 goto exit;
177 while (!*ci->taginfo_ready && !ci->stop_codec)
178 ci->sleep(1);
180 codec_set_replaygain(ci->id3);
182 /* Need to save offset for later use (cleared indirectly by advance_buffer) */
183 bytesdone = ci->id3->offset;
185 /* get RIFF chunk header */
186 buf = ci->request_buffer(&n, 12);
187 if (n < 12) {
188 DEBUGF("request_buffer error\n");
189 status = CODEC_ERROR;
190 goto done;
192 if ((memcmp(buf, "RIFF", 4) != 0) || (memcmp(&buf[8], "WAVE", 4) != 0)) {
193 DEBUGF("CODEC_ERROR: missing riff header\n");
194 status = CODEC_ERROR;
195 goto done;
198 /* advance to first WAVE chunk */
199 ci->advance_buffer(12);
201 firstblockposn = 12;
202 ci->memset(&format, 0, sizeof(struct pcm_format));
203 format.is_signed = true;
204 format.is_little_endian = true;
206 decodedsamples = 0;
207 codec = 0;
209 /* iterate over WAVE chunks until the 'data' chunk, which should be after the 'fmt ' chunk */
210 while (true) {
211 /* get WAVE chunk header */
212 buf = ci->request_buffer(&n, 1024);
213 if (n < 8) {
214 DEBUGF("data chunk request_buffer error\n");
215 /* no more chunks, 'data' chunk must not have been found */
216 status = CODEC_ERROR;
217 goto done;
220 /* chunkSize */
221 i = (buf[4]|(buf[5]<<8)|(buf[6]<<16)|(buf[7]<<24));
222 if (memcmp(buf, "fmt ", 4) == 0) {
223 if (i < 16) {
224 DEBUGF("CODEC_ERROR: 'fmt ' chunk size=%lu < 16\n",
225 (unsigned long)i);
226 status = CODEC_ERROR;
227 goto done;
229 /* wFormatTag */
230 format.formattag=buf[8]|(buf[9]<<8);
231 /* wChannels */
232 format.channels=buf[10]|(buf[11]<<8);
233 /* skipping dwSamplesPerSec */
234 /* dwAvgBytesPerSec */
235 format.avgbytespersec = buf[16]|(buf[17]<<8)|(buf[18]<<16)|(buf[19]<<24);
236 /* wBlockAlign */
237 format.blockalign=buf[20]|(buf[21]<<8);
238 /* wBitsPerSample */
239 format.bitspersample=buf[22]|(buf[23]<<8);
240 if (format.formattag != WAVE_FORMAT_PCM) {
241 if (i < 18) {
242 /* this is not a fatal error with some formats,
243 * we'll see later if we can't decode it */
244 DEBUGF("CODEC_WARNING: non-PCM WAVE (formattag=0x%x) "
245 "doesn't have ext. fmt descr (chunksize=%d<18).\n",
246 (unsigned int)format.formattag, (int)i);
248 else
250 format.size = buf[24]|(buf[25]<<8);
251 if (format.formattag != WAVE_FORMAT_EXTENSIBLE)
252 format.samplesperblock = buf[26]|(buf[27]<<8);
253 else {
254 if (format.size < 22) {
255 DEBUGF("CODEC_ERROR: WAVE_FORMAT_EXTENSIBLE is "
256 "missing extension\n");
257 status = CODEC_ERROR;
258 goto done;
260 /* wValidBitsPerSample */
261 format.bitspersample = buf[26]|(buf[27]<<8);
262 /* skipping dwChannelMask (4bytes) */
263 /* SubFormat (only get the first two bytes) */
264 format.formattag = buf[32]|(buf[33]<<8);
269 /* msadpcm specific */
270 if (format.formattag == WAVE_FORMAT_ADPCM)
272 if (!set_msadpcm_coeffs(buf))
274 status = CODEC_ERROR;
275 goto done;
279 /* get codec */
280 codec = get_wave_codec(format.formattag);
281 if (!codec)
283 DEBUGF("CODEC_ERROR: unsupported wave format 0x%x\n",
284 (unsigned int) format.formattag);
285 status = CODEC_ERROR;
286 goto done;
289 /* riff 8bit linear pcm is unsigned */
290 if (format.formattag == WAVE_FORMAT_PCM && format.bitspersample == 8)
291 format.is_signed = false;
293 /* set format, parse codec specific tag, check format, and calculate chunk size */
294 if (!codec->set_format(&format))
296 status = CODEC_ERROR;
297 goto done;
299 } else if (memcmp(buf, "data", 4) == 0) {
300 format.numbytes = i;
301 /* advance to start of data */
302 ci->advance_buffer(8);
303 firstblockposn += 8;
304 break;
305 } else if (memcmp(buf, "fact", 4) == 0) {
306 /* dwSampleLength */
307 if (i >= 4)
308 format.totalsamples =
309 (buf[8]|(buf[9]<<8)|(buf[10]<<16)|(buf[11]<<24));
310 } else {
311 DEBUGF("unknown WAVE chunk: '%c%c%c%c', size=%lu\n",
312 buf[0], buf[1], buf[2], buf[3], (unsigned long)i);
315 /* go to next chunk (even chunk sizes must be padded) */
316 if (i & 0x01)
317 i++;
318 ci->advance_buffer(i+8);
319 firstblockposn += i + 8;
322 if (!codec)
324 DEBUGF("CODEC_ERROR: 'fmt ' chunk not found\n");
325 status = CODEC_ERROR;
326 goto done;
329 /* common format check */
330 if (format.channels == 0) {
331 DEBUGF("CODEC_ERROR: 'fmt ' chunk not found or 0-channels file\n");
332 status = CODEC_ERROR;
333 goto done;
335 if (format.samplesperblock == 0) {
336 DEBUGF("CODEC_ERROR: 'fmt ' chunk not found or 0-wSamplesPerBlock file\n");
337 status = CODEC_ERROR;
338 goto done;
340 if (format.blockalign == 0)
342 DEBUGF("CODEC_ERROR: 'fmt ' chunk not found or 0-blockalign file\n");
343 i = CODEC_ERROR;
344 goto done;
346 if (format.numbytes == 0) {
347 DEBUGF("CODEC_ERROR: 'data' chunk not found or has zero-length\n");
348 status = CODEC_ERROR;
349 goto done;
352 /* check chunksize */
353 if ((format.chunksize / format.blockalign) * format.samplesperblock * format.channels
354 > PCM_SAMPLE_SIZE)
355 format.chunksize = (PCM_SAMPLE_SIZE / format.blockalign) * format.blockalign;
356 if (format.chunksize == 0)
358 DEBUGF("CODEC_ERROR: chunksize is 0\n");
359 i = CODEC_ERROR;
360 goto done;
363 ci->configure(DSP_SWITCH_FREQUENCY, ci->id3->frequency);
364 if (format.channels == 2) {
365 ci->configure(DSP_SET_STEREO_MODE, STEREO_INTERLEAVED);
366 } else if (format.channels == 1) {
367 ci->configure(DSP_SET_STEREO_MODE, STEREO_MONO);
368 } else {
369 DEBUGF("CODEC_ERROR: more than 2 channels\n");
370 status = CODEC_ERROR;
371 goto done;
374 /* make sure we're at the correct offset */
375 if (bytesdone > (uint32_t) firstblockposn) {
376 /* Round down to previous block */
377 uint32_t offset = bytesdone - bytesdone % format.blockalign;
379 ci->advance_buffer(offset-firstblockposn);
380 bytesdone = offset - firstblockposn;
381 } else {
382 /* already where we need to be */
383 bytesdone = 0;
386 /* The main decoder loop */
387 endofstream = 0;
389 while (!endofstream) {
390 ci->yield();
391 if (ci->stop_codec || ci->new_track) {
392 break;
395 if (ci->seek_time) {
396 struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, &read_buffer);
398 decodedsamples = newpos->samples;
399 if (newpos->pos > format.numbytes)
400 break;
401 if (ci->seek_buffer(firstblockposn + newpos->pos))
403 bytesdone = newpos->pos;
405 ci->seek_complete();
408 wavbuf = (uint8_t *)ci->request_buffer(&n, format.chunksize);
409 if (n == 0)
410 break; /* End of stream */
411 if (bytesdone + n > format.numbytes) {
412 n = format.numbytes - bytesdone;
413 endofstream = 1;
416 status = codec->decode(wavbuf, n, samples, &bufcount);
417 if (status == CODEC_ERROR)
419 DEBUGF("codec error\n");
420 goto done;
423 ci->pcmbuf_insert(samples, NULL, bufcount);
424 ci->advance_buffer(n);
425 bytesdone += n;
426 decodedsamples += bufcount;
428 if (bytesdone >= format.numbytes)
429 endofstream = 1;
430 ci->set_elapsed(decodedsamples*1000LL/ci->id3->frequency);
432 status = CODEC_OK;
434 done:
435 if (ci->request_next_track())
436 goto next_track;
438 exit:
439 return status;