Patch #1352575 - Shorten codec from the ffmpeg project. Rockbox implementation by...
[Rockbox.git] / apps / dsp.h
blobfdd9a191cb828ed89cdc14c9f8db2dd80512d68a
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Miika Pekkarinen
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #ifndef _DSP_H
21 #define _DSP_H
23 #include <stdlib.h>
24 #include <stdbool.h>
26 #define NATIVE_FREQUENCY 44100
27 #define STEREO_INTERLEAVED 0
28 #define STEREO_NONINTERLEAVED 1
29 #define STEREO_MONO 2
31 enum {
32 CODEC_SET_FILEBUF_WATERMARK = 1,
33 CODEC_SET_FILEBUF_CHUNKSIZE,
34 CODEC_SET_FILEBUF_LIMIT,
35 CODEC_DSP_ENABLE,
36 DSP_SET_FREQUENCY,
37 DSP_SWITCH_FREQUENCY,
38 DSP_SET_CLIP_MIN,
39 DSP_SET_CLIP_MAX,
40 DSP_SET_SAMPLE_DEPTH,
41 DSP_SET_STEREO_MODE,
42 DSP_RESET,
43 DSP_DITHER,
44 DSP_SET_TRACK_GAIN,
45 DSP_SET_ALBUM_GAIN,
46 DSP_SET_TRACK_PEAK,
47 DSP_SET_ALBUM_PEAK
50 long dsp_process(char *dest, char *src[], long size);
51 long dsp_input_size(long size);
52 long dsp_output_size(long size);
53 int dsp_stereo_mode(void);
54 bool dsp_configure(int setting, void *value);
55 void dsp_set_replaygain(bool always);
57 #endif