1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2010 Yoshihisa Uchida
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 ****************************************************************************/
23 #include "codecs/libpcm/support_formats.h"
27 /* vox codec (Dialogic telephony file formats) */
29 #define PCM_SAMPLE_SIZE (2048)
31 static int32_t samples
[PCM_SAMPLE_SIZE
] IBSS_ATTR
;
33 static struct pcm_format format
;
34 static uint32_t bytesdone
;
36 static uint8_t *read_buffer(size_t *realsize
)
38 uint8_t *buffer
= (uint8_t *)ci
->request_buffer(realsize
, format
.chunksize
);
39 if (bytesdone
+ (*realsize
) > format
.numbytes
)
40 *realsize
= format
.numbytes
- bytesdone
;
41 bytesdone
+= *realsize
;
42 ci
->advance_buffer(*realsize
);
46 /* this is the codec entry point */
47 enum codec_status
codec_main(void)
49 int status
= CODEC_OK
;
50 uint32_t decodedsamples
;
55 off_t firstblockposn
= 0; /* position of the first block in file */
56 const struct pcm_codec
*codec
;
58 /* Generic codec initialisation */
59 ci
->configure(DSP_SET_SAMPLE_DEPTH
, PCM_OUTPUT_DEPTH
-1);
63 DEBUGF("codec_init() error\n");
68 while (!*ci
->taginfo_ready
&& !ci
->stop_codec
)
71 codec_set_replaygain(ci
->id3
);
73 /* Need to save offset for later use (cleared indirectly by advance_buffer) */
74 bytesdone
= ci
->id3
->offset
;
76 ci
->memset(&format
, 0, sizeof(struct pcm_format
));
80 format
.bitspersample
= 4;
81 format
.numbytes
= ci
->id3
->filesize
;
82 format
.blockalign
= 1;
84 /* advance to first WAVE chunk */
87 ci
->advance_buffer(firstblockposn
);
91 * supports dialogic oki adpcm only
93 codec
= get_dialogic_oki_adpcm_codec();
96 DEBUGF("CODEC_ERROR: dialogic oki adpcm codec does not load.\n");
101 if (!codec
->set_format(&format
))
103 status
= CODEC_ERROR
;
107 if (format
.numbytes
== 0) {
108 DEBUGF("CODEC_ERROR: data size is 0\n");
109 status
= CODEC_ERROR
;
113 /* check chunksize */
114 if (format
.chunksize
* 2 > PCM_SAMPLE_SIZE
)
115 format
.chunksize
= PCM_SAMPLE_SIZE
/ 2;
116 if (format
.chunksize
== 0)
118 DEBUGF("CODEC_ERROR: chunksize is 0\n");
119 status
= CODEC_ERROR
;
123 ci
->configure(DSP_SWITCH_FREQUENCY
, ci
->id3
->frequency
);
124 ci
->configure(DSP_SET_STEREO_MODE
, STEREO_MONO
);
126 /* make sure we're at the correct offset */
127 if (bytesdone
> (uint32_t) firstblockposn
) {
128 /* Round down to previous block */
129 struct pcm_pos
*newpos
= codec
->get_seek_pos(bytesdone
- firstblockposn
,
130 PCM_SEEK_POS
, &read_buffer
);
132 if (newpos
->pos
> format
.numbytes
)
134 if (ci
->seek_buffer(firstblockposn
+ newpos
->pos
))
136 bytesdone
= newpos
->pos
;
137 decodedsamples
= newpos
->samples
;
141 /* already where we need to be */
145 /* The main decoder loop */
148 while (!endofstream
) {
150 if (ci
->stop_codec
|| ci
->new_track
) {
155 struct pcm_pos
*newpos
= codec
->get_seek_pos(ci
->seek_time
, PCM_SEEK_TIME
,
158 if (newpos
->pos
> format
.numbytes
)
160 if (ci
->seek_buffer(firstblockposn
+ newpos
->pos
))
162 bytesdone
= newpos
->pos
;
163 decodedsamples
= newpos
->samples
;
168 voxbuf
= (uint8_t *)ci
->request_buffer(&n
, format
.chunksize
);
170 break; /* End of stream */
171 if (bytesdone
+ n
> format
.numbytes
) {
172 n
= format
.numbytes
- bytesdone
;
176 status
= codec
->decode(voxbuf
, n
, samples
, &bufcount
);
177 if (status
== CODEC_ERROR
)
179 DEBUGF("codec error\n");
183 ci
->pcmbuf_insert(samples
, NULL
, bufcount
);
184 ci
->advance_buffer(n
);
186 decodedsamples
+= bufcount
;
188 if (bytesdone
>= format
.numbytes
)
190 ci
->set_elapsed(decodedsamples
*1000LL/ci
->id3
->frequency
);
195 if (ci
->request_next_track())