2005-04-01 13:41:03 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Linus Nielsen Feltzing
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2005-04-01 13:41:03 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef SOUND_H
|
|
|
|
#define SOUND_H
|
|
|
|
|
2007-02-26 00:41:26 +00:00
|
|
|
#include <inttypes.h>
|
2007-05-22 20:17:35 +00:00
|
|
|
#include <audiohw.h>
|
2006-12-06 13:34:15 +00:00
|
|
|
|
2010-04-25 22:54:58 +00:00
|
|
|
|
2009-08-01 21:38:18 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
enum {
|
|
|
|
DSP_CALLBACK_SET_PRESCALE = 0,
|
|
|
|
DSP_CALLBACK_SET_BASS,
|
|
|
|
DSP_CALLBACK_SET_TREBLE,
|
|
|
|
DSP_CALLBACK_SET_CHANNEL_CONFIG,
|
|
|
|
DSP_CALLBACK_SET_STEREO_WIDTH,
|
|
|
|
#ifdef HAVE_SW_VOLUME_CONTROL
|
|
|
|
DSP_CALLBACK_SET_SW_VOLUME,
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2005-11-06 23:12:11 +00:00
|
|
|
typedef void sound_set_type(int value);
|
|
|
|
|
|
|
|
const char *sound_unit(int setting);
|
|
|
|
int sound_numdecimals(int setting);
|
|
|
|
int sound_steps(int setting);
|
|
|
|
int sound_min(int setting);
|
|
|
|
int sound_max(int setting);
|
|
|
|
int sound_default(int setting);
|
|
|
|
sound_set_type* sound_get_fn(int setting);
|
2005-04-01 13:41:03 +00:00
|
|
|
|
2007-02-26 00:41:26 +00:00
|
|
|
void sound_set_dsp_callback(int (*func)(int, intptr_t));
|
2005-11-06 03:18:34 +00:00
|
|
|
void sound_set_volume(int value);
|
|
|
|
void sound_set_balance(int value);
|
|
|
|
void sound_set_bass(int value);
|
|
|
|
void sound_set_treble(int value);
|
2005-11-06 23:12:11 +00:00
|
|
|
void sound_set_channels(int value);
|
|
|
|
void sound_set_stereo_width(int value);
|
2008-05-03 23:18:56 +00:00
|
|
|
#if defined(HAVE_WM8758) || defined(HAVE_WM8985)
|
2007-11-24 07:51:00 +00:00
|
|
|
void sound_set_bass_cutoff(int value);
|
|
|
|
void sound_set_treble_cutoff(int value);
|
|
|
|
#endif
|
2005-11-06 03:18:34 +00:00
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
|
|
|
void sound_set_loudness(int value);
|
|
|
|
void sound_set_avc(int value);
|
|
|
|
void sound_set_mdb_strength(int value);
|
|
|
|
void sound_set_mdb_harmonics(int value);
|
|
|
|
void sound_set_mdb_center(int value);
|
|
|
|
void sound_set_mdb_shape(int value);
|
|
|
|
void sound_set_mdb_enable(int value);
|
|
|
|
void sound_set_superbass(int value);
|
|
|
|
#endif /* (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) */
|
|
|
|
|
2005-04-01 13:41:03 +00:00
|
|
|
void sound_set(int setting, int value);
|
|
|
|
int sound_val2phys(int setting, int value);
|
2005-11-06 23:12:11 +00:00
|
|
|
|
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2009-07-11 16:46:19 +00:00
|
|
|
void sound_set_pitch(int32_t pitch);
|
|
|
|
int32_t sound_get_pitch(void);
|
2005-04-01 13:41:03 +00:00
|
|
|
#endif
|
|
|
|
|
2009-07-11 17:16:23 +00:00
|
|
|
#ifdef HAVE_PITCHSCREEN
|
|
|
|
/* precision of the pitch and speed variables */
|
|
|
|
/* One zero per decimal (100 means two decimal places */
|
|
|
|
#define PITCH_SPEED_PRECISION 100L
|
|
|
|
#define PITCH_SPEED_100 (100L * PITCH_SPEED_PRECISION) /* 100% speed */
|
|
|
|
#endif /* HAVE_PITCHSCREEN */
|
|
|
|
|
2005-04-01 13:41:03 +00:00
|
|
|
#endif
|