Change a few defines to enums to match the other code around and argument bits #defin...
[kugel-rb/myfork.git] / apps / dsp.h
blob58a5edb5e212802b03c263a1476244091e5e491b
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Miika Pekkarinen
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 #ifndef _DSP_H
23 #define _DSP_H
25 #include <stdlib.h>
26 #include <stdbool.h>
28 #define NATIVE_FREQUENCY 44100
29 enum
31 STEREO_INTERLEAVED = 0,
32 STEREO_NONINTERLEAVED,
33 STEREO_MONO,
34 STEREO_NUM_MODES,
37 enum
39 CODEC_IDX_AUDIO = 0,
40 CODEC_IDX_VOICE,
43 enum
45 DSP_MYDSP = 1,
46 DSP_SET_FREQUENCY,
47 DSP_SWITCH_FREQUENCY,
48 DSP_SET_SAMPLE_DEPTH,
49 DSP_SET_STEREO_MODE,
50 DSP_RESET,
51 DSP_FLUSH,
52 DSP_SET_TRACK_GAIN,
53 DSP_SET_ALBUM_GAIN,
54 DSP_SET_TRACK_PEAK,
55 DSP_SET_ALBUM_PEAK,
56 DSP_CROSSFEED
59 struct dsp_config;
61 int dsp_process(struct dsp_config *dsp, char *dest,
62 const char *src[], int count);
63 int dsp_input_count(struct dsp_config *dsp, int count);
64 int dsp_output_count(struct dsp_config *dsp, int count);
65 intptr_t dsp_configure(struct dsp_config *dsp, int setting,
66 intptr_t value);
67 void dsp_set_replaygain(void);
68 void dsp_set_crossfeed(bool enable);
69 void dsp_set_crossfeed_direct_gain(int gain);
70 void dsp_set_crossfeed_cross_params(long lf_gain, long hf_gain,
71 long cutoff);
72 void dsp_set_eq(bool enable);
73 void dsp_set_eq_precut(int precut);
74 void dsp_set_eq_coefs(int band);
75 void dsp_dither_enable(bool enable);
76 void dsp_timestretch_enable(bool enable);
77 bool dsp_timestretch_available(void);
78 void sound_set_pitch(int32_t r);
79 int32_t sound_get_pitch(void);
80 void dsp_set_timestretch(int32_t percent);
81 int32_t dsp_get_timestretch(void);
82 int dsp_callback(int msg, intptr_t param);
84 #endif