2007-02-08 04:33:41 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2007-02-13 00:32:17 +00:00
|
|
|
* $Id$
|
2007-02-08 04:33:41 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Jonathan Gordon
|
|
|
|
*
|
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.
|
2007-02-08 04:33:41 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include "config.h"
|
2010-05-15 13:09:45 +00:00
|
|
|
#include "sound.h"
|
2007-02-08 04:33:41 +00:00
|
|
|
#include "lang.h"
|
|
|
|
#include "action.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "sound_menu.h"
|
2007-02-08 10:28:42 +00:00
|
|
|
#include "eq_menu.h"
|
2007-02-19 02:14:51 +00:00
|
|
|
#include "exported_menus.h"
|
2008-03-03 11:06:04 +00:00
|
|
|
#include "menu_common.h"
|
2009-06-12 07:20:50 +00:00
|
|
|
#include "splash.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "dsp.h"
|
2007-02-08 04:33:41 +00:00
|
|
|
|
2007-02-08 10:28:42 +00:00
|
|
|
/***********************************/
|
|
|
|
/* SOUND MENU */
|
2008-03-03 11:06:04 +00:00
|
|
|
MENUITEM_SETTING(volume, &global_settings.volume, NULL);
|
2010-05-15 13:09:45 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_BASS
|
2008-03-03 11:06:04 +00:00
|
|
|
MENUITEM_SETTING(bass, &global_settings.bass,
|
|
|
|
#ifdef HAVE_SW_TONE_CONTROLS
|
|
|
|
lowlatency_callback
|
2007-02-08 10:28:42 +00:00
|
|
|
#else
|
2008-03-03 11:06:04 +00:00
|
|
|
NULL
|
2007-02-08 10:28:42 +00:00
|
|
|
#endif
|
2008-03-03 11:06:04 +00:00
|
|
|
);
|
2010-05-15 13:09:45 +00:00
|
|
|
|
|
|
|
#ifdef AUDIOHW_HAVE_BASS_CUTOFF
|
2010-05-15 13:30:01 +00:00
|
|
|
MENUITEM_SETTING(bass_cutoff, &global_settings.bass_cutoff, NULL);
|
2007-11-24 07:51:00 +00:00
|
|
|
#endif
|
2010-05-15 13:09:45 +00:00
|
|
|
#endif /* AUDIOHW_HAVE_BASS */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef AUDIOHW_HAVE_TREBLE
|
2008-03-03 11:06:04 +00:00
|
|
|
MENUITEM_SETTING(treble, &global_settings.treble,
|
|
|
|
#ifdef HAVE_SW_TONE_CONTROLS
|
|
|
|
lowlatency_callback
|
|
|
|
#else
|
|
|
|
NULL
|
|
|
|
#endif
|
|
|
|
);
|
2010-05-15 13:09:45 +00:00
|
|
|
|
|
|
|
#ifdef AUDIOHW_HAVE_TREBLE_CUTOFF
|
2008-03-03 11:06:04 +00:00
|
|
|
MENUITEM_SETTING(treble_cutoff, &global_settings.treble_cutoff, NULL);
|
|
|
|
#endif
|
2010-05-15 13:09:45 +00:00
|
|
|
#endif /* AUDIOHW_HAVE_TREBLE */
|
|
|
|
|
|
|
|
|
2008-03-03 11:06:04 +00:00
|
|
|
MENUITEM_SETTING(balance, &global_settings.balance, NULL);
|
2009-06-12 07:20:50 +00:00
|
|
|
MENUITEM_SETTING(channel_config, &global_settings.channel_config,
|
2008-03-03 11:06:04 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
lowlatency_callback
|
|
|
|
#else
|
|
|
|
NULL
|
|
|
|
#endif
|
|
|
|
);
|
2009-06-12 07:20:50 +00:00
|
|
|
MENUITEM_SETTING(stereo_width, &global_settings.stereo_width,
|
2008-03-03 11:06:04 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
lowlatency_callback
|
|
|
|
#else
|
|
|
|
NULL
|
2007-11-24 07:51:00 +00:00
|
|
|
#endif
|
2008-03-03 11:06:04 +00:00
|
|
|
);
|
2007-02-08 10:28:42 +00:00
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_DEPTH_3D
|
|
|
|
MENUITEM_SETTING(depth_3d, &global_settings.depth_3d, NULL);
|
|
|
|
#endif
|
|
|
|
|
2007-02-08 10:28:42 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
/* Crossfeed Submenu */
|
2008-03-03 11:06:04 +00:00
|
|
|
MENUITEM_SETTING(crossfeed, &global_settings.crossfeed, lowlatency_callback);
|
2007-02-08 10:28:42 +00:00
|
|
|
MENUITEM_SETTING(crossfeed_direct_gain,
|
2008-03-03 11:06:04 +00:00
|
|
|
&global_settings.crossfeed_direct_gain, lowlatency_callback);
|
2007-02-08 10:28:42 +00:00
|
|
|
MENUITEM_SETTING(crossfeed_cross_gain,
|
2008-03-03 11:06:04 +00:00
|
|
|
&global_settings.crossfeed_cross_gain, lowlatency_callback);
|
2007-02-08 10:28:42 +00:00
|
|
|
MENUITEM_SETTING(crossfeed_hf_attenuation,
|
2008-03-03 11:06:04 +00:00
|
|
|
&global_settings.crossfeed_hf_attenuation, lowlatency_callback);
|
2007-02-08 10:28:42 +00:00
|
|
|
MENUITEM_SETTING(crossfeed_hf_cutoff,
|
2008-03-03 11:06:04 +00:00
|
|
|
&global_settings.crossfeed_hf_cutoff, lowlatency_callback);
|
2007-03-03 13:52:14 +00:00
|
|
|
MAKE_MENU(crossfeed_menu,ID2P(LANG_CROSSFEED), NULL, Icon_NOICON,
|
2007-02-08 10:28:42 +00:00
|
|
|
&crossfeed, &crossfeed_direct_gain, &crossfeed_cross_gain,
|
|
|
|
&crossfeed_hf_attenuation, &crossfeed_hf_cutoff);
|
2009-06-12 07:20:50 +00:00
|
|
|
|
|
|
|
static int timestretch_callback(int action,const struct menu_item_ex *this_item)
|
|
|
|
{
|
|
|
|
switch (action)
|
|
|
|
{
|
|
|
|
case ACTION_EXIT_MENUITEM: /* on exit */
|
2009-06-16 07:10:05 +00:00
|
|
|
if (global_settings.timestretch_enabled && !dsp_timestretch_available())
|
2009-06-12 07:20:50 +00:00
|
|
|
splash(HZ*2, ID2P(LANG_PLEASE_REBOOT));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
lowlatency_callback(action, this_item);
|
|
|
|
return action;
|
|
|
|
}
|
|
|
|
MENUITEM_SETTING(timestretch_enabled,
|
|
|
|
&global_settings.timestretch_enabled, timestretch_callback);
|
2007-02-08 10:28:42 +00:00
|
|
|
MENUITEM_SETTING(dithering_enabled,
|
2008-03-03 11:06:04 +00:00
|
|
|
&global_settings.dithering_enabled, lowlatency_callback);
|
2009-09-25 15:46:38 +00:00
|
|
|
|
|
|
|
/* compressor submenu */
|
|
|
|
MENUITEM_SETTING(compressor_threshold,
|
|
|
|
&global_settings.compressor_threshold, lowlatency_callback);
|
|
|
|
MENUITEM_SETTING(compressor_gain,
|
|
|
|
&global_settings.compressor_makeup_gain, lowlatency_callback);
|
2009-11-04 18:14:36 +00:00
|
|
|
MENUITEM_SETTING(compressor_ratio,
|
|
|
|
&global_settings.compressor_ratio, lowlatency_callback);
|
2009-09-25 15:46:38 +00:00
|
|
|
MENUITEM_SETTING(compressor_knee,
|
|
|
|
&global_settings.compressor_knee, lowlatency_callback);
|
|
|
|
MENUITEM_SETTING(compressor_release,
|
|
|
|
&global_settings.compressor_release_time, lowlatency_callback);
|
|
|
|
MAKE_MENU(compressor_menu,ID2P(LANG_COMPRESSOR), NULL, Icon_NOICON,
|
2009-11-04 18:14:36 +00:00
|
|
|
&compressor_threshold, &compressor_gain, &compressor_ratio,
|
2009-09-25 15:46:38 +00:00
|
|
|
&compressor_knee, &compressor_release);
|
2007-02-08 10:28:42 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
|
|
|
MENUITEM_SETTING(loudness, &global_settings.loudness, NULL);
|
|
|
|
MENUITEM_SETTING(avc, &global_settings.avc, NULL);
|
|
|
|
MENUITEM_SETTING(superbass, &global_settings.superbass, NULL);
|
|
|
|
MENUITEM_SETTING(mdb_enable, &global_settings.mdb_enable, NULL);
|
|
|
|
MENUITEM_SETTING(mdb_strength, &global_settings.mdb_strength, NULL);
|
|
|
|
MENUITEM_SETTING(mdb_harmonics, &global_settings.mdb_harmonics, NULL);
|
|
|
|
MENUITEM_SETTING(mdb_center, &global_settings.mdb_center, NULL);
|
|
|
|
MENUITEM_SETTING(mdb_shape, &global_settings.mdb_shape, NULL);
|
|
|
|
#endif
|
|
|
|
|
2009-03-02 18:18:24 +00:00
|
|
|
#ifdef HAVE_SPEAKER
|
|
|
|
MENUITEM_SETTING(speaker_enabled, &global_settings.speaker_enabled, NULL);
|
|
|
|
#endif
|
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_EQ
|
|
|
|
#endif /* AUDIOHW_HAVE_EQ */
|
2007-02-08 10:28:42 +00:00
|
|
|
|
2007-03-03 13:52:14 +00:00
|
|
|
MAKE_MENU(sound_settings, ID2P(LANG_SOUND_SETTINGS), NULL, Icon_Audio,
|
2010-05-15 13:09:45 +00:00
|
|
|
&volume
|
|
|
|
#ifdef AUDIOHW_HAVE_BASS
|
|
|
|
,&bass
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_BASS_CUTOFF
|
|
|
|
,&bass_cutoff
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_TREBLE
|
|
|
|
,&treble
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_TREBLE_CUTOFF
|
|
|
|
,&treble_cutoff
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ
|
|
|
|
,&audiohw_eq_tone_controls
|
2007-11-24 07:51:00 +00:00
|
|
|
#endif
|
2010-05-15 13:09:45 +00:00
|
|
|
,&balance,&channel_config,&stereo_width
|
|
|
|
#ifdef AUDIOHW_HAVE_DEPTH_3D
|
|
|
|
,&depth_3d
|
2007-11-24 07:51:00 +00:00
|
|
|
#endif
|
2007-02-08 10:28:42 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2009-06-12 07:20:50 +00:00
|
|
|
,&crossfeed_menu, &equalizer_menu, &dithering_enabled
|
|
|
|
,×tretch_enabled
|
2009-09-25 15:46:38 +00:00
|
|
|
,&compressor_menu
|
2007-02-08 10:28:42 +00:00
|
|
|
#endif
|
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
|
|
|
,&loudness,&avc,&superbass,&mdb_enable,&mdb_strength
|
|
|
|
,&mdb_harmonics,&mdb_center,&mdb_shape
|
2009-03-02 18:18:24 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SPEAKER
|
|
|
|
,&speaker_enabled
|
2007-02-08 10:28:42 +00:00
|
|
|
#endif
|
|
|
|
);
|
|
|
|
|