Merge branch 'master' into android-test-plugins
[kugel-rb.git] / apps / codecs / wavpack.c
blob32f09d53e48956964e00efea2bac03d131385b21
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 David Bryant
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 "libwavpack/wavpack.h"
25 CODEC_HEADER
27 #define BUFFER_SIZE 4096
29 static int32_t temp_buffer [BUFFER_SIZE] IBSS_ATTR;
31 static int32_t read_callback (void *buffer, int32_t bytes)
33 int32_t retval = ci->read_filebuf (buffer, bytes);
34 ci->set_offset(ci->curpos);
35 return retval;
38 /* this is the codec entry point */
39 enum codec_status codec_main(enum codec_entry_call_reason reason)
41 if (reason == CODEC_LOAD) {
42 /* Generic codec initialisation */
43 ci->configure(DSP_SET_SAMPLE_DEPTH, 28);
46 return CODEC_OK;
49 /* this is called for each file to process */
50 enum codec_status codec_run(void)
52 WavpackContext *wpc;
53 char error [80];
54 /* rockbox: comment 'set but unused' variables
55 int bps;
57 int nchans, sr_100;
58 intptr_t param;
60 if (codec_init())
61 return CODEC_ERROR;
63 ci->seek_buffer (ci->id3->offset);
65 /* Create a decoder instance */
66 wpc = WavpackOpenFileInput (read_callback, error);
68 if (!wpc)
69 return CODEC_ERROR;
71 ci->configure(DSP_SWITCH_FREQUENCY, WavpackGetSampleRate (wpc));
72 codec_set_replaygain(ci->id3);
73 /* bps = WavpackGetBytesPerSample (wpc); */
74 nchans = WavpackGetReducedChannels (wpc);
75 ci->configure(DSP_SET_STEREO_MODE, nchans == 2 ? STEREO_INTERLEAVED : STEREO_MONO);
76 sr_100 = ci->id3->frequency / 100;
78 ci->set_elapsed (0);
80 /* The main decoder loop */
82 while (1) {
83 int32_t nsamples;
84 enum codec_command_action action = ci->get_command(&param);
86 if (action == CODEC_ACTION_HALT)
87 break;
89 if (action == CODEC_ACTION_SEEK_TIME) {
90 int curpos_ms = WavpackGetSampleIndex (wpc) / sr_100 * 10;
91 int n, d, skip;
93 if (param > curpos_ms) {
94 n = param - curpos_ms;
95 d = ci->id3->length - curpos_ms;
96 skip = (int)((int64_t)(ci->filesize - ci->curpos) * n / d);
97 ci->seek_buffer (ci->curpos + skip);
99 else if (curpos_ms != 0) {
100 n = curpos_ms - param;
101 d = curpos_ms;
102 skip = (int)((int64_t) ci->curpos * n / d);
103 ci->seek_buffer (ci->curpos - skip);
106 wpc = WavpackOpenFileInput (read_callback, error);
107 if (!wpc)
109 ci->seek_complete();
110 break;
113 ci->set_elapsed (WavpackGetSampleIndex (wpc) / sr_100 * 10);
114 ci->seek_complete();
117 nsamples = WavpackUnpackSamples (wpc, temp_buffer, BUFFER_SIZE / nchans);
119 if (!nsamples)
120 break;
122 ci->pcmbuf_insert (temp_buffer, NULL, nsamples);
123 ci->set_elapsed (WavpackGetSampleIndex (wpc) / sr_100 * 10);
126 return CODEC_OK;