2005-06-11 10:08:17 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Dave Chapman
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* 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-06-11 10:08:17 +00:00
|
|
|
#include <inttypes.h> /* Needed by a52.h */
|
|
|
|
#include <codecs/liba52/config-a52.h>
|
|
|
|
#include <codecs/liba52/a52.h>
|
|
|
|
|
2006-01-18 00:05:14 +00:00
|
|
|
CODEC_HEADER
|
|
|
|
|
2005-06-11 10:08:17 +00:00
|
|
|
#define BUFFER_SIZE 4096
|
|
|
|
|
2005-10-22 09:10:51 +00:00
|
|
|
#define A52_SAMPLESPERFRAME (6*256)
|
|
|
|
|
2005-10-10 23:37:30 +00:00
|
|
|
static a52_state_t *state;
|
2005-06-11 10:08:17 +00:00
|
|
|
unsigned long samplesdone;
|
|
|
|
unsigned long frequency;
|
|
|
|
|
2005-10-10 23:37:30 +00:00
|
|
|
/* used outside liba52 */
|
2005-10-27 11:32:02 +00:00
|
|
|
static uint8_t buf[3840] IBSS_ATTR;
|
2005-06-11 10:08:17 +00:00
|
|
|
|
2007-02-07 00:51:50 +00:00
|
|
|
static inline void output_audio(sample_t *samples)
|
2005-06-11 10:08:17 +00:00
|
|
|
{
|
2007-02-07 01:30:05 +00:00
|
|
|
ci->yield();
|
2007-02-07 00:51:50 +00:00
|
|
|
ci->pcmbuf_insert(&samples[0], &samples[256], 256);
|
2005-06-11 10:08:17 +00:00
|
|
|
}
|
|
|
|
|
2005-10-10 23:37:30 +00:00
|
|
|
void a52_decode_data(uint8_t *start, uint8_t *end)
|
2005-06-11 10:08:17 +00:00
|
|
|
{
|
2005-10-10 23:37:30 +00:00
|
|
|
static uint8_t *bufptr = buf;
|
|
|
|
static uint8_t *bufpos = buf + 7;
|
|
|
|
/*
|
|
|
|
* sample_rate and flags are static because this routine could
|
|
|
|
* exit between the a52_syncinfo() and the ao_setup(), and we want
|
|
|
|
* to have the same values when we get back !
|
|
|
|
*/
|
|
|
|
static int sample_rate;
|
|
|
|
static int flags;
|
|
|
|
int bit_rate;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
len = end - start;
|
|
|
|
if (!len)
|
|
|
|
break;
|
|
|
|
if (len > bufpos - bufptr)
|
|
|
|
len = bufpos - bufptr;
|
|
|
|
memcpy(bufptr, start, len);
|
|
|
|
bufptr += len;
|
|
|
|
start += len;
|
|
|
|
if (bufptr == bufpos) {
|
|
|
|
if (bufpos == buf + 7) {
|
|
|
|
int length;
|
|
|
|
|
|
|
|
length = a52_syncinfo(buf, &flags, &sample_rate, &bit_rate);
|
|
|
|
if (!length) {
|
|
|
|
//DEBUGF("skip\n");
|
|
|
|
for (bufptr = buf; bufptr < buf + 6; bufptr++)
|
|
|
|
bufptr[0] = bufptr[1];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
bufpos = buf + length;
|
|
|
|
} else {
|
2006-02-13 19:51:53 +00:00
|
|
|
/* Unity gain is 1 << 26, and we want to end up on 28 bits
|
|
|
|
of precision instead of the default 30.
|
|
|
|
*/
|
|
|
|
level_t level = 1 << 24;
|
2005-10-10 23:37:30 +00:00
|
|
|
sample_t bias = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* This is the configuration for the downmixing: */
|
2005-10-22 11:37:16 +00:00
|
|
|
flags = A52_STEREO | A52_ADJUST_LEVEL;
|
2005-10-10 23:37:30 +00:00
|
|
|
|
|
|
|
if (a52_frame(state, buf, &flags, &level, bias))
|
|
|
|
goto error;
|
2005-10-11 23:06:32 +00:00
|
|
|
a52_dynrng(state, NULL, NULL);
|
2005-10-10 23:37:30 +00:00
|
|
|
frequency = sample_rate;
|
|
|
|
|
|
|
|
/* An A52 frame consists of 6 blocks of 256 samples
|
|
|
|
So we decode and output them one block at a time */
|
|
|
|
for (i = 0; i < 6; i++) {
|
|
|
|
if (a52_block(state))
|
|
|
|
goto error;
|
2005-10-22 11:37:16 +00:00
|
|
|
output_audio(a52_samples(state));
|
2005-10-10 23:37:30 +00:00
|
|
|
samplesdone += 256;
|
|
|
|
}
|
|
|
|
ci->set_elapsed(samplesdone/(frequency/1000));
|
|
|
|
bufptr = buf;
|
|
|
|
bufpos = buf + 7;
|
|
|
|
continue;
|
|
|
|
error:
|
|
|
|
//logf("Error decoding A52 stream\n");
|
|
|
|
bufptr = buf;
|
|
|
|
bufpos = buf + 7;
|
|
|
|
}
|
|
|
|
}
|
2005-06-11 10:08:17 +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-11 10:08:17 +00:00
|
|
|
{
|
2006-03-24 14:02:27 +00:00
|
|
|
size_t n;
|
2005-10-10 23:37:30 +00:00
|
|
|
unsigned char *filebuf;
|
2005-10-22 09:10:51 +00:00
|
|
|
int sample_loc;
|
2006-01-18 20:22:03 +00:00
|
|
|
int retval;
|
2005-10-10 23:37:30 +00:00
|
|
|
|
|
|
|
/* Generic codec initialisation */
|
2007-02-10 16:34:16 +00:00
|
|
|
ci->configure(DSP_SET_STEREO_MODE, STEREO_NONINTERLEAVED);
|
|
|
|
ci->configure(DSP_SET_SAMPLE_DEPTH, 28);
|
|
|
|
ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, 1024*128);
|
2005-10-10 23:37:30 +00:00
|
|
|
|
|
|
|
next_track:
|
2006-11-26 18:31:41 +00:00
|
|
|
if (codec_init()) {
|
2006-01-18 20:22:03 +00:00
|
|
|
retval = CODEC_ERROR;
|
|
|
|
goto exit;
|
|
|
|
}
|
2005-10-10 23:37:30 +00:00
|
|
|
|
|
|
|
while (!ci->taginfo_ready)
|
|
|
|
ci->yield();
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2007-02-10 16:34:16 +00:00
|
|
|
ci->configure(DSP_SWITCH_FREQUENCY, ci->id3->frequency);
|
2005-06-26 19:41:29 +00:00
|
|
|
|
2005-10-10 23:37:30 +00:00
|
|
|
/* Intialise the A52 decoder and check for success */
|
|
|
|
state = a52_init(0);
|
2005-06-11 10:08:17 +00:00
|
|
|
|
2005-10-10 23:37:30 +00:00
|
|
|
/* The main decoding loop */
|
2006-07-26 19:08:16 +00:00
|
|
|
if (ci->id3->offset) {
|
|
|
|
if (ci->seek_buffer(ci->id3->offset)) {
|
|
|
|
samplesdone = (ci->id3->offset / ci->id3->bytesperframe) *
|
|
|
|
A52_SAMPLESPERFRAME;
|
|
|
|
ci->set_elapsed(samplesdone/(ci->id3->frequency / 1000));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
samplesdone = 0;
|
|
|
|
}
|
|
|
|
|
2005-10-10 23:37:30 +00:00
|
|
|
while (1) {
|
2006-04-15 02:03:11 +00:00
|
|
|
if (ci->stop_codec || ci->new_track)
|
2005-10-10 23:37:30 +00:00
|
|
|
break;
|
2005-06-11 10:08:17 +00:00
|
|
|
|
2005-10-22 09:10:51 +00:00
|
|
|
if (ci->seek_time) {
|
2005-11-06 19:18:04 +00:00
|
|
|
sample_loc = (ci->seek_time - 1)/1000 * ci->id3->frequency;
|
2005-10-22 09:10:51 +00:00
|
|
|
|
|
|
|
if (ci->seek_buffer((sample_loc/A52_SAMPLESPERFRAME)*ci->id3->bytesperframe)) {
|
|
|
|
samplesdone = sample_loc;
|
|
|
|
ci->set_elapsed(samplesdone/(ci->id3->frequency/1000));
|
|
|
|
}
|
2005-11-02 00:09:42 +00:00
|
|
|
ci->seek_complete();
|
2005-10-22 09:10:51 +00:00
|
|
|
}
|
|
|
|
|
2005-10-10 23:37:30 +00:00
|
|
|
filebuf = ci->request_buffer(&n, BUFFER_SIZE);
|
2005-06-11 10:08:17 +00:00
|
|
|
|
2005-10-10 23:37:30 +00:00
|
|
|
if (n == 0) /* End of Stream */
|
|
|
|
break;
|
2005-06-11 10:08:17 +00:00
|
|
|
|
2005-10-10 23:37:30 +00:00
|
|
|
a52_decode_data(filebuf, filebuf + n);
|
|
|
|
ci->advance_buffer(n);
|
|
|
|
}
|
2006-04-22 14:40:13 +00:00
|
|
|
retval = CODEC_OK;
|
|
|
|
|
2005-10-10 23:37:30 +00:00
|
|
|
if (ci->request_next_track())
|
|
|
|
goto next_track;
|
2006-04-22 14:40:13 +00:00
|
|
|
|
2006-01-18 20:22:03 +00:00
|
|
|
exit:
|
2005-10-10 23:37:30 +00:00
|
|
|
a52_free(state);
|
2006-01-18 20:22:03 +00:00
|
|
|
return retval;
|
2005-06-11 10:08:17 +00:00
|
|
|
}
|