2005-06-22 19:41:30 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2002 Bj<EFBFBD>rn Stenberg
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
#include "kernel.h"
|
|
|
|
|
#include "codecs.h"
|
|
|
|
|
|
|
|
|
|
#include "Tremor/ivorbisfile.h"
|
2005-07-05 08:43:36 +00:00
|
|
|
|
#include "Tremor/ogg.h"
|
2005-06-22 19:41:30 +00:00
|
|
|
|
#include "playback.h"
|
2005-06-26 19:41:29 +00:00
|
|
|
|
#include "dsp.h"
|
2005-06-22 19:41:30 +00:00
|
|
|
|
#include "lib/codeclib.h"
|
|
|
|
|
|
|
|
|
|
static struct codec_api* rb;
|
|
|
|
|
|
|
|
|
|
/* Some standard functions and variables needed by Tremor */
|
|
|
|
|
|
|
|
|
|
int errno;
|
|
|
|
|
|
|
|
|
|
size_t strlen(const char *s)
|
|
|
|
|
{
|
|
|
|
|
return(rb->strlen(s));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char *strcpy(char *dest, const char *src)
|
|
|
|
|
{
|
|
|
|
|
return(rb->strcpy(dest,src));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char *strcat(char *dest, const char *src)
|
|
|
|
|
{
|
|
|
|
|
return(rb->strcat(dest,src));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t read_handler(void *ptr, size_t size, size_t nmemb, void *datasource)
|
|
|
|
|
{
|
2005-06-22 19:55:09 +00:00
|
|
|
|
(void)datasource;
|
2005-06-22 19:41:30 +00:00
|
|
|
|
return rb->read_filebuf(ptr, nmemb*size);
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-05 08:43:36 +00:00
|
|
|
|
int initial_seek_handler(void *datasource, ogg_int64_t offset, int whence) {
|
2005-06-22 19:41:30 +00:00
|
|
|
|
(void)datasource;
|
|
|
|
|
(void)offset;
|
|
|
|
|
(void)whence;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-05 08:43:36 +00:00
|
|
|
|
int seek_handler(void *datasource, ogg_int64_t offset, int whence)
|
|
|
|
|
{
|
|
|
|
|
(void)datasource;
|
|
|
|
|
|
|
|
|
|
if ( whence == SEEK_CUR ) {
|
|
|
|
|
offset += rb->curpos;
|
|
|
|
|
} else if ( whence == SEEK_END ) {
|
|
|
|
|
offset += rb->filesize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (rb->seek_buffer(offset)) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 19:41:30 +00:00
|
|
|
|
int close_handler(void *datasource)
|
|
|
|
|
{
|
|
|
|
|
(void)datasource;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
long tell_handler(void *datasource)
|
|
|
|
|
{
|
2005-06-22 19:55:09 +00:00
|
|
|
|
(void)datasource;
|
2005-06-22 19:41:30 +00:00
|
|
|
|
return rb->curpos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef USE_IRAM
|
|
|
|
|
extern char iramcopy[];
|
|
|
|
|
extern char iramstart[];
|
|
|
|
|
extern char iramend[];
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* reserve the PCM buffer in the IRAM area */
|
|
|
|
|
static char pcmbuf[4096] IDATA_ATTR;
|
|
|
|
|
|
|
|
|
|
/* this is the codec entry point */
|
2005-06-22 19:55:09 +00:00
|
|
|
|
enum codec_status codec_start(struct codec_api* api)
|
2005-06-22 19:41:30 +00:00
|
|
|
|
{
|
|
|
|
|
ov_callbacks callbacks;
|
|
|
|
|
OggVorbis_File vf;
|
|
|
|
|
vorbis_info* vi;
|
|
|
|
|
|
|
|
|
|
int error;
|
|
|
|
|
long n;
|
|
|
|
|
int current_section;
|
|
|
|
|
int eof;
|
2005-07-05 08:43:36 +00:00
|
|
|
|
ogg_int64_t vf_offsets[2];
|
|
|
|
|
ogg_int64_t vf_dataoffsets;
|
|
|
|
|
ogg_uint32_t vf_serialnos;
|
|
|
|
|
ogg_int64_t vf_pcmlengths[2];
|
|
|
|
|
int current_stereo_mode = -1;
|
2005-06-22 19:41:30 +00:00
|
|
|
|
|
|
|
|
|
TEST_CODEC_API(api);
|
|
|
|
|
|
|
|
|
|
/* if you are using a global api pointer, don't forget to copy it!
|
2005-07-05 08:43:36 +00:00
|
|
|
|
otherwise you will get lovely "I04: IllInstr" errors... :-) */
|
2005-06-22 19:41:30 +00:00
|
|
|
|
rb = api;
|
|
|
|
|
|
2005-07-05 08:43:36 +00:00
|
|
|
|
#ifdef USE_IRAM
|
2005-06-22 19:41:30 +00:00
|
|
|
|
rb->memcpy(iramstart, iramcopy, iramend-iramstart);
|
2005-07-05 08:43:36 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2005-06-22 19:41:30 +00:00
|
|
|
|
rb->configure(CODEC_SET_FILEBUF_LIMIT, (int *)(1024*1024*2));
|
|
|
|
|
rb->configure(CODEC_SET_FILEBUF_CHUNKSIZE, (int *)(1024*64));
|
2005-07-05 08:43:36 +00:00
|
|
|
|
|
2005-06-26 19:41:29 +00:00
|
|
|
|
rb->configure(DSP_DITHER, (bool *)false);
|
|
|
|
|
rb->configure(DSP_SET_SAMPLE_DEPTH, (int *)(16));
|
|
|
|
|
|
|
|
|
|
/* We need to flush reserver memory every track load. */
|
2005-06-22 19:41:30 +00:00
|
|
|
|
next_track:
|
|
|
|
|
if (codec_init(rb)) {
|
|
|
|
|
return CODEC_ERROR;
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-26 19:41:29 +00:00
|
|
|
|
while (!rb->taginfo_ready)
|
|
|
|
|
rb->yield();
|
|
|
|
|
|
|
|
|
|
if (rb->id3->frequency != NATIVE_FREQUENCY) {
|
|
|
|
|
rb->configure(DSP_SET_FREQUENCY, (long *)(rb->id3->frequency));
|
|
|
|
|
rb->configure(CODEC_DSP_ENABLE, (bool *)true);
|
|
|
|
|
} else {
|
|
|
|
|
rb->configure(CODEC_DSP_ENABLE, (bool *)false);
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 19:41:30 +00:00
|
|
|
|
/* Create a decoder instance */
|
|
|
|
|
callbacks.read_func=read_handler;
|
2005-07-05 08:43:36 +00:00
|
|
|
|
callbacks.seek_func=initial_seek_handler;
|
2005-06-22 19:41:30 +00:00
|
|
|
|
callbacks.tell_func=tell_handler;
|
|
|
|
|
callbacks.close_func=close_handler;
|
|
|
|
|
|
2005-07-05 08:43:36 +00:00
|
|
|
|
/* Open a non-seekable stream */
|
2005-06-22 19:41:30 +00:00
|
|
|
|
error=ov_open_callbacks(rb,&vf,NULL,0,callbacks);
|
|
|
|
|
|
2005-07-05 08:43:36 +00:00
|
|
|
|
/* If the non-seekable open was successful, we need to supply the missing
|
|
|
|
|
* data to make it seekable. This is a hack, but it's reasonable since we
|
|
|
|
|
* don't want to read the whole file into the buffer before we start
|
|
|
|
|
* playing. Using Tremor's seekable open routine would cause us to do
|
|
|
|
|
* this, so we pretend not to be seekable at first. Then we fill in the
|
|
|
|
|
* missing fields of vf with 1) information in rb->id3, and 2) info
|
|
|
|
|
* obtained by Tremor in the above ov_open call.
|
|
|
|
|
*
|
|
|
|
|
* Note that this assumes there is only ONE logical Vorbis bitstream in our
|
|
|
|
|
* physical Ogg bitstream. This is verified in metadata.c, well before we
|
|
|
|
|
* get here.
|
|
|
|
|
*/
|
|
|
|
|
if ( !error ) {
|
|
|
|
|
//rb->logf("no error");
|
|
|
|
|
/* FIXME Should these be dynamically allocated? */
|
|
|
|
|
vf.offsets = vf_offsets;
|
|
|
|
|
vf.dataoffsets = &vf_dataoffsets;
|
|
|
|
|
vf.serialnos = &vf_serialnos;
|
|
|
|
|
vf.pcmlengths = vf_pcmlengths;
|
|
|
|
|
|
|
|
|
|
vf.offsets[0] = 0;
|
|
|
|
|
vf.offsets[1] = rb->id3->filesize;
|
|
|
|
|
vf.dataoffsets[0] = vf.offset;
|
|
|
|
|
vf.pcmlengths[0] = 0;
|
|
|
|
|
vf.pcmlengths[1] = rb->id3->samples;
|
|
|
|
|
vf.serialnos[0] = vf.current_serialno;
|
|
|
|
|
vf.callbacks.seek_func=seek_handler;
|
|
|
|
|
vf.seekable = 1;
|
|
|
|
|
vf.offset = 58; /* length of Ogg header */
|
|
|
|
|
vf.end = rb->id3->filesize;
|
|
|
|
|
vf.ready_state = OPENED;
|
|
|
|
|
vf.links = 1;
|
|
|
|
|
|
|
|
|
|
/*if(ov_raw_seek(&vf,0)){
|
|
|
|
|
rb->logf("seek err");
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
//rb->logf("ov_open: %d", error);
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 19:41:30 +00:00
|
|
|
|
vi=ov_info(&vf,-1);
|
|
|
|
|
|
|
|
|
|
if (vi==NULL) {
|
2005-07-05 08:43:36 +00:00
|
|
|
|
//rb->splash(HZ*2, true, "Vorbis Error");
|
2005-06-22 19:41:30 +00:00
|
|
|
|
return CODEC_ERROR;
|
|
|
|
|
}
|
2005-07-05 08:43:36 +00:00
|
|
|
|
|
|
|
|
|
rb->configure(DSP_SET_FREQUENCY, (int *)rb->id3->frequency);
|
|
|
|
|
|
|
|
|
|
if (vi->channels == 2) {
|
|
|
|
|
if (current_stereo_mode != STEREO_INTERLEAVED) {
|
|
|
|
|
rb->configure(DSP_SET_STEREO_MODE, (int *)STEREO_INTERLEAVED);
|
|
|
|
|
current_stereo_mode = STEREO_INTERLEAVED;
|
|
|
|
|
}
|
|
|
|
|
} else if (vi->channels == 1) {
|
|
|
|
|
if (current_stereo_mode != STEREO_MONO) {
|
|
|
|
|
rb->configure(DSP_SET_STEREO_MODE, (int *)STEREO_MONO);
|
|
|
|
|
current_stereo_mode = STEREO_MONO;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 19:41:30 +00:00
|
|
|
|
eof=0;
|
2005-07-05 08:43:36 +00:00
|
|
|
|
rb->yield();
|
2005-06-22 19:41:30 +00:00
|
|
|
|
while (!eof) {
|
2005-07-05 08:43:36 +00:00
|
|
|
|
if (rb->stop_codec || rb->reload_codec)
|
|
|
|
|
break ;
|
|
|
|
|
|
|
|
|
|
if (rb->seek_time) {
|
|
|
|
|
|
|
|
|
|
if (ov_time_seek(&vf, rb->seek_time)) {
|
|
|
|
|
//rb->logf("ov_time_seek failed");
|
|
|
|
|
}
|
|
|
|
|
rb->seek_time = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 19:41:30 +00:00
|
|
|
|
/* Read host-endian signed 16 bit PCM samples */
|
|
|
|
|
n=ov_read(&vf,pcmbuf,sizeof(pcmbuf),¤t_section);
|
|
|
|
|
|
|
|
|
|
if (n==0) {
|
|
|
|
|
eof=1;
|
2005-07-05 08:43:36 +00:00
|
|
|
|
} else if (n < 0) {
|
2005-06-22 19:41:30 +00:00
|
|
|
|
DEBUGF("Error decoding frame\n");
|
|
|
|
|
} else {
|
2005-07-05 08:43:36 +00:00
|
|
|
|
while (!rb->audiobuffer_insert(pcmbuf, n)) {
|
2005-06-22 19:41:30 +00:00
|
|
|
|
rb->yield();
|
2005-07-05 08:43:36 +00:00
|
|
|
|
if ( rb->seek_time ) {
|
|
|
|
|
/* Hmmm, a seek was requested. Throw out the
|
|
|
|
|
* buffer and go back to the top of the loop.
|
|
|
|
|
*/
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( !rb->seek_time ) {
|
|
|
|
|
rb->set_elapsed(ov_time_tell(&vf));
|
|
|
|
|
rb->yield();
|
|
|
|
|
}
|
2005-06-22 19:41:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-05 08:43:36 +00:00
|
|
|
|
if (rb->request_next_track()) {
|
|
|
|
|
/* Clean things up for the next track */
|
|
|
|
|
vf.dataoffsets = NULL;
|
|
|
|
|
vf.offsets = NULL;
|
|
|
|
|
vf.serialnos = NULL;
|
|
|
|
|
vf.pcmlengths = NULL;
|
|
|
|
|
ov_clear(&vf);
|
|
|
|
|
goto next_track;
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 19:41:30 +00:00
|
|
|
|
return CODEC_OK;
|
|
|
|
|
}
|