2005-06-10 18:08:08 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Dave Chapman
|
2010-01-27 17:25:10 +00:00
|
|
|
* Copyright (C) 2009 Yoshihisa Uchida
|
2005-06-10 18:08:08 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2005-06-10 18:08:08 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2005-10-13 11:32:52 +00:00
|
|
|
#include "codeclib.h"
|
2005-09-22 19:36:25 +00:00
|
|
|
#include "inttypes.h"
|
2010-01-27 17:25:10 +00:00
|
|
|
#include "codecs/libpcm/support_formats.h"
|
2005-06-10 18:08:08 +00:00
|
|
|
|
2006-01-18 00:05:14 +00:00
|
|
|
CODEC_HEADER
|
|
|
|
|
2010-01-27 17:25:10 +00:00
|
|
|
/* WAVE (RIFF) codec:
|
2005-09-22 19:36:25 +00:00
|
|
|
*
|
|
|
|
* For a good documentation on WAVE files, see:
|
|
|
|
* http://www.tsp.ece.mcgill.ca/MMSP/Documents/AudioFormats/WAVE/WAVE.html
|
|
|
|
* and
|
|
|
|
* http://www.sonicspot.com/guide/wavefiles.html
|
|
|
|
*
|
|
|
|
* For sample WAV files, see:
|
|
|
|
* http://www.tsp.ece.mcgill.ca/MMSP/Documents/AudioFormats/WAVE/Samples.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-01-27 17:25:10 +00:00
|
|
|
static int32_t samples[PCM_CHUNK_SIZE] IBSS_ATTR;
|
|
|
|
|
|
|
|
/* This codec support WAVE files with the following formats: */
|
2005-09-22 19:36:25 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
WAVE_FORMAT_UNKNOWN = 0x0000, /* Microsoft Unknown Wave Format */
|
|
|
|
WAVE_FORMAT_PCM = 0x0001, /* Microsoft PCM Format */
|
|
|
|
WAVE_FORMAT_ALAW = 0x0006, /* Microsoft ALAW */
|
|
|
|
WAVE_FORMAT_MULAW = 0x0007, /* Microsoft MULAW */
|
|
|
|
WAVE_FORMAT_DVI_ADPCM = 0x0011, /* Intel's DVI ADPCM */
|
|
|
|
IBM_FORMAT_MULAW = 0x0101, /* same as WAVE_FORMAT_MULAW */
|
|
|
|
IBM_FORMAT_ALAW = 0x0102, /* same as WAVE_FORMAT_ALAW */
|
|
|
|
WAVE_FORMAT_EXTENSIBLE = 0xFFFE
|
|
|
|
};
|
|
|
|
|
2010-01-27 17:25:10 +00:00
|
|
|
const struct pcm_entry wave_codecs[] = {
|
|
|
|
{ WAVE_FORMAT_UNKNOWN, 0 },
|
|
|
|
{ WAVE_FORMAT_PCM, get_linear_pcm_codec },
|
|
|
|
{ WAVE_FORMAT_ALAW, get_itut_g711_alaw_codec },
|
|
|
|
{ WAVE_FORMAT_MULAW, get_itut_g711_mulaw_codec },
|
|
|
|
{ WAVE_FORMAT_DVI_ADPCM, get_dvi_adpcm_codec },
|
|
|
|
{ IBM_FORMAT_MULAW, get_itut_g711_mulaw_codec },
|
|
|
|
{ IBM_FORMAT_ALAW, get_itut_g711_alaw_codec },
|
2005-09-22 19:36:25 +00:00
|
|
|
};
|
|
|
|
|
2010-01-27 17:25:10 +00:00
|
|
|
#define NUM_FORMATS 7
|
|
|
|
|
|
|
|
static const struct pcm_codec *get_wave_codec(uint32_t formattag)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < NUM_FORMATS; i++)
|
|
|
|
{
|
|
|
|
if (wave_codecs[i].format_tag == formattag)
|
|
|
|
{
|
|
|
|
if (wave_codecs[i].get_codec)
|
|
|
|
return wave_codecs[i].get_codec();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2005-09-22 19:36:25 +00:00
|
|
|
|
|
|
|
|
2005-06-22 19:41:30 +00:00
|
|
|
/* this is the codec entry point */
|
2006-11-26 18:31:41 +00:00
|
|
|
enum codec_status codec_main(void)
|
2005-06-10 18:08:08 +00:00
|
|
|
{
|
2010-01-27 17:25:10 +00:00
|
|
|
int status = CODEC_OK;
|
|
|
|
struct pcm_format format;
|
|
|
|
uint32_t bytesdone, decodedbytes;
|
2006-03-20 20:32:19 +00:00
|
|
|
uint32_t i;
|
2007-02-07 00:51:50 +00:00
|
|
|
size_t n;
|
|
|
|
int bufcount;
|
2006-03-20 20:32:19 +00:00
|
|
|
int endofstream;
|
|
|
|
unsigned char *buf;
|
|
|
|
uint8_t *wavbuf;
|
|
|
|
off_t firstblockposn; /* position of the first block in file */
|
2010-01-27 17:25:10 +00:00
|
|
|
const struct pcm_codec *codec;
|
|
|
|
|
2006-03-20 20:32:19 +00:00
|
|
|
/* Generic codec initialisation */
|
2007-02-10 16:34:16 +00:00
|
|
|
ci->configure(DSP_SET_SAMPLE_DEPTH, 28);
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2006-03-20 20:32:19 +00:00
|
|
|
next_track:
|
2006-11-26 18:31:41 +00:00
|
|
|
if (codec_init()) {
|
2010-01-27 17:25:10 +00:00
|
|
|
DEBUGF("codec_init() error\n");
|
|
|
|
status = CODEC_ERROR;
|
2006-03-20 20:32:19 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
2005-06-10 18:08:08 +00:00
|
|
|
|
2006-08-23 08:19:29 +00:00
|
|
|
while (!*ci->taginfo_ready && !ci->stop_codec)
|
|
|
|
ci->sleep(1);
|
2007-02-26 17:15:04 +00:00
|
|
|
|
|
|
|
codec_set_replaygain(ci->id3);
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2006-08-23 08:19:29 +00:00
|
|
|
/* Need to save offset for later use (cleared indirectly by advance_buffer) */
|
|
|
|
bytesdone = ci->id3->offset;
|
|
|
|
|
2006-06-27 22:27:21 +00:00
|
|
|
/* get RIFF chunk header */
|
|
|
|
buf = ci->request_buffer(&n, 12);
|
|
|
|
if (n < 12) {
|
2010-01-27 17:25:10 +00:00
|
|
|
DEBUGF("request_buffer error\n");
|
|
|
|
status = CODEC_ERROR;
|
2006-04-22 14:40:13 +00:00
|
|
|
goto done;
|
2006-03-20 20:32:19 +00:00
|
|
|
}
|
|
|
|
if ((memcmp(buf, "RIFF", 4) != 0) || (memcmp(&buf[8], "WAVE", 4) != 0)) {
|
2010-01-27 17:25:10 +00:00
|
|
|
status = CODEC_ERROR;
|
2006-04-22 14:40:13 +00:00
|
|
|
goto done;
|
2005-06-10 18:08:08 +00:00
|
|
|
}
|
|
|
|
|
2006-06-27 22:27:21 +00:00
|
|
|
/* advance to first WAVE chunk */
|
|
|
|
ci->advance_buffer(12);
|
|
|
|
|
|
|
|
firstblockposn = 12;
|
2010-01-27 17:25:10 +00:00
|
|
|
ci->memset(&format, 0, sizeof(struct pcm_format));
|
|
|
|
format.is_signed = true;
|
|
|
|
format.is_little_endian = true;
|
|
|
|
|
|
|
|
decodedbytes = 0;
|
|
|
|
codec = 0;
|
2006-06-27 22:27:21 +00:00
|
|
|
|
|
|
|
/* iterate over WAVE chunks until the 'data' chunk, which should be after the 'fmt ' chunk */
|
|
|
|
while (true) {
|
|
|
|
/* get WAVE chunk header */
|
|
|
|
buf = ci->request_buffer(&n, 1024);
|
|
|
|
if (n < 8) {
|
2010-01-27 17:25:10 +00:00
|
|
|
DEBUGF("data chunk request_buffer error\n");
|
2006-06-27 22:27:21 +00:00
|
|
|
/* no more chunks, 'data' chunk must not have been found */
|
2010-01-27 17:25:10 +00:00
|
|
|
status = CODEC_ERROR;
|
2006-06-27 22:27:21 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2006-03-20 20:32:19 +00:00
|
|
|
/* chunkSize */
|
|
|
|
i = (buf[4]|(buf[5]<<8)|(buf[6]<<16)|(buf[7]<<24));
|
|
|
|
if (memcmp(buf, "fmt ", 4) == 0) {
|
|
|
|
if (i < 16) {
|
2007-03-17 10:50:58 +00:00
|
|
|
DEBUGF("CODEC_ERROR: 'fmt ' chunk size=%lu < 16\n",
|
|
|
|
(unsigned long)i);
|
2010-01-27 17:25:10 +00:00
|
|
|
status = CODEC_ERROR;
|
2006-04-22 14:40:13 +00:00
|
|
|
goto done;
|
2006-03-20 20:32:19 +00:00
|
|
|
}
|
|
|
|
/* wFormatTag */
|
2010-01-27 17:25:10 +00:00
|
|
|
format.formattag=buf[8]|(buf[9]<<8);
|
2006-03-20 20:32:19 +00:00
|
|
|
/* wChannels */
|
2010-01-27 17:25:10 +00:00
|
|
|
format.channels=buf[10]|(buf[11]<<8);
|
2006-03-20 20:32:19 +00:00
|
|
|
/* skipping dwSamplesPerSec */
|
|
|
|
/* dwAvgBytesPerSec */
|
2010-01-27 17:25:10 +00:00
|
|
|
format.avgbytespersec = buf[16]|(buf[17]<<8)|(buf[18]<<16)|(buf[19]<<24);
|
2006-03-20 20:32:19 +00:00
|
|
|
/* wBlockAlign */
|
2010-01-27 17:25:10 +00:00
|
|
|
format.blockalign=buf[20]|(buf[21]<<8);
|
2006-03-20 20:32:19 +00:00
|
|
|
/* wBitsPerSample */
|
2010-01-27 17:25:10 +00:00
|
|
|
format.bitspersample=buf[22]|(buf[23]<<8);
|
|
|
|
if (format.formattag != WAVE_FORMAT_PCM) {
|
2006-03-20 20:32:19 +00:00
|
|
|
if (i < 18) {
|
|
|
|
/* this is not a fatal error with some formats,
|
|
|
|
* we'll see later if we can't decode it */
|
|
|
|
DEBUGF("CODEC_WARNING: non-PCM WAVE (formattag=0x%x) "
|
2010-01-27 18:05:28 +00:00
|
|
|
"doesn't have ext. fmt descr (chunksize=%d<18).\n",
|
|
|
|
(unsigned int)format.formattag, i);
|
2006-03-20 20:32:19 +00:00
|
|
|
}
|
2010-01-27 17:25:10 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
format.size = buf[24]|(buf[25]<<8);
|
|
|
|
if (format.formattag != WAVE_FORMAT_EXTENSIBLE)
|
|
|
|
format.samplesperblock = buf[26]|(buf[27]<<8);
|
|
|
|
else {
|
|
|
|
if (format.size < 22) {
|
|
|
|
DEBUGF("CODEC_ERROR: WAVE_FORMAT_EXTENSIBLE is "
|
|
|
|
"missing extension\n");
|
|
|
|
status = CODEC_ERROR;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
/* wValidBitsPerSample */
|
|
|
|
format.bitspersample = buf[26]|(buf[27]<<8);
|
|
|
|
/* skipping dwChannelMask (4bytes) */
|
|
|
|
/* SubFormat (only get the first two bytes) */
|
|
|
|
format.formattag = buf[32]|(buf[33]<<8);
|
2006-03-20 20:32:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-01-27 17:25:10 +00:00
|
|
|
|
|
|
|
/* get codec */
|
|
|
|
codec = get_wave_codec(format.formattag);
|
|
|
|
if (!codec)
|
|
|
|
{
|
2010-01-27 18:05:28 +00:00
|
|
|
DEBUGF("CODEC_ERROR: unsupported wave format %x\n",
|
|
|
|
(unsigned int) format.formattag);
|
2010-01-27 17:25:10 +00:00
|
|
|
status = CODEC_ERROR;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* riff 8bit linear pcm is unsigned */
|
|
|
|
if (format.formattag == WAVE_FORMAT_PCM && format.bitspersample == 8)
|
|
|
|
format.is_signed = false;
|
|
|
|
|
|
|
|
/* set format, parse codec specific tag, check format, and calculate chunk size */
|
|
|
|
if (!codec->set_format(&format, buf))
|
|
|
|
{
|
|
|
|
status = CODEC_ERROR;
|
|
|
|
goto done;
|
|
|
|
}
|
2006-03-20 20:32:19 +00:00
|
|
|
} else if (memcmp(buf, "data", 4) == 0) {
|
2010-01-27 17:25:10 +00:00
|
|
|
format.numbytes = i;
|
2006-06-27 22:27:21 +00:00
|
|
|
/* advance to start of data */
|
|
|
|
ci->advance_buffer(8);
|
|
|
|
firstblockposn += 8;
|
|
|
|
break;
|
2006-03-20 20:32:19 +00:00
|
|
|
} else if (memcmp(buf, "fact", 4) == 0) {
|
|
|
|
/* dwSampleLength */
|
|
|
|
if (i >= 4)
|
2010-01-27 17:25:10 +00:00
|
|
|
format.totalsamples =
|
|
|
|
(buf[8]|(buf[9]<<8)|(buf[10]<<16)|(buf[11]<<24));
|
2006-03-20 20:32:19 +00:00
|
|
|
} else {
|
|
|
|
DEBUGF("unknown WAVE chunk: '%c%c%c%c', size=%lu\n",
|
2007-03-17 10:50:58 +00:00
|
|
|
buf[0], buf[1], buf[2], buf[3], (unsigned long)i);
|
2006-03-20 20:32:19 +00:00
|
|
|
}
|
2006-06-27 22:27:21 +00:00
|
|
|
|
2006-03-20 20:32:19 +00:00
|
|
|
/* go to next chunk (even chunk sizes must be padded) */
|
|
|
|
if (i & 0x01)
|
|
|
|
i++;
|
2006-06-27 22:27:21 +00:00
|
|
|
ci->advance_buffer(i+8);
|
|
|
|
firstblockposn += i + 8;
|
2006-03-20 20:32:19 +00:00
|
|
|
}
|
2005-10-10 16:02:52 +00:00
|
|
|
|
2010-01-27 17:25:10 +00:00
|
|
|
if (!codec)
|
|
|
|
{
|
|
|
|
DEBUGF("CODEC_ERROR: 'fmt ' chunk not found\n");
|
|
|
|
status = CODEC_ERROR;
|
2006-04-22 14:40:13 +00:00
|
|
|
goto done;
|
2006-03-20 20:32:19 +00:00
|
|
|
}
|
2010-01-27 17:25:10 +00:00
|
|
|
|
|
|
|
/* common format check */
|
|
|
|
if (format.channels == 0) {
|
|
|
|
DEBUGF("CODEC_ERROR: 'fmt ' chunk not found or 0-channels file\n");
|
|
|
|
status = CODEC_ERROR;
|
2006-04-22 14:40:13 +00:00
|
|
|
goto done;
|
2006-03-20 20:32:19 +00:00
|
|
|
}
|
2010-01-27 17:25:10 +00:00
|
|
|
if (format.numbytes == 0) {
|
|
|
|
DEBUGF("CODEC_ERROR: 'data' chunk not found or has zero-length\n");
|
|
|
|
status = CODEC_ERROR;
|
2006-04-22 14:40:13 +00:00
|
|
|
goto done;
|
2005-09-22 19:36:25 +00:00
|
|
|
}
|
|
|
|
|
2007-02-10 16:34:16 +00:00
|
|
|
ci->configure(DSP_SWITCH_FREQUENCY, ci->id3->frequency);
|
2010-01-27 17:25:10 +00:00
|
|
|
if (format.channels == 2) {
|
2007-02-10 16:34:16 +00:00
|
|
|
ci->configure(DSP_SET_STEREO_MODE, STEREO_INTERLEAVED);
|
2010-01-27 17:25:10 +00:00
|
|
|
} else if (format.channels == 1) {
|
2007-02-10 16:34:16 +00:00
|
|
|
ci->configure(DSP_SET_STEREO_MODE, STEREO_MONO);
|
2006-03-20 20:32:19 +00:00
|
|
|
} else {
|
|
|
|
DEBUGF("CODEC_ERROR: more than 2 channels\n");
|
2010-01-27 17:25:10 +00:00
|
|
|
status = CODEC_ERROR;
|
2006-04-22 14:40:13 +00:00
|
|
|
goto done;
|
2006-03-20 20:32:19 +00:00
|
|
|
}
|
2005-06-10 18:08:08 +00:00
|
|
|
|
2006-06-27 22:27:21 +00:00
|
|
|
/* make sure we're at the correct offset */
|
2006-08-23 08:19:29 +00:00
|
|
|
if (bytesdone > (uint32_t) firstblockposn) {
|
2006-06-04 15:04:03 +00:00
|
|
|
/* Round down to previous block */
|
2010-01-27 17:25:10 +00:00
|
|
|
uint32_t offset = bytesdone - bytesdone % format.blockalign;
|
2006-06-04 15:04:03 +00:00
|
|
|
|
2006-06-27 22:27:21 +00:00
|
|
|
ci->advance_buffer(offset-firstblockposn);
|
2006-06-04 15:04:03 +00:00
|
|
|
bytesdone = offset - firstblockposn;
|
|
|
|
} else {
|
2006-06-27 22:27:21 +00:00
|
|
|
/* already where we need to be */
|
2006-06-04 15:04:03 +00:00
|
|
|
bytesdone = 0;
|
|
|
|
}
|
2006-03-20 20:32:19 +00:00
|
|
|
|
|
|
|
/* The main decoder loop */
|
|
|
|
endofstream = 0;
|
2005-06-10 18:08:08 +00:00
|
|
|
|
2006-03-20 20:32:19 +00:00
|
|
|
while (!endofstream) {
|
|
|
|
ci->yield();
|
2006-04-15 02:03:11 +00:00
|
|
|
if (ci->stop_codec || ci->new_track) {
|
2006-03-20 20:32:19 +00:00
|
|
|
break;
|
2005-09-22 19:36:25 +00:00
|
|
|
}
|
2006-03-20 20:32:19 +00:00
|
|
|
|
|
|
|
if (ci->seek_time) {
|
2010-01-27 17:25:10 +00:00
|
|
|
uint32_t newpos = codec->get_seek_pos(ci->seek_time);
|
2006-03-20 20:32:19 +00:00
|
|
|
|
2010-01-27 17:25:10 +00:00
|
|
|
if (newpos > format.numbytes)
|
2006-03-20 20:32:19 +00:00
|
|
|
break;
|
|
|
|
if (ci->seek_buffer(firstblockposn + newpos))
|
2010-01-27 17:25:10 +00:00
|
|
|
{
|
2006-03-20 20:32:19 +00:00
|
|
|
bytesdone = newpos;
|
2010-01-27 17:25:10 +00:00
|
|
|
}
|
2006-03-20 20:32:19 +00:00
|
|
|
ci->seek_complete();
|
2005-09-22 19:36:25 +00:00
|
|
|
}
|
2006-03-20 20:32:19 +00:00
|
|
|
|
2010-01-27 17:25:10 +00:00
|
|
|
wavbuf = (uint8_t *)ci->request_buffer(&n, format.chunksize);
|
2006-03-20 20:32:19 +00:00
|
|
|
if (n == 0)
|
|
|
|
break; /* End of stream */
|
2010-01-27 17:25:10 +00:00
|
|
|
if (bytesdone + n > format.numbytes) {
|
|
|
|
n = format.numbytes - bytesdone;
|
2006-03-20 20:32:19 +00:00
|
|
|
endofstream = 1;
|
2005-09-22 19:36:25 +00:00
|
|
|
}
|
2006-03-20 20:32:19 +00:00
|
|
|
|
2010-01-27 17:25:10 +00:00
|
|
|
status = codec->decode(wavbuf, n, samples, &bufcount);
|
|
|
|
if (status == CODEC_ERROR)
|
|
|
|
{
|
|
|
|
DEBUGF("codec error\n");
|
2006-04-22 14:40:13 +00:00
|
|
|
goto done;
|
2005-09-22 19:36:25 +00:00
|
|
|
}
|
2005-06-10 18:08:08 +00:00
|
|
|
|
2007-02-07 00:51:50 +00:00
|
|
|
ci->pcmbuf_insert(samples, NULL, bufcount);
|
2006-03-20 20:32:19 +00:00
|
|
|
ci->advance_buffer(n);
|
|
|
|
bytesdone += n;
|
2010-01-27 17:25:10 +00:00
|
|
|
decodedbytes += bufcount;
|
|
|
|
|
|
|
|
if (bytesdone >= format.numbytes)
|
2006-03-20 20:32:19 +00:00
|
|
|
endofstream = 1;
|
2010-01-27 17:25:10 +00:00
|
|
|
ci->set_elapsed(decodedbytes*1000LL/ci->id3->frequency);
|
2005-09-22 19:36:25 +00:00
|
|
|
}
|
2010-01-27 17:25:10 +00:00
|
|
|
status = CODEC_OK;
|
2005-09-22 19:36:25 +00:00
|
|
|
|
2006-04-22 14:40:13 +00:00
|
|
|
done:
|
2006-03-20 20:32:19 +00:00
|
|
|
if (ci->request_next_track())
|
|
|
|
goto next_track;
|
2005-06-10 18:08:08 +00:00
|
|
|
|
2006-01-18 20:22:03 +00:00
|
|
|
exit:
|
2010-01-27 17:25:10 +00:00
|
|
|
return status;
|
2005-06-10 18:08:08 +00:00
|
|
|
}
|