Merge branch 'master' into android-test-plugins
[kugel-rb.git] / apps / codecs / vox.c
blobbf274c691740d14dc7946c0dab8cdc2604b04ec6
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 ****************************************************************************/
22 #include "codeclib.h"
23 #include "codecs/libpcm/support_formats.h"
25 CODEC_HEADER
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);
43 return buffer;
46 /* this is the codec entry point */
47 enum codec_status codec_main(enum codec_entry_call_reason reason)
49 if (reason == CODEC_LOAD) {
50 /* Generic codec initialisation */
51 ci->configure(DSP_SET_SAMPLE_DEPTH, PCM_OUTPUT_DEPTH-1);
54 return CODEC_OK;
57 /* this is called for each file to process */
58 enum codec_status codec_run(void)
60 uint32_t decodedsamples;
61 size_t n;
62 int bufcount;
63 int endofstream;
64 uint8_t *voxbuf;
65 off_t firstblockposn = 0; /* position of the first block in file */
66 const struct pcm_codec *codec;
67 intptr_t param;
69 if (codec_init()) {
70 DEBUGF("codec_init() error\n");
71 return CODEC_ERROR;
74 codec_set_replaygain(ci->id3);
76 /* Need to save offset for later use (cleared indirectly by advance_buffer) */
77 bytesdone = ci->id3->offset;
78 ci->seek_buffer(0);
80 ci->memset(&format, 0, sizeof(struct pcm_format));
82 /* set format */
83 format.channels = 1;
84 format.bitspersample = 4;
85 format.numbytes = ci->id3->filesize;
86 format.blockalign = 1;
88 /* advance to first WAVE chunk */
89 firstblockposn = 0;
90 decodedsamples = 0;
91 ci->advance_buffer(firstblockposn);
94 * get codec
95 * supports dialogic oki adpcm only
97 codec = get_dialogic_oki_adpcm_codec();
98 if (!codec)
100 DEBUGF("CODEC_ERROR: dialogic oki adpcm codec does not load.\n");
101 return CODEC_ERROR;
104 if (!codec->set_format(&format)) {
105 return CODEC_ERROR;
108 if (format.numbytes == 0) {
109 DEBUGF("CODEC_ERROR: data size is 0\n");
110 return 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 return CODEC_ERROR;
122 ci->configure(DSP_SWITCH_FREQUENCY, ci->id3->frequency);
123 ci->configure(DSP_SET_STEREO_MODE, STEREO_MONO);
125 /* make sure we're at the correct offset */
126 if (bytesdone > (uint32_t) firstblockposn) {
127 /* Round down to previous block */
128 struct pcm_pos *newpos = codec->get_seek_pos(bytesdone - firstblockposn,
129 PCM_SEEK_POS, &read_buffer);
131 if (newpos->pos > format.numbytes) {
132 return CODEC_OK;
134 if (ci->seek_buffer(firstblockposn + newpos->pos))
136 bytesdone = newpos->pos;
137 decodedsamples = newpos->samples;
139 } else {
140 /* already where we need to be */
141 bytesdone = 0;
144 /* The main decoder loop */
145 endofstream = 0;
147 while (!endofstream) {
148 enum codec_command_action action = ci->get_command(&param);
150 if (action == CODEC_ACTION_HALT)
151 break;
153 if (action == CODEC_ACTION_SEEK_TIME) {
154 struct pcm_pos *newpos = codec->get_seek_pos(param, PCM_SEEK_TIME,
155 &read_buffer);
157 if (newpos->pos > format.numbytes)
159 ci->set_elapsed(ci->id3->length);
160 ci->seek_complete();
161 break;
164 if (ci->seek_buffer(firstblockposn + newpos->pos))
166 bytesdone = newpos->pos;
167 decodedsamples = newpos->samples;
170 ci->set_elapsed(decodedsamples*1000LL/ci->id3->frequency);
171 ci->seek_complete();
174 voxbuf = (uint8_t *)ci->request_buffer(&n, format.chunksize);
175 if (n == 0)
176 break; /* End of stream */
177 if (bytesdone + n > format.numbytes) {
178 n = format.numbytes - bytesdone;
179 endofstream = 1;
182 if (codec->decode(voxbuf, n, samples, &bufcount) == CODEC_ERROR)
184 DEBUGF("codec error\n");
185 return CODEC_ERROR;
188 ci->pcmbuf_insert(samples, NULL, bufcount);
189 ci->advance_buffer(n);
190 bytesdone += n;
191 decodedsamples += bufcount;
193 if (bytesdone >= format.numbytes)
194 endofstream = 1;
195 ci->set_elapsed(decodedsamples*1000LL/ci->id3->frequency);
198 return CODEC_OK;