diff --git a/apps/menus/eq_menu.c b/apps/menus/eq_menu.c index 7ece92e..dddeb14 100644 --- a/apps/menus/eq_menu.c +++ b/apps/menus/eq_menu.c @@ -106,6 +106,16 @@ MENUITEM_SETTING(cutoff_3, &global_settings.eq_band_settings[3].cutoff, eq_setting_callback); MENUITEM_SETTING(cutoff_4, &global_settings.eq_band_settings[4].cutoff, eq_setting_callback); +MENUITEM_SETTING(cutoff_5, &global_settings.eq_band_settings[5].cutoff, + eq_setting_callback); +MENUITEM_SETTING(cutoff_6, &global_settings.eq_band_settings[6].cutoff, + eq_setting_callback); +MENUITEM_SETTING(cutoff_7, &global_settings.eq_band_settings[7].cutoff, + eq_setting_callback); +MENUITEM_SETTING(cutoff_8, &global_settings.eq_band_settings[8].cutoff, + eq_setting_callback); +MENUITEM_SETTING(cutoff_9, &global_settings.eq_band_settings[9].cutoff, + eq_setting_callback); MENUITEM_SETTING(q_0, &global_settings.eq_band_settings[0].q, eq_setting_callback); @@ -117,6 +127,16 @@ MENUITEM_SETTING(q_3, &global_settings.eq_band_settings[3].q, eq_setting_callback); MENUITEM_SETTING(q_4, &global_settings.eq_band_settings[4].q, eq_setting_callback); +MENUITEM_SETTING(q_5, &global_settings.eq_band_settings[5].q, + eq_setting_callback); +MENUITEM_SETTING(q_6, &global_settings.eq_band_settings[6].q, + eq_setting_callback); +MENUITEM_SETTING(q_7, &global_settings.eq_band_settings[7].q, + eq_setting_callback); +MENUITEM_SETTING(q_8, &global_settings.eq_band_settings[8].q, + eq_setting_callback); +MENUITEM_SETTING(q_9, &global_settings.eq_band_settings[9].q, + eq_setting_callback); MENUITEM_SETTING(gain_0, &global_settings.eq_band_settings[0].gain, eq_setting_callback); @@ -128,6 +148,16 @@ MENUITEM_SETTING(gain_3, &global_settings.eq_band_settings[3].gain, eq_setting_callback); MENUITEM_SETTING(gain_4, &global_settings.eq_band_settings[4].gain, eq_setting_callback); +MENUITEM_SETTING(gain_5, &global_settings.eq_band_settings[5].gain, + eq_setting_callback); +MENUITEM_SETTING(gain_6, &global_settings.eq_band_settings[6].gain, + eq_setting_callback); +MENUITEM_SETTING(gain_7, &global_settings.eq_band_settings[7].gain, + eq_setting_callback); +MENUITEM_SETTING(gain_8, &global_settings.eq_band_settings[8].gain, + eq_setting_callback); +MENUITEM_SETTING(gain_9, &global_settings.eq_band_settings[9].gain, + eq_setting_callback); static char* gainitem_get_name(int selected_item, void * data, char *buffer) { @@ -181,14 +211,46 @@ MENUITEM_FUNCTION_DYNTEXT(gain_item_4, MENU_FUNC_USEPARAM, gainitem_get_name, gainitem_speak_item, &global_settings.eq_band_settings[4].cutoff, NULL, Icon_NOICON); +MENUITEM_FUNCTION_DYNTEXT(gain_item_5, MENU_FUNC_USEPARAM, + do_option, (void*)&gain_5, + gainitem_get_name, gainitem_speak_item, + &global_settings.eq_band_settings[5].cutoff, + NULL, Icon_NOICON); +MENUITEM_FUNCTION_DYNTEXT(gain_item_6, MENU_FUNC_USEPARAM, + do_option, (void*)&gain_6, + gainitem_get_name, gainitem_speak_item, + &global_settings.eq_band_settings[6].cutoff, + NULL, Icon_NOICON); +MENUITEM_FUNCTION_DYNTEXT(gain_item_7, MENU_FUNC_USEPARAM, + do_option, (void*)&gain_7, + gainitem_get_name, gainitem_speak_item, + &global_settings.eq_band_settings[7].cutoff, + NULL, Icon_NOICON); +MENUITEM_FUNCTION_DYNTEXT(gain_item_8, MENU_FUNC_USEPARAM, + do_option, (void*)&gain_8, + gainitem_get_name, gainitem_speak_item, + &global_settings.eq_band_settings[8].cutoff, + NULL, Icon_NOICON); +MENUITEM_FUNCTION_DYNTEXT(gain_item_9, MENU_FUNC_USEPARAM, + do_option, (void*)&gain_9, + gainitem_get_name, gainitem_speak_item, + &global_settings.eq_band_settings[9].cutoff, + NULL, Icon_NOICON); MAKE_MENU(gain_menu, ID2P(LANG_EQUALIZER_GAIN), NULL, Icon_NOICON, &gain_item_0, - &gain_item_1, &gain_item_2, &gain_item_3, &gain_item_4); + &gain_item_1, &gain_item_2, &gain_item_3, &gain_item_4, + &gain_item_5, &gain_item_6, &gain_item_7, &gain_item_8, + &gain_item_9); -static const struct menu_item_ex *band_items[3][3] = { +static const struct menu_item_ex *band_items[8][3] = { { &cutoff_1, &q_1, &gain_1 }, { &cutoff_2, &q_2, &gain_2 }, - { &cutoff_3, &q_3, &gain_3 } + { &cutoff_3, &q_3, &gain_3 }, + { &cutoff_4, &q_4, &gain_4 }, + { &cutoff_5, &q_5, &gain_5 }, + { &cutoff_6, &q_6, &gain_6 }, + { &cutoff_7, &q_7, &gain_7 }, + { &cutoff_8, &q_8, &gain_8 } }; static char* centerband_get_name(int selected_item, void * data, char *buffer) @@ -240,11 +302,32 @@ MENUITEM_FUNCTION_DYNTEXT(band_3_menu, MENU_FUNC_USEPARAM, do_center_band_menu, (void*)3, centerband_get_name, centerband_speak_item, (void*)3, NULL, Icon_EQ); -MAKE_MENU(band_4_menu, ID2P(LANG_EQUALIZER_BAND_HIGH_SHELF), NULL, - Icon_EQ, &cutoff_4, &q_4, &gain_4); +MENUITEM_FUNCTION_DYNTEXT(band_4_menu, MENU_FUNC_USEPARAM, + do_center_band_menu, (void*)4, + centerband_get_name, centerband_speak_item, + (void*)4, NULL, Icon_EQ); +MENUITEM_FUNCTION_DYNTEXT(band_5_menu, MENU_FUNC_USEPARAM, + do_center_band_menu, (void*)5, + centerband_get_name, centerband_speak_item, + (void*)5, NULL, Icon_EQ); +MENUITEM_FUNCTION_DYNTEXT(band_6_menu, MENU_FUNC_USEPARAM, + do_center_band_menu, (void*)6, + centerband_get_name, centerband_speak_item, + (void*)6, NULL, Icon_EQ); +MENUITEM_FUNCTION_DYNTEXT(band_7_menu, MENU_FUNC_USEPARAM, + do_center_band_menu, (void*)7, + centerband_get_name, centerband_speak_item, + (void*)7, NULL, Icon_EQ); +MENUITEM_FUNCTION_DYNTEXT(band_8_menu, MENU_FUNC_USEPARAM, + do_center_band_menu, (void*)8, + centerband_get_name, centerband_speak_item, + (void*)8, NULL, Icon_EQ); +MAKE_MENU(band_9_menu, ID2P(LANG_EQUALIZER_BAND_HIGH_SHELF), NULL, + Icon_EQ, &cutoff_9, &q_9, &gain_9); MAKE_MENU(advanced_eq_menu_, ID2P(LANG_EQUALIZER_ADVANCED), NULL, Icon_EQ, - &band_0_menu, &band_1_menu, &band_2_menu, &band_3_menu, &band_4_menu); + &band_0_menu, &band_1_menu, &band_2_menu, &band_3_menu, &band_4_menu, + &band_5_menu, &band_6_menu, &band_7_menu, &band_8_menu, &band_9_menu); enum eq_slider_mode { @@ -300,7 +383,7 @@ static int draw_eq_slider(struct screen * screen, int x, int y, if (band == 0) { screen->putsxy(x1, y1, "LS: "); screen->getstringsize("LS:", &w, &h); - } else if (band == 4) { + } else if (band == 9) { screen->putsxy(x1, y1, "HS: "); screen->getstringsize("HS:", &w, &h); } else { @@ -370,9 +453,9 @@ static void draw_eq_sliders(struct screen * screen, int x, int y, { int height = y; - start_item = MIN(start_item, 5 - nb_eq_sliders); + start_item = MIN(start_item, 10 - nb_eq_sliders); - for (int i = 0; i < 5; i++) { + for (int i = 0; i < 10; i++) { struct eq_band_setting *setting = &global_settings.eq_band_settings[i]; int cutoff = setting->cutoff; int q = setting->q; @@ -390,9 +473,9 @@ static void draw_eq_sliders(struct screen * screen, int x, int y, } } - if (nb_eq_sliders != 5) + if (nb_eq_sliders != 10) gui_scrollbar_draw(screen, 0, y, SCROLLBAR_SIZE - 1, - screen->lcdheight - y, 5, + screen->lcdheight - y, 10, start_item, start_item + nb_eq_sliders, VERTICAL); return; @@ -431,8 +514,8 @@ bool eq_menu_graphical(void) if (height > screens[i].lcdheight) nb_eq_sliders[i]--; - if (nb_eq_sliders[i] > 5) - nb_eq_sliders[i] = 5; + if (nb_eq_sliders[i] > 10) + nb_eq_sliders[i] = 10; } y = h + 1; @@ -489,12 +572,12 @@ bool eq_menu_graphical(void) } /* Draw scrollbar if needed */ - if (nb_eq_sliders[i] != 5) + if (nb_eq_sliders[i] != 10) { if (current_band == 0) { start_item = 0; - } else if (current_band == 4) { - start_item = 5 - nb_eq_sliders[i]; + } else if (current_band == 9) { + start_item = 10 - nb_eq_sliders[i]; } else { start_item = current_band - 1; } @@ -547,13 +630,13 @@ bool eq_menu_graphical(void) case ACTION_STD_PREVREPEAT: current_band--; if (current_band < 0) - current_band = 4; /* wrap around */ + current_band = 9; /* wrap around */ break; case ACTION_STD_NEXT: case ACTION_STD_NEXTREPEAT: current_band++; - if (current_band > 4) + if (current_band > 9) current_band = 0; /* wrap around */ break; diff --git a/apps/settings_list.c b/apps/settings_list.c index ef9fe50..e89723d 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -1443,16 +1443,31 @@ const struct settings_list settings[] = { 60, "eq band 0 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[1].cutoff, LANG_EQUALIZER_BAND_CENTER, - 200, "eq band 1 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + 170, "eq band 1 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[2].cutoff, LANG_EQUALIZER_BAND_CENTER, - 800, "eq band 2 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + 310, "eq band 2 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[3].cutoff, LANG_EQUALIZER_BAND_CENTER, - 4000, "eq band 3 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + 600, "eq band 3 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[4].cutoff, LANG_EQUALIZER_BAND_CUTOFF, - 12000, "eq band 4 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + 1000, "eq band 4 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[5].cutoff, LANG_EQUALIZER_BAND_CUTOFF, + 3000, "eq band 5 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[6].cutoff, LANG_EQUALIZER_BAND_CUTOFF, + 6000, "eq band 6 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[7].cutoff, LANG_EQUALIZER_BAND_CUTOFF, + 12000, "eq band 7 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[8].cutoff, LANG_EQUALIZER_BAND_CUTOFF, + 14000, "eq band 8 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[9].cutoff, LANG_EQUALIZER_BAND_CUTOFF, + 16000, "eq band 9 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), /* 0..64 (or 0.0 to 6.4) */ INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[0].q, LANG_EQUALIZER_BAND_Q, 7, @@ -1467,9 +1482,24 @@ const struct settings_list settings[] = { INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[3].q, LANG_EQUALIZER_BAND_Q, 10, "eq band 3 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, eq_q_format, get_dec_talkid, NULL), - INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[4].q, LANG_EQUALIZER_BAND_Q, 7, + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[4].q, LANG_EQUALIZER_BAND_Q, 10, "eq band 4 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, eq_q_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[5].q, LANG_EQUALIZER_BAND_Q, 10, + "eq band 5 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, + eq_q_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[6].q, LANG_EQUALIZER_BAND_Q, 10, + "eq band 6 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, + eq_q_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[7].q, LANG_EQUALIZER_BAND_Q, 10, + "eq band 7 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, + eq_q_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[8].q, LANG_EQUALIZER_BAND_Q, 10, + "eq band 8 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, + eq_q_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[9].q, LANG_EQUALIZER_BAND_Q, 7, + "eq band 9 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, + eq_q_format, get_dec_talkid, NULL), /* -240..240 (or -24db to +24db) */ INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[0].gain, LANG_GAIN, 0, "eq band 0 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, @@ -1486,6 +1516,21 @@ const struct settings_list settings[] = { INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[4].gain, LANG_GAIN, 0, "eq band 4 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[5].gain, LANG_GAIN, 0, + "eq band 5 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, + EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[6].gain, LANG_GAIN, 0, + "eq band 6 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, + EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[7].gain, LANG_GAIN, 0, + "eq band 7 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, + EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[8].gain, LANG_GAIN, 0, + "eq band 8 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, + EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[9].gain, LANG_GAIN, 0, + "eq band 9 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, + EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), /* dithering */ OFFON_SETTING(F_SOUNDSETTING, dithering_enabled, LANG_DITHERING, false, diff --git a/apps/settings_list.c.orig b/apps/settings_list.c.orig new file mode 100644 index 0000000..ef9fe50 --- /dev/null +++ b/apps/settings_list.c.orig @@ -0,0 +1,1962 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2007 Jonathan Gordon + * + * 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. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#include "config.h" +#include +#include "string-extra.h" +#include "system.h" +#include "storage.h" +#include "lang.h" +#include "talk.h" +#include "lcd.h" +#include "button.h" +#include "backlight.h" +#include "sound.h" +#include "settings.h" +#include "settings_list.h" +#include "usb.h" +#include "audio.h" +#include "power.h" +#include "powermgmt.h" +#include "kernel.h" +#ifdef HAVE_REMOTE_LCD +#include "lcd-remote.h" +#endif +#include "list.h" +#include "rbunicode.h" +#ifdef HAVE_LCD_BITMAP +#include "peakmeter.h" +#endif +#include "menus/eq_menu.h" +#if CONFIG_TUNER +#include "radio.h" +#endif +#ifdef IPOD_ACCESSORY_PROTOCOL +#include "iap.h" +#endif +#include "statusbar.h" +#ifdef HAVE_TOUCHSCREEN +#include "touchscreen.h" +#include "ctype.h" /* For isspace() */ +#endif +#ifdef HAVE_HOTKEY +#include "onplay.h" +#endif + +#define NVRAM(bytes) (bytes<= 31 + #define DEFAULT_ICONSET "tango_icons.32x32" + #define DEFAULT_VIEWERS_ICONSET "tango_icons_viewers.32x32" + #elif DEFAULT_FONT_HEIGHT >= 23 + #define DEFAULT_ICONSET "tango_icons.24x24" + #define DEFAULT_VIEWERS_ICONSET "tango_icons_viewers.24x24" + #elif DEFAULT_FONT_HEIGHT >= 15 + #define DEFAULT_ICONSET "tango_icons.16x16" + #define DEFAULT_VIEWERS_ICONSET "tango_icons_viewers.16x16" + #elif DEFAULT_FONT_HEIGHT >= 11 + #define DEFAULT_ICONSET "tango_icons.12x12" + #define DEFAULT_VIEWERS_ICONSET "tango_icons_viewers.12x12" + #elif DEFAULT_FONT_HEIGHT >= 7 + #define DEFAULT_ICONSET "tango_icons.8x8" + #define DEFAULT_VIEWERS_ICONSET "tango_icons_viewers.8x8" + #endif +#elif LCD_DEPTH > 1 /* greyscale */ + #define DEFAULT_ICONSET "tango_small_mono" + #define DEFAULT_VIEWERS_ICONSET "tango_small_viewers_mono" +#else /* monochrome */ + #define DEFAULT_ICONSET "" + #define DEFAULT_VIEWERS_ICONSET "" +#endif + +#ifdef HAVE_REMOTE_LCD +#if LCD_REMOTE_HEIGHT <= 64 + #define DEFAULT_REMOTE_FONTNAME "08-Rockfont" +#else + #define DEFAULT_REMOTE_FONTNAME "-" +#endif +#endif /* HAVE_REMOTE_LCD */ + +#define DEFAULT_THEME_FOREGROUND LCD_RGBPACK(0xce, 0xcf, 0xce) +#define DEFAULT_THEME_BACKGROUND LCD_RGBPACK(0x00, 0x00, 0x00) +#define DEFAULT_THEME_SELECTOR_START LCD_RGBPACK(0xff, 0xeb, 0x9c) +#define DEFAULT_THEME_SELECTOR_END LCD_RGBPACK(0xb5, 0x8e, 0x00) +#define DEFAULT_THEME_SELECTOR_TEXT LCD_RGBPACK(0x00, 0x00, 0x00) + +#define DEFAULT_BACKDROP BACKDROP_DIR "/cabbiev2.bmp" + +#ifdef HAVE_RECORDING +/* these should be in the config.h files */ +#if CONFIG_CODEC == MAS3587F +# define DEFAULT_REC_MIC_GAIN 8 +# define DEFAULT_REC_LEFT_GAIN 2 +# define DEFAULT_REC_RIGHT_GAIN 2 +#elif CONFIG_CODEC == SWCODEC +# ifdef HAVE_UDA1380 +# define DEFAULT_REC_MIC_GAIN 16 +# define DEFAULT_REC_LEFT_GAIN 0 +# define DEFAULT_REC_RIGHT_GAIN 0 +# elif defined(HAVE_TLV320) +# define DEFAULT_REC_MIC_GAIN 0 +# define DEFAULT_REC_LEFT_GAIN 0 +# define DEFAULT_REC_RIGHT_GAIN 0 +# elif defined(HAVE_WM8975) +# define DEFAULT_REC_MIC_GAIN 16 +# define DEFAULT_REC_LEFT_GAIN 0 +# define DEFAULT_REC_RIGHT_GAIN 0 +# elif defined(HAVE_WM8758) +# define DEFAULT_REC_MIC_GAIN 16 +# define DEFAULT_REC_LEFT_GAIN 0 +# define DEFAULT_REC_RIGHT_GAIN 0 +# elif defined(HAVE_WM8731) +# define DEFAULT_REC_MIC_GAIN 16 +# define DEFAULT_REC_LEFT_GAIN 0 +# define DEFAULT_REC_RIGHT_GAIN 0 +# endif +#endif + +#endif /* HAVE_RECORDING */ + +#if (CONFIG_PLATFORM & PLATFORM_ANDROID) +#define DEFAULT_TAGCACHE_SCAN_PATHS "/sdcard" +#else +#define DEFAULT_TAGCACHE_SCAN_PATHS "/" +#endif + +#ifdef HAVE_TOUCHSCREEN + +static const char* list_pad_formatter(char *buffer, size_t buffer_size, + int val, const char *unit) +{ + switch (val) + { + case -1: return str(LANG_AUTOMATIC); + case 0: return str(LANG_OFF); + default: break; + } + snprintf(buffer, buffer_size, "%d %s", val, unit); + return buffer; +} + +static int32_t list_pad_getlang(int value, int unit) +{ + switch (value) + { + case -1: return LANG_AUTOMATIC; + case 0: return LANG_OFF; + default: return TALK_ID(value, unit); + } +} + +#endif /* HAVE_TOUCHSCREEN */ +static const char* formatter_unit_0_is_off(char *buffer, size_t buffer_size, + int val, const char *unit) +{ + if (val == 0) + return str(LANG_OFF); + else + snprintf(buffer, buffer_size, "%d %s", val, unit); + return buffer; +} + +static int32_t getlang_unit_0_is_off(int value, int unit) +{ + if (value == 0) + return LANG_OFF; + else + return TALK_ID(value,unit); +} + +static const char* formatter_unit_0_is_skip_track(char *buffer, size_t buffer_size, + int val, const char *unit) +{ + (void)unit; + if (val == -1) + return str(LANG_SKIP_OUTRO); + else if (val == 0) + return str(LANG_SKIP_TRACK); + else if (val % 60 == 0) + snprintf(buffer, buffer_size, "%d min", val/60); + else + snprintf(buffer, buffer_size, "%d s", val); + return buffer; +} + +static int32_t getlang_unit_0_is_skip_track(int value, int unit) +{ + (void)unit; + if (value == -1) + return LANG_SKIP_OUTRO; + else if (value == 0) + return LANG_SKIP_TRACK; + else if (value % 60 == 0) + return TALK_ID(value/60, UNIT_MIN); + else + return TALK_ID(value, UNIT_SEC); +} + +#ifdef HAVE_BACKLIGHT +#ifdef SIMULATOR +#define DEFAULT_BACKLIGHT_TIMEOUT 0 +#else +#define DEFAULT_BACKLIGHT_TIMEOUT 15 +#endif +static const char* backlight_formatter(char *buffer, size_t buffer_size, + int val, const char *unit) +{ + if (val == -1) + return str(LANG_OFF); + else if (val == 0) + return str(LANG_ON); + else + snprintf(buffer, buffer_size, "%d %s", val, unit); + return buffer; +} +static int32_t backlight_getlang(int value, int unit) +{ + if (value == -1) + return LANG_OFF; + else if (value == 0) + return LANG_ON; + else + return TALK_ID(value, unit); +} +#endif + +#ifndef HAVE_WHEEL_ACCELERATION +static const char* scanaccel_formatter(char *buffer, size_t buffer_size, + int val, const char *unit) +{ + (void)unit; + if (val == 0) + return str(LANG_OFF); + else + snprintf(buffer, buffer_size, "Speed up every %ds", val); + return buffer; +} +#endif + +#if CONFIG_CODEC == SWCODEC +static void crossfeed_cross_set(int val) +{ + (void)val; + dsp_set_crossfeed_cross_params(global_settings.crossfeed_cross_gain, + global_settings.crossfeed_hf_attenuation, + global_settings.crossfeed_hf_cutoff); +} + +static void compressor_set(int val) +{ + (void)val; + dsp_set_compressor(&global_settings.compressor_settings); +} + +static const char* db_format(char* buffer, size_t buffer_size, int value, + const char* unit) +{ + int v = abs(value); + + snprintf(buffer, buffer_size, "%s%d.%d %s", value < 0 ? "-" : "", + v / 10, v % 10, unit); + return buffer; +} + +static int32_t get_dec_talkid(int value, int unit) +{ + return TALK_ID_DECIMAL(value, 1, unit); +} + +static int32_t get_precut_talkid(int value, int unit) +{ + return TALK_ID_DECIMAL(-value, 1, unit); +} + +#endif +#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) +static void set_mdb_enable(bool value) +{ + sound_set_mdb_enable((int)value); +} +static void set_superbass(bool value) +{ + sound_set_superbass((int)value); +} +#endif + +#ifdef HAVE_QUICKSCREEN +static int find_setting_by_name(char*name) +{ + int i = 0; + const struct settings_list *setting; + if (!strcmp(name, "-")) + return -1; + while (icfg_name && !strcmp(setting->cfg_name, name)) + { + return i; + } + i++; + } + return -1; +} +static void qs_load_from_cfg(void* var, char*value) +{ + *(int*)var = find_setting_by_name(value); +} +static char* qs_write_to_cfg(void* setting, char*buf, int buf_len) +{ + int index = *(int*)setting; + if (index < 0 || index >= nb_settings - 1) + { + strlcpy(buf, "-", buf_len); + return buf; + } + const struct settings_list *var = &settings[index]; + strlcpy(buf, var->cfg_name, buf_len); + return buf; +} +static bool qs_is_changed(void* setting, void* defaultval) +{ + int i = *(int*)setting; + if (i < 0 || i >= nb_settings) + return false; + const struct settings_list *var = &settings[i]; + return var != find_setting(defaultval, NULL); +} +static void qs_set_default(void* setting, void* defaultval) +{ + if (defaultval == NULL) + *(int*)setting = -1; + find_setting(defaultval, (int*)setting); +} +#endif +#ifdef HAVE_TOUCHSCREEN + +#if defined(APPLICATION) \ + || defined(ONDA_VX747) \ + || defined(ONDA_VX767) \ + || defined(ONDA_VX747P) \ + || defined(ONDA_VX777) + +#define DEFAULT_TOUCHSCREEN_MODE TOUCHSCREEN_POINT +#else +#define DEFAULT_TOUCHSCREEN_MODE TOUCHSCREEN_BUTTON +#endif + +static void tsc_load_from_cfg(void* setting, char*value) +{ + struct touchscreen_parameter *var = (struct touchscreen_parameter*) setting; + + /* Replacement for sscanf(value, "%d ..., &var->A, ...); */ + int vals[7], count = 0; + while(*value != 0 && count < 7) + { + if(isspace(*value)) + value++; + else + { + vals[count++] = atoi(value); + while(!isspace(*value)) + value++; + } + } + var->A = vals[0]; + var->B = vals[1]; + var->C = vals[2]; + var->D = vals[3]; + var->E = vals[4]; + var->F = vals[5]; + var->divider = vals[6]; +} + +static char* tsc_write_to_cfg(void* setting, char*buf, int buf_len) +{ + const struct touchscreen_parameter *var = (const struct touchscreen_parameter*) setting; + snprintf(buf, buf_len, "%d %d %d %d %d %d %d", var->A, var->B, var->C, var->D, var->E, var->F, var->divider); + return buf; +} +static bool tsc_is_changed(void* setting, void* defaultval) +{ + return memcmp(setting, defaultval, sizeof(struct touchscreen_parameter)) != 0; +} +static void tsc_set_default(void* setting, void* defaultval) +{ + memcpy(setting, defaultval, sizeof(struct touchscreen_parameter)); +} +#endif +#ifdef HAVE_HOTKEY +static const char* hotkey_formatter(char* buffer, size_t buffer_size, int value, + const char* unit) +{ + (void)buffer; + (void)buffer_size; + (void)unit; + return str(get_hotkey_lang_id(value)); +} +static int32_t hotkey_getlang(int value, int unit) +{ + (void)unit; + return get_hotkey_lang_id(value); +} +#endif /* HAVE_HOTKEY */ +const struct settings_list settings[] = { + /* sound settings */ + SOUND_SETTING(F_NO_WRAP,volume, LANG_VOLUME, "volume", SOUND_VOLUME), + SOUND_SETTING(0, balance, LANG_BALANCE, "balance", SOUND_BALANCE), +/* Tone controls */ +#ifdef AUDIOHW_HAVE_BASS + SOUND_SETTING(F_NO_WRAP,bass, LANG_BASS, "bass", SOUND_BASS), +#endif +#ifdef AUDIOHW_HAVE_TREBLE + SOUND_SETTING(F_NO_WRAP,treble, LANG_TREBLE, "treble", SOUND_TREBLE), +#endif +/* Hardware EQ tone controls */ +#ifdef AUDIOHW_HAVE_EQ +/* Band gain is generic */ + SOUND_SETTING(F_NO_WRAP, hw_eq_bands[AUDIOHW_EQ_BAND1].gain, + LANG_HW_EQ_GAIN, "tone band1 gain", SOUND_EQ_BAND1_GAIN), +#ifdef AUDIOHW_HAVE_EQ_BAND2 + SOUND_SETTING(F_NO_WRAP, hw_eq_bands[AUDIOHW_EQ_BAND2].gain, + LANG_HW_EQ_GAIN, "tone band2 gain", SOUND_EQ_BAND2_GAIN), +#endif /* AUDIOHW_HAVE_EQ_BAND2 */ +#ifdef AUDIOHW_HAVE_EQ_BAND3 + SOUND_SETTING(F_NO_WRAP, hw_eq_bands[AUDIOHW_EQ_BAND3].gain, + LANG_HW_EQ_GAIN, "tone band3 gain", SOUND_EQ_BAND3_GAIN), +#endif /* AUDIOHW_HAVE_EQ_BAND3 */ +#ifdef AUDIOHW_HAVE_EQ_BAND4 + SOUND_SETTING(F_NO_WRAP, hw_eq_bands[AUDIOHW_EQ_BAND4].gain, + LANG_HW_EQ_GAIN, "tone band4 gain", SOUND_EQ_BAND4_GAIN), +#endif /* AUDIOHW_HAVE_EQ_BAND4 */ +#ifdef AUDIOHW_HAVE_EQ_BAND5 + SOUND_SETTING(F_NO_WRAP, hw_eq_bands[AUDIOHW_EQ_BAND5].gain, + LANG_HW_EQ_GAIN, "tone band5 gain", SOUND_EQ_BAND5_GAIN), +#endif /* AUDIOHW_HAVE_EQ_BAND5 */ +#ifdef HAVE_WM8978 + /* Frequencies vary with samplerate but at least the user has an idea + * about the bands and it will be correct with normal playback rates. */ +/* Band 1 */ + STRINGCHOICE_SETTING(F_SOUNDSETTING, + hw_eq_bands[AUDIOHW_EQ_BAND1].frequency, + LANG_HW_EQ_FREQUENCY, 0,"tone band1 frequency", + "80 Hz,105 Hz,135 Hz,175 Hz", + sound_set_hw_eq_band1_frequency, 4, + TALK_ID(80, UNIT_HERTZ), TALK_ID(105, UNIT_HERTZ), + TALK_ID(135, UNIT_HERTZ), TALK_ID(175, UNIT_HERTZ)), +/* Band 2 */ + STRINGCHOICE_SETTING(F_SOUNDSETTING, + hw_eq_bands[AUDIOHW_EQ_BAND2].frequency, + LANG_HW_EQ_FREQUENCY, 0,"tone band2 frequency", + "230 Hz,300 Hz,385 Hz,500 Hz", + sound_set_hw_eq_band2_frequency, 4, + TALK_ID(230, UNIT_HERTZ), TALK_ID(300, UNIT_HERTZ), + TALK_ID(385, UNIT_HERTZ), TALK_ID(500, UNIT_HERTZ)), + CHOICE_SETTING(F_SOUNDSETTING, hw_eq_bands[AUDIOHW_EQ_BAND2].width, + LANG_HW_EQ_WIDTH, 0, "tone band2 width", "narrow,wide", + sound_set_hw_eq_band2_width, 2, + ID2P(LANG_HW_EQ_WIDTH_NARROW), ID2P(LANG_HW_EQ_WIDTH_WIDE)), +/* Band 3 */ + STRINGCHOICE_SETTING(F_SOUNDSETTING, + hw_eq_bands[AUDIOHW_EQ_BAND3].frequency, + LANG_HW_EQ_FREQUENCY, 0, "tone band3 frequency", + "650 Hz,850 Hz,1.1 kHz,1.4 kHz", + sound_set_hw_eq_band3_frequency, 4, + TALK_ID(650, UNIT_HERTZ), TALK_ID(850, UNIT_HERTZ), + TALK_ID_DECIMAL(11, 1, UNIT_KHZ), + TALK_ID_DECIMAL(14, 1, UNIT_KHZ)), + CHOICE_SETTING(F_SOUNDSETTING,hw_eq_bands[AUDIOHW_EQ_BAND3].width, + LANG_HW_EQ_WIDTH, 0, "tone band3 width", "narrow,wide", + sound_set_hw_eq_band3_width, 2, + ID2P(LANG_HW_EQ_WIDTH_NARROW), ID2P(LANG_HW_EQ_WIDTH_WIDE)), +/* Band 4 */ + STRINGCHOICE_SETTING(F_SOUNDSETTING, + hw_eq_bands[AUDIOHW_EQ_BAND4].frequency, + LANG_HW_EQ_FREQUENCY, 0, "tone band4 frequency", + "1.8 kHz,2.4 kHz,3.2 kHz,4.1 kHz", + sound_set_hw_eq_band4_frequency, 4, + TALK_ID_DECIMAL(18, 1, UNIT_KHZ), + TALK_ID_DECIMAL(24, 1, UNIT_KHZ), + TALK_ID_DECIMAL(32, 1, UNIT_KHZ), + TALK_ID_DECIMAL(41, 1, UNIT_KHZ)), + CHOICE_SETTING(F_SOUNDSETTING, hw_eq_bands[AUDIOHW_EQ_BAND4].width, + LANG_HW_EQ_WIDTH, 0, "tone band4 width", "narrow,wide", + sound_set_hw_eq_band4_width, 2, + ID2P(LANG_HW_EQ_WIDTH_NARROW), ID2P(LANG_HW_EQ_WIDTH_WIDE)), +/* Band 5 */ + STRINGCHOICE_SETTING(F_SOUNDSETTING, + hw_eq_bands[AUDIOHW_EQ_BAND5].frequency, + LANG_HW_EQ_FREQUENCY, 0, "tone band5 frequency", + "5.3 kHz,6.9 kHz,9.0 kHz,11.7 kHz", + sound_set_hw_eq_band5_frequency, 4, + TALK_ID_DECIMAL(53, 1, UNIT_KHZ), + TALK_ID_DECIMAL(69, 1, UNIT_KHZ), + TALK_ID_DECIMAL(90, 1, UNIT_KHZ), + TALK_ID_DECIMAL(117, 1, UNIT_KHZ)), +#endif /* HAVE_WM8978 */ +#endif /* AUDIOHW_HAVE_EQ */ +/* 3-d enhancement effect */ +#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) + SOUND_SETTING(0,loudness, LANG_LOUDNESS, "loudness", SOUND_LOUDNESS), + STRINGCHOICE_SETTING(F_SOUNDSETTING,avc,LANG_AUTOVOL,0,"auto volume", + "off,20ms,2,4,8,", sound_set_avc, 5, + LANG_OFF,TALK_ID(20, UNIT_MS),TALK_ID(2, UNIT_SEC), + TALK_ID(4, UNIT_SEC),TALK_ID(8, UNIT_SEC)), + OFFON_SETTING(F_SOUNDSETTING, superbass, LANG_SUPERBASS, false, "superbass", + set_superbass), +#endif + + CHOICE_SETTING(F_SOUNDSETTING, channel_config, LANG_CHANNEL_CONFIGURATION, + 0,"channels", + "stereo,mono,custom,mono left,mono right,karaoke", + sound_set_channels, 6, + ID2P(LANG_CHANNEL_STEREO), ID2P(LANG_CHANNEL_MONO), + ID2P(LANG_CHANNEL_CUSTOM), ID2P(LANG_CHANNEL_LEFT), + ID2P(LANG_CHANNEL_RIGHT), ID2P(LANG_CHANNEL_KARAOKE)), + SOUND_SETTING(F_SOUNDSETTING, stereo_width, LANG_STEREO_WIDTH, + "stereo_width", SOUND_STEREO_WIDTH), +#ifdef AUDIOHW_HAVE_DEPTH_3D + SOUND_SETTING(0,depth_3d, LANG_DEPTH_3D, "3-d enhancement", + SOUND_DEPTH_3D), +#endif + /* playback */ + OFFON_SETTING(0, playlist_shuffle, LANG_SHUFFLE, false, "shuffle", NULL), + SYSTEM_SETTING(NVRAM(4), resume_index, -1), + SYSTEM_SETTING(NVRAM(4), resume_crc32, -1), + SYSTEM_SETTING(NVRAM(4), resume_offset, -1), + CHOICE_SETTING(0, repeat_mode, LANG_REPEAT, REPEAT_OFF, "repeat", + "off,all,one,shuffle" +#ifdef AB_REPEAT_ENABLE + ",ab" +#endif + , NULL, +#ifdef AB_REPEAT_ENABLE + 5, +#else + 4, +#endif + ID2P(LANG_OFF), ID2P(LANG_ALL), ID2P(LANG_REPEAT_ONE), + ID2P(LANG_SHUFFLE) +#ifdef AB_REPEAT_ENABLE + ,ID2P(LANG_REPEAT_AB) +#endif + ), /* CHOICE_SETTING( repeat_mode ) */ + /* LCD */ +#ifdef HAVE_LCD_CONTRAST + /* its easier to leave this one un-macro()ed for the time being */ + { F_T_INT|F_DEF_ISFUNC|F_INT_SETTING, &global_settings.contrast, + LANG_CONTRAST, FUNCTYPE(lcd_default_contrast), "contrast", NULL , { + .int_setting = (struct int_setting[]) { + { lcd_set_contrast, UNIT_INT, MIN_CONTRAST_SETTING, + MAX_CONTRAST_SETTING, 1, NULL, NULL }}}}, +#endif +#ifdef HAVE_BACKLIGHT + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, backlight_timeout, LANG_BACKLIGHT, + DEFAULT_BACKLIGHT_TIMEOUT, + "backlight timeout", off_on, UNIT_SEC, backlight_formatter, + backlight_getlang, backlight_set_timeout, 20, + -1,0,1,2,3,4,5,6,7,8,9,10,15,20,25,30,45,60,90,120), +#if CONFIG_CHARGING + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, backlight_timeout_plugged, + LANG_BACKLIGHT_ON_WHEN_CHARGING, 10, + "backlight timeout plugged", off_on, UNIT_SEC, + backlight_formatter, backlight_getlang, + backlight_set_timeout_plugged, 20, + -1,0,1,2,3,4,5,6,7,8,9,10,15,20,25,30,45,60,90,120), +#endif +#endif /* HAVE_BACKLIGHT */ +#ifdef HAVE_LCD_BITMAP +#ifdef HAVE_LCD_INVERT + BOOL_SETTING(0, invert, LANG_INVERT, false ,"invert", off_on, + LANG_INVERT_LCD_INVERSE, LANG_NORMAL, lcd_set_invert_display), +#endif +#ifdef HAVE_LCD_FLIP + OFFON_SETTING(0, flip_display, LANG_FLIP_DISPLAY, false, "flip display", + NULL), +#endif + /* display */ + CHOICE_SETTING(F_TEMPVAR|F_THEMESETTING, cursor_style, LANG_INVERT_CURSOR, + #ifdef HAVE_LCD_COLOR + 3, "selector type", + "pointer,bar (inverse),bar (color),bar (gradient)", NULL, 4, + ID2P(LANG_INVERT_CURSOR_POINTER), + ID2P(LANG_INVERT_CURSOR_BAR), + ID2P(LANG_INVERT_CURSOR_COLOR), + ID2P(LANG_INVERT_CURSOR_GRADIENT)), + #else + 1, "selector type", "pointer,bar (inverse)", NULL, 2, + ID2P(LANG_INVERT_CURSOR_POINTER), + ID2P(LANG_INVERT_CURSOR_BAR)), + #endif + CHOICE_SETTING(F_THEMESETTING|F_TEMPVAR, statusbar, + LANG_STATUS_BAR, STATUSBAR_TOP, "statusbar","off,top,bottom", + NULL, 3, ID2P(LANG_OFF), ID2P(LANG_STATUSBAR_TOP), + ID2P(LANG_STATUSBAR_BOTTOM)), +#ifdef HAVE_REMOTE_LCD + CHOICE_SETTING(F_THEMESETTING|F_TEMPVAR, remote_statusbar, + LANG_REMOTE_STATUSBAR, STATUSBAR_TOP, "remote statusbar","off,top,bottom", + NULL, 3, ID2P(LANG_OFF), ID2P(LANG_STATUSBAR_TOP), + ID2P(LANG_STATUSBAR_BOTTOM)), +#endif + CHOICE_SETTING(F_THEMESETTING|F_TEMPVAR, scrollbar, + LANG_SCROLL_BAR, SCROLLBAR_LEFT, "scrollbar","off,left,right", + NULL, 3, ID2P(LANG_OFF), ID2P(LANG_LEFT), ID2P(LANG_RIGHT)), + INT_SETTING(F_THEMESETTING, scrollbar_width, LANG_SCROLLBAR_WIDTH, 6, + "scrollbar width",UNIT_INT, 3, MAX(LCD_WIDTH/10,25), 1, + NULL, NULL, NULL), +#ifdef HAVE_TOUCHSCREEN + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, list_line_padding, LANG_LIST_LINE_PADDING, + -1, "list padding", "auto,off", UNIT_PIXEL, list_pad_formatter, + list_pad_getlang, NULL, 16, + -1,0,2,4,6,8,10,12,16,20,24,28,32,38,44,50), +#endif +#if CONFIG_KEYPAD == RECORDER_PAD + OFFON_SETTING(F_THEMESETTING,buttonbar, LANG_BUTTON_BAR ,true,"buttonbar", NULL), +#endif + CHOICE_SETTING(F_THEMESETTING, volume_type, LANG_VOLUME_DISPLAY, 0, + "volume display", graphic_numeric, NULL, 2, + ID2P(LANG_DISPLAY_GRAPHIC), + ID2P(LANG_DISPLAY_NUMERIC)), + CHOICE_SETTING(F_THEMESETTING, battery_display, LANG_BATTERY_DISPLAY, 0, + "battery display", graphic_numeric, NULL, 2, + ID2P(LANG_DISPLAY_GRAPHIC), ID2P(LANG_DISPLAY_NUMERIC)), +#if CONFIG_RTC + CHOICE_SETTING(0, timeformat, LANG_TIMEFORMAT, 0, + "time format", "24hour,12hour", NULL, 2, + ID2P(LANG_24_HOUR_CLOCK), ID2P(LANG_12_HOUR_CLOCK)), +#endif +#endif /* HAVE_LCD_BITMAP */ + OFFON_SETTING(0,show_icons, LANG_SHOW_ICONS ,true,"show icons", NULL), + /* system */ + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, poweroff, LANG_POWEROFF_IDLE, 10, + "idle poweroff", "off", UNIT_MIN, formatter_unit_0_is_off, + getlang_unit_0_is_off, set_poweroff_timeout, 15, + 0,1,2,3,4,5,6,7,8,9,10,15,30,45,60), + SYSTEM_SETTING(NVRAM(4), runtime, 0), + SYSTEM_SETTING(NVRAM(4), topruntime, 0), + INT_SETTING(F_BANFROMQS, max_files_in_playlist, + LANG_MAX_FILES_IN_PLAYLIST, +#if MEMORYSIZE > 1 + 10000, +#else + 400, +#endif + "max files in playlist", UNIT_INT, 1000, 32000, 1000, + NULL, NULL, NULL), + INT_SETTING(F_BANFROMQS, max_files_in_dir, LANG_MAX_FILES_IN_DIR, +#if MEMORYSIZE > 1 + 1000, +#else + 200, +#endif + "max files in dir", UNIT_INT, 50, 10000, 50, + NULL, NULL, NULL), +/* use this setting for user code even if there's no exchangable battery + * support enabled */ +#if BATTERY_CAPACITY_DEFAULT > 0 +/* define min/max/inc for this file if there's only one battery */ +#ifndef BATTERY_CAPACITY_MIN +#define BATTERY_CAPACITY_MIN BATTERY_CAPACITY_DEFAULT +#define BATTERY_CAPACITY_MAX BATTERY_CAPACITY_DEFAULT +#define BATTERY_CAPACITY_INC 0 +#endif +#if defined(IPOD_VIDEO) && !defined(SIMULATOR) + /* its easier to leave this one un-macro()ed for the time being */ + { F_T_INT|F_DEF_ISFUNC|F_INT_SETTING, &global_settings.battery_capacity, + LANG_BATTERY_CAPACITY, FUNCTYPE(battery_default_capacity), + "battery capacity", NULL , { + .int_setting = (struct int_setting[]) { + { set_battery_capacity, UNIT_MAH, BATTERY_CAPACITY_MIN, + BATTERY_CAPACITY_MAX, BATTERY_CAPACITY_INC, NULL, NULL }}}}, +#else /* IPOD_VIDEO */ + INT_SETTING(0, battery_capacity, LANG_BATTERY_CAPACITY, + BATTERY_CAPACITY_DEFAULT, "battery capacity", UNIT_MAH, + BATTERY_CAPACITY_MIN, BATTERY_CAPACITY_MAX, + BATTERY_CAPACITY_INC, NULL, NULL, set_battery_capacity), +#endif /* IPOD_VIDEO */ +#endif +#if CONFIG_CHARGING + OFFON_SETTING(NVRAM(1), car_adapter_mode, + LANG_CAR_ADAPTER_MODE, false, "car adapter mode", NULL), +#endif +#ifdef IPOD_ACCESSORY_PROTOCOL + CHOICE_SETTING(0, serial_bitrate, LANG_SERIAL_BITRATE, 0, "serial bitrate", + "auto,9600,19200,38400,57600", iap_bitrate_set, 5, ID2P(LANG_SERIAL_BITRATE_AUTO), + ID2P(LANG_SERIAL_BITRATE_9600),ID2P(LANG_SERIAL_BITRATE_19200), + ID2P(LANG_SERIAL_BITRATE_38400),ID2P(LANG_SERIAL_BITRATE_57600)), +#endif +#ifdef HAVE_ACCESSORY_SUPPLY + OFFON_SETTING(0, accessory_supply, LANG_ACCESSORY_SUPPLY, + true, "accessory power supply", accessory_supply_set), +#endif +#ifdef HAVE_LINEOUT_POWEROFF + OFFON_SETTING(0, lineout_active, LANG_LINEOUT_ONOFF, + true, "lineout", lineout_set), +#endif + /* tuner */ +#if CONFIG_TUNER + OFFON_SETTING(0,fm_force_mono, LANG_FM_MONO_MODE, + false, "force fm mono", toggle_mono_mode), + SYSTEM_SETTING(NVRAM(4),last_frequency,0), +#endif + +#if BATTERY_TYPES_COUNT > 1 + CHOICE_SETTING(0, battery_type, LANG_BATTERY_TYPE, 0, "battery type", + "alkaline,nimh", NULL, 2, ID2P(LANG_BATTERY_TYPE_ALKALINE), + ID2P(LANG_BATTERY_TYPE_NIMH)), +#endif +#ifdef HAVE_REMOTE_LCD + /* remote lcd */ + INT_SETTING(0, remote_contrast, LANG_CONTRAST, + DEFAULT_REMOTE_CONTRAST_SETTING, "remote contrast", UNIT_INT, + MIN_REMOTE_CONTRAST_SETTING, MAX_REMOTE_CONTRAST_SETTING, 1, + NULL, NULL, lcd_remote_set_contrast), + BOOL_SETTING(0, remote_invert, LANG_INVERT, false ,"remote invert", off_on, + LANG_INVERT_LCD_INVERSE, LANG_NORMAL, + lcd_remote_set_invert_display), + OFFON_SETTING(0,remote_flip_display, LANG_FLIP_DISPLAY, + false,"remote flip display", NULL), + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, remote_backlight_timeout, + LANG_BACKLIGHT, 5, "remote backlight timeout", off_on, + UNIT_SEC, backlight_formatter, backlight_getlang, + remote_backlight_set_timeout, 20, + -1,0,1,2,3,4,5,6,7,8,9,10,15,20,25,30,45,60,90,120), +#if CONFIG_CHARGING + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, remote_backlight_timeout_plugged, + LANG_BACKLIGHT_ON_WHEN_CHARGING, 10, + "remote backlight timeout plugged", off_on, UNIT_SEC, + backlight_formatter, backlight_getlang, + remote_backlight_set_timeout_plugged, 20, + -1,0,1,2,3,4,5,6,7,8,9,10,15,20,25,30,45,60,90,120), +#endif +#ifdef HAVE_REMOTE_LCD_TICKING + OFFON_SETTING(0, remote_reduce_ticking, LANG_REDUCE_TICKING, + false,"remote reduce ticking", NULL), +#endif +#endif + +#ifdef HAVE_BACKLIGHT + OFFON_SETTING(0, bl_filter_first_keypress, + LANG_BACKLIGHT_FILTER_FIRST_KEYPRESS, false, + "backlight filters first keypress", NULL), +#ifdef HAVE_REMOTE_LCD + OFFON_SETTING(0, remote_bl_filter_first_keypress, + LANG_BACKLIGHT_FILTER_FIRST_KEYPRESS, false, + "backlight filters first remote keypress", NULL), +#endif +#endif /* HAVE_BACKLIGHT */ + +/** End of old RTC config block **/ + +#ifdef HAVE_BACKLIGHT + OFFON_SETTING(0, caption_backlight, LANG_CAPTION_BACKLIGHT, + false, "caption backlight", NULL), +#ifdef HAVE_REMOTE_LCD + OFFON_SETTING(0, remote_caption_backlight, LANG_CAPTION_BACKLIGHT, + false, "remote caption backlight", NULL), +#endif +#ifdef HAVE_BACKLIGHT_BRIGHTNESS + INT_SETTING(F_NO_WRAP, brightness, LANG_BRIGHTNESS, + DEFAULT_BRIGHTNESS_SETTING, "brightness",UNIT_INT, + MIN_BRIGHTNESS_SETTING, MAX_BRIGHTNESS_SETTING, 1, + NULL, NULL, backlight_set_brightness), +#endif + /* backlight fading */ +#if defined(HAVE_BACKLIGHT_FADING_INT_SETTING) + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, backlight_fade_in, + LANG_BACKLIGHT_FADE_IN, 300, "backlight fade in", "off", + UNIT_MS, formatter_unit_0_is_off, getlang_unit_0_is_off, + backlight_set_fade_in, 7, 0,100,200,300,500,1000,2000), + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, backlight_fade_out, + LANG_BACKLIGHT_FADE_OUT, 2000, "backlight fade out", "off", + UNIT_MS, formatter_unit_0_is_off, getlang_unit_0_is_off, + backlight_set_fade_out, 10, + 0,100,200,300,500,1000,2000,3000,5000,10000), +#elif defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING) + OFFON_SETTING(0, backlight_fade_in, LANG_BACKLIGHT_FADE_IN, + true, "backlight fade in", backlight_set_fade_in), + OFFON_SETTING(0, backlight_fade_out, LANG_BACKLIGHT_FADE_OUT, + true, "backlight fade out", backlight_set_fade_out), +#endif +#endif /* HAVE_BACKLIGHT */ + INT_SETTING(F_PADTITLE, scroll_speed, LANG_SCROLL_SPEED, 9,"scroll speed", + UNIT_INT, 0, 17, 1, NULL, NULL, lcd_scroll_speed), + INT_SETTING(F_PADTITLE, scroll_delay, LANG_SCROLL_DELAY, 1000, + "scroll delay", UNIT_MS, 0, 2500, 100, NULL, + NULL, lcd_scroll_delay), + INT_SETTING(0, bidir_limit, LANG_BIDIR_SCROLL, 50, "bidir limit", + UNIT_PERCENT, 0, 200, 25, NULL, NULL, lcd_bidir_scroll), +#ifdef HAVE_REMOTE_LCD + INT_SETTING(0, remote_scroll_speed, LANG_SCROLL_SPEED, 9, + "remote scroll speed", UNIT_INT, 0,17, 1, + NULL, NULL, lcd_remote_scroll_speed), + INT_SETTING(0, remote_scroll_step, LANG_SCROLL_STEP, 6, + "remote scroll step", UNIT_PIXEL, 1, LCD_REMOTE_WIDTH, 1, NULL, + NULL, lcd_remote_scroll_step), + INT_SETTING(0, remote_scroll_delay, LANG_SCROLL_DELAY, 1000, + "remote scroll delay", UNIT_MS, 0, 2500, 100, NULL, NULL, + lcd_remote_scroll_delay), + INT_SETTING(0, remote_bidir_limit, LANG_BIDIR_SCROLL, 50, + "remote bidir limit", UNIT_PERCENT, 0, 200, 25, NULL, NULL, + lcd_remote_bidir_scroll), +#endif +#ifdef HAVE_LCD_BITMAP + OFFON_SETTING(0, offset_out_of_view, LANG_SCREEN_SCROLL_VIEW, + false, "Screen Scrolls Out Of View", + gui_list_screen_scroll_out_of_view), + INT_SETTING(F_PADTITLE, scroll_step, LANG_SCROLL_STEP, 6, "scroll step", + UNIT_PIXEL, 1, LCD_WIDTH, 1, NULL, NULL, lcd_scroll_step), + INT_SETTING(F_PADTITLE, screen_scroll_step, LANG_SCREEN_SCROLL_STEP, 16, + "screen scroll step", UNIT_PIXEL, 1, LCD_WIDTH, 1, NULL, NULL, + gui_list_screen_scroll_step), +#endif /* HAVE_LCD_BITMAP */ + OFFON_SETTING(0,scroll_paginated,LANG_SCROLL_PAGINATED, + false,"scroll paginated",NULL), +#ifdef HAVE_LCD_COLOR + + {F_T_INT|F_RGB|F_THEMESETTING ,&global_settings.fg_color,-1, + INT(DEFAULT_THEME_FOREGROUND),"foreground color",NULL,UNUSED}, + {F_T_INT|F_RGB|F_THEMESETTING ,&global_settings.bg_color,-1, + INT(DEFAULT_THEME_BACKGROUND),"background color",NULL,UNUSED}, + {F_T_INT|F_RGB|F_THEMESETTING ,&global_settings.lss_color,-1, + INT(DEFAULT_THEME_SELECTOR_START),"line selector start color",NULL, + UNUSED}, + {F_T_INT|F_RGB|F_THEMESETTING ,&global_settings.lse_color,-1, + INT(DEFAULT_THEME_SELECTOR_END),"line selector end color",NULL,UNUSED}, + {F_T_INT|F_RGB|F_THEMESETTING ,&global_settings.lst_color,-1, + INT(DEFAULT_THEME_SELECTOR_TEXT),"line selector text color",NULL, + UNUSED}, + +#endif + /* more playback */ + OFFON_SETTING(0,play_selected,LANG_PLAY_SELECTED,true,"play selected",NULL), + OFFON_SETTING(0,party_mode,LANG_PARTY_MODE,false,"party mode",NULL), + OFFON_SETTING(0,fade_on_stop,LANG_FADE_ON_STOP,true,"volume fade",NULL), + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, ff_rewind_min_step, + LANG_FFRW_STEP, 1, "scan min step", NULL, UNIT_SEC, + NULL, NULL, NULL, 14, 1,2,3,4,5,6,8,10,15,20,25,30,45,60), + CHOICE_SETTING(0, ff_rewind_accel, LANG_FFRW_ACCEL, 2, + "seek acceleration", "very fast,fast,normal,slow,very slow", NULL, 5, + ID2P(LANG_VERY_FAST), ID2P(LANG_FAST), ID2P(LANG_NORMAL), + ID2P(LANG_SLOW) , ID2P(LANG_VERY_SLOW)), +#if (CONFIG_CODEC == SWCODEC) && defined(HAVE_DISK_STORAGE) + STRINGCHOICE_SETTING(0, buffer_margin, LANG_MP3BUFFER_MARGIN, 0,"antiskip", + "5s,15s,30s,1min,2min,3min,5min,10min", NULL, 8, + TALK_ID(5, UNIT_SEC), TALK_ID(15, UNIT_SEC), + TALK_ID(30, UNIT_SEC), TALK_ID(1, UNIT_MIN), + TALK_ID(2, UNIT_MIN), TALK_ID(3, UNIT_MIN), + TALK_ID(5, UNIT_MIN), TALK_ID(10, UNIT_MIN)), +#elif defined(HAVE_DISK_STORAGE) + INT_SETTING(0, buffer_margin, LANG_MP3BUFFER_MARGIN, 0, "antiskip", + UNIT_SEC, 0, 7, 1, NULL, NULL, audio_set_buffer_margin), +#endif + /* disk */ +#ifdef HAVE_DISK_STORAGE + INT_SETTING(0, disk_spindown, LANG_SPINDOWN, 5, "disk spindown", + UNIT_SEC, 3, 254, 1, NULL, NULL, storage_spindown), +#endif /* HAVE_DISK_STORAGE */ + /* browser */ + TEXT_SETTING(0, start_directory, "start directory", "/", NULL, NULL), + CHOICE_SETTING(0, dirfilter, LANG_FILTER, SHOW_SUPPORTED, "show files", + "all,supported,music,playlists", NULL, 4, ID2P(LANG_ALL), + ID2P(LANG_FILTER_SUPPORTED), ID2P(LANG_FILTER_MUSIC), + ID2P(LANG_PLAYLISTS)), + /* file sorting */ + OFFON_SETTING(0, sort_case, LANG_SORT_CASE, false, "sort case", NULL), + CHOICE_SETTING(0, sort_dir, LANG_SORT_DIR, 0 , + "sort dirs", "alpha,oldest,newest", NULL, 3, + ID2P(LANG_SORT_ALPHA), ID2P(LANG_SORT_DATE), + ID2P(LANG_SORT_DATE_REVERSE)), + CHOICE_SETTING(0, sort_file, LANG_SORT_FILE, 0 , + "sort files", "alpha,oldest,newest,type", NULL, 4, + ID2P(LANG_SORT_ALPHA), ID2P(LANG_SORT_DATE), + ID2P(LANG_SORT_DATE_REVERSE) , ID2P(LANG_SORT_TYPE)), + CHOICE_SETTING(0, interpret_numbers, LANG_SORT_INTERPRET_NUMBERS, 1, + "sort interpret number", "digits,numbers",NULL, 2, + ID2P(LANG_SORT_INTERPRET_AS_DIGIT), + ID2P(LANG_SORT_INTERPRET_AS_NUMBERS)), + CHOICE_SETTING(0, show_filename_ext, LANG_SHOW_FILENAME_EXT, 3, + "show filename exts", "off,on,unknown,view_all", NULL , 4 , + ID2P(LANG_OFF), ID2P(LANG_ON), ID2P(LANG_UNKNOWN_TYPES), + ID2P(LANG_EXT_ONLY_VIEW_ALL)), + OFFON_SETTING(0,browse_current,LANG_FOLLOW,false,"follow playlist",NULL), + OFFON_SETTING(0,playlist_viewer_icons,LANG_SHOW_ICONS,true, + "playlist viewer icons",NULL), + OFFON_SETTING(0,playlist_viewer_indices,LANG_SHOW_INDICES,true, + "playlist viewer indices",NULL), + CHOICE_SETTING(0, playlist_viewer_track_display, LANG_TRACK_DISPLAY, 0, + "playlist viewer track display","track name,full path", + NULL, 2, ID2P(LANG_DISPLAY_TRACK_NAME_ONLY), + ID2P(LANG_DISPLAY_FULL_PATH)), + CHOICE_SETTING(0, recursive_dir_insert, LANG_RECURSE_DIRECTORY , RECURSE_ON, + "recursive directory insert", off_on_ask, NULL , 3 , + ID2P(LANG_OFF), ID2P(LANG_ON), ID2P(LANG_ASK)), + /* bookmarks */ + CHOICE_SETTING(0, autocreatebookmark, LANG_BOOKMARK_SETTINGS_AUTOCREATE, + BOOKMARK_NO, "autocreate bookmarks", + "off,on,ask,recent only - on,recent only - ask", NULL, 5, + ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES), + ID2P(LANG_ASK), ID2P(LANG_BOOKMARK_SETTINGS_RECENT_ONLY_YES), + ID2P(LANG_BOOKMARK_SETTINGS_RECENT_ONLY_ASK)), + OFFON_SETTING(0, autoupdatebookmark, LANG_BOOKMARK_SETTINGS_AUTOUPDATE, + false, "autoupdate bookmarks", NULL), + CHOICE_SETTING(0, autoloadbookmark, LANG_BOOKMARK_SETTINGS_AUTOLOAD, + BOOKMARK_NO, "autoload bookmarks", off_on_ask, NULL, 3, + ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES), + ID2P(LANG_ASK)), + CHOICE_SETTING(0, usemrb, LANG_BOOKMARK_SETTINGS_MAINTAIN_RECENT_BOOKMARKS, + BOOKMARK_NO, "use most-recent-bookmarks", + "off,on,unique only", NULL, 3, ID2P(LANG_SET_BOOL_NO), + ID2P(LANG_SET_BOOL_YES), + ID2P(LANG_BOOKMARK_SETTINGS_UNIQUE_ONLY)), +#ifdef HAVE_LCD_BITMAP + /* peak meter */ + STRINGCHOICE_SETTING(0, peak_meter_clip_hold, LANG_PM_CLIP_HOLD, 16, + "peak meter clip hold", + "on,1,2,3,4,5,6,7,8,9,10,15,20,25,30,45,60,90,2min" + ",3min,5min,10min,20min,45min,90min", + peak_meter_set_clip_hold, 25, LANG_PM_ETERNAL, + TALK_ID(1, UNIT_SEC), TALK_ID(2, UNIT_SEC), + TALK_ID(3, UNIT_SEC), TALK_ID(4, UNIT_SEC), + TALK_ID(5, UNIT_SEC), TALK_ID(6, UNIT_SEC), + TALK_ID(7, UNIT_SEC), TALK_ID(8, UNIT_SEC), + TALK_ID(9, UNIT_SEC), TALK_ID(10, UNIT_SEC), + TALK_ID(15, UNIT_SEC), TALK_ID(20, UNIT_SEC), + TALK_ID(25, UNIT_SEC), TALK_ID(30, UNIT_SEC), + TALK_ID(45, UNIT_SEC), TALK_ID(60, UNIT_SEC), + TALK_ID(90, UNIT_SEC), TALK_ID(2, UNIT_MIN), + TALK_ID(3, UNIT_MIN), TALK_ID(5, UNIT_MIN), + TALK_ID(10, UNIT_MIN), TALK_ID(20, UNIT_MIN), + TALK_ID(45, UNIT_MIN), TALK_ID(90, UNIT_MIN)), + STRINGCHOICE_SETTING(0, peak_meter_hold, LANG_PM_PEAK_HOLD, 3, + "peak meter hold", + "off,200ms,300ms,500ms,1,2,3,4,5,6,7,8,9,10,15,20,30,1min", + NULL, 18, LANG_OFF, TALK_ID(200, UNIT_MS), + TALK_ID(300, UNIT_MS), TALK_ID(500, UNIT_MS), + TALK_ID(1, UNIT_SEC), TALK_ID(2, UNIT_SEC), + TALK_ID(3, UNIT_SEC), TALK_ID(4, UNIT_SEC), + TALK_ID(5, UNIT_SEC), TALK_ID(6, UNIT_SEC), + TALK_ID(7, UNIT_SEC), TALK_ID(8, UNIT_SEC), + TALK_ID(9, UNIT_SEC), TALK_ID(10, UNIT_SEC), + TALK_ID(15, UNIT_SEC), TALK_ID(20, UNIT_SEC), + TALK_ID(30, UNIT_SEC), TALK_ID(60, UNIT_SEC)), + INT_SETTING(0, peak_meter_release, LANG_PM_RELEASE, 8, "peak meter release", + UNIT_PM_TICK, 1, 0x7e, 1, NULL, NULL,NULL), + OFFON_SETTING(0,peak_meter_dbfs,LANG_PM_DBFS,true,"peak meter dbfs",NULL), + {F_T_INT, &global_settings.peak_meter_min, LANG_PM_MIN,INT(60), + "peak meter min", NULL, UNUSED}, + {F_T_INT, &global_settings.peak_meter_max, LANG_PM_MAX,INT(0), + "peak meter max", NULL, UNUSED}, +#ifdef HAVE_RECORDING + OFFON_SETTING(0, peak_meter_clipcounter, LANG_PM_CLIPCOUNTER, false, + "peak meter clipcounter", NULL), +#endif /* HAVE_RECORDING */ +#endif /* HAVE_LCD_BITMAP */ +#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) + SOUND_SETTING(F_SOUNDSETTING, mdb_strength, LANG_MDB_STRENGTH, + "mdb strength", SOUND_MDB_STRENGTH), + SOUND_SETTING(F_SOUNDSETTING, mdb_harmonics, LANG_MDB_HARMONICS, + "mdb harmonics", SOUND_MDB_HARMONICS), + SOUND_SETTING(F_SOUNDSETTING, mdb_center, LANG_MDB_CENTER, + "mdb center", SOUND_MDB_CENTER), + SOUND_SETTING(F_SOUNDSETTING, mdb_shape, LANG_MDB_SHAPE, + "mdb shape", SOUND_MDB_SHAPE), + OFFON_SETTING(F_SOUNDSETTING, mdb_enable, LANG_MDB_ENABLE, + false, "mdb enable", set_mdb_enable), +#endif +#if CONFIG_CODEC == MAS3507D + OFFON_SETTING(F_SOUNDSETTING, line_in,LANG_LINE_IN,false,"line in",NULL), +#endif + /* voice */ + OFFON_SETTING(F_TEMPVAR, talk_menu, LANG_VOICE_MENU, true, "talk menu", NULL), + CHOICE_SETTING(0, talk_dir, LANG_VOICE_DIR, 0, + "talk dir", off_number_spell, NULL, 3, + ID2P(LANG_OFF), ID2P(LANG_VOICE_NUMBER), + ID2P(LANG_VOICE_SPELL)), + OFFON_SETTING(F_TEMPVAR, talk_dir_clip, LANG_VOICE_DIR_TALK, false, + "talk dir clip", NULL), + CHOICE_SETTING(0, talk_file, LANG_VOICE_FILE, 0, + "talk file", off_number_spell, NULL, 3, + ID2P(LANG_OFF), ID2P(LANG_VOICE_NUMBER), + ID2P(LANG_VOICE_SPELL)), + OFFON_SETTING(F_TEMPVAR, talk_file_clip, LANG_VOICE_FILE_TALK, false, + "talk file clip", NULL), + OFFON_SETTING(F_TEMPVAR, talk_filetype, LANG_VOICE_FILETYPE, false, + "talk filetype", NULL), + OFFON_SETTING(F_TEMPVAR, talk_battery_level, LANG_TALK_BATTERY_LEVEL, false, + "Announce Battery Level", NULL), + +#ifdef HAVE_RECORDING + /* recording */ + STRINGCHOICE_SETTING(F_RECSETTING, rec_timesplit, LANG_SPLIT_TIME, 0, + "rec timesplit", + "off,00:05,00:10,00:15,00:30,01:00,01:14,01:20,02:00," + "04:00,06:00,08:00,10:00,12:00,18:00,24:00", + NULL, 16, LANG_OFF, + TALK_ID(5, UNIT_MIN), TALK_ID(10, UNIT_MIN), + TALK_ID(15, UNIT_MIN), TALK_ID(30, UNIT_MIN), + TALK_ID(60, UNIT_MIN), TALK_ID(74, UNIT_MIN), + TALK_ID(80, UNIT_MIN), TALK_ID(2, UNIT_HOUR), + TALK_ID(4, UNIT_HOUR), TALK_ID(6, UNIT_HOUR), + TALK_ID(8, UNIT_HOUR), TALK_ID(10, UNIT_HOUR), + TALK_ID(12, UNIT_HOUR), TALK_ID(18, UNIT_HOUR), + TALK_ID(20, UNIT_HOUR), TALK_ID(24, UNIT_HOUR)), + STRINGCHOICE_SETTING(F_RECSETTING, rec_sizesplit, LANG_SPLIT_SIZE, 0, + "rec sizesplit", + "off,5MB,10MB,15MB,32MB,64MB,75MB,100MB,128MB," + "256MB,512MB,650MB,700MB,1GB,1.5GB,1.75GB", + NULL, 16, LANG_OFF, + TALK_ID(5, UNIT_MB), TALK_ID(10, UNIT_MB), + TALK_ID(15, UNIT_MB), TALK_ID(32, UNIT_MB), + TALK_ID(64, UNIT_MB), TALK_ID(75, UNIT_MB), + TALK_ID(100, UNIT_MB), TALK_ID(128, UNIT_MB), + TALK_ID(256, UNIT_MB), TALK_ID(512, UNIT_MB), + TALK_ID(650, UNIT_MB), TALK_ID(700, UNIT_MB), + TALK_ID(1024, UNIT_MB), TALK_ID(1536, UNIT_MB), + TALK_ID(1792, UNIT_MB)), + {F_T_INT|F_RECSETTING, &global_settings.rec_channels, LANG_CHANNELS, INT(0), + "rec channels","stereo,mono",UNUSED}, +#if CONFIG_CODEC == SWCODEC + {F_T_INT|F_RECSETTING, &global_settings.rec_mono_mode, + LANG_RECORDING_MONO_MODE, INT(0), "rec mono mode","L+R,L,R",UNUSED}, +#endif + CHOICE_SETTING(F_RECSETTING, rec_split_type, LANG_SPLIT_TYPE, 0, + "rec split type", "Split,Stop,Shutdown", NULL, 3, + ID2P(LANG_START_NEW_FILE), ID2P(LANG_STOP_RECORDING),ID2P(LANG_STOP_RECORDING_AND_SHUTDOWN)), + CHOICE_SETTING(F_RECSETTING, rec_split_method, LANG_SPLIT_MEASURE, 0, + "rec split method", "Time,Filesize", NULL, 2, + ID2P(LANG_TIME), ID2P(LANG_FILESIZE)), + {F_T_INT|F_RECSETTING, &global_settings.rec_source, LANG_RECORDING_SOURCE, + INT(0), "rec source", + &HAVE_MIC_REC_(",mic") + HAVE_LINE_REC_(",line") + HAVE_SPDIF_REC_(",spdif") + HAVE_FMRADIO_REC_(",fmradio")[1], + UNUSED}, + INT_SETTING(F_RECSETTING, rec_prerecord_time, LANG_RECORD_PRERECORD_TIME, 0, + "prerecording time", UNIT_SEC, 0, 30, 1, + formatter_unit_0_is_off, getlang_unit_0_is_off, NULL), + + TEXT_SETTING(F_RECSETTING, rec_directory, "rec path", + REC_BASE_DIR, NULL, NULL), +#ifdef HAVE_BACKLIGHT + CHOICE_SETTING(F_RECSETTING, cliplight, LANG_CLIP_LIGHT, 0, + "cliplight", "off,main,both,remote", NULL, +#ifdef HAVE_REMOTE_LCD + 4, ID2P(LANG_OFF), ID2P(LANG_MAIN_UNIT), + ID2P(LANG_REMOTE_MAIN), ID2P(LANG_REMOTE_UNIT) +#else + 2, ID2P(LANG_OFF), ID2P(LANG_ON) +#endif + ), +#endif +#ifdef DEFAULT_REC_MIC_GAIN + {F_T_INT|F_RECSETTING,&global_settings.rec_mic_gain, + LANG_GAIN,INT(DEFAULT_REC_MIC_GAIN), + "rec mic gain",NULL,UNUSED}, +#endif /* DEFAULT_REC_MIC_GAIN */ +#ifdef DEFAULT_REC_LEFT_GAIN + {F_T_INT|F_RECSETTING,&global_settings.rec_left_gain, + LANG_GAIN_LEFT,INT(DEFAULT_REC_LEFT_GAIN), + "rec left gain",NULL,UNUSED}, +#endif /* DEFAULT_REC_LEFT_GAIN */ +#ifdef DEFAULT_REC_RIGHT_GAIN + {F_T_INT|F_RECSETTING,&global_settings.rec_right_gain,LANG_GAIN_RIGHT, + INT(DEFAULT_REC_RIGHT_GAIN), + "rec right gain",NULL,UNUSED}, +#endif /* DEFAULT_REC_RIGHT_GAIN */ +#if CONFIG_CODEC == MAS3587F + {F_T_INT|F_RECSETTING,&global_settings.rec_frequency, + LANG_RECORDING_FREQUENCY, INT(0), + "rec frequency","44,48,32,22,24,16", UNUSED}, + INT_SETTING(F_RECSETTING, rec_quality, LANG_RECORDING_QUALITY, 5, + "rec quality", UNIT_INT, 0, 7, 1, NULL, NULL, NULL), + OFFON_SETTING(F_RECSETTING, rec_editable, LANG_RECORDING_EDITABLE, false, + "editable recordings", NULL), +#endif /* CONFIG_CODEC == MAS3587F */ +#if CONFIG_CODEC == SWCODEC + {F_T_INT|F_RECSETTING,&global_settings.rec_frequency, + LANG_RECORDING_FREQUENCY,INT(REC_FREQ_DEFAULT), + "rec frequency",REC_FREQ_CFG_VAL_LIST,UNUSED}, + {F_T_INT|F_RECSETTING,&global_settings.rec_format, + LANG_RECORDING_FORMAT,INT(REC_FORMAT_DEFAULT), + "rec format",REC_FORMAT_CFG_VAL_LIST,UNUSED}, + /** Encoder settings start - keep these together **/ + /* aiff_enc */ + /* (no settings yet) */ + /* mp3_enc */ + {F_T_INT|F_RECSETTING, &global_settings.mp3_enc_config.bitrate,-1, + INT(MP3_ENC_BITRATE_CFG_DEFAULT), + "mp3_enc bitrate",MP3_ENC_BITRATE_CFG_VALUE_LIST,UNUSED}, + /* wav_enc */ + /* (no settings yet) */ + /* wavpack_enc */ + /* (no settings yet) */ + /** Encoder settings end **/ +#endif /* CONFIG_CODEC == SWCODEC */ + /* values for the trigger */ + INT_SETTING(F_RECSETTING, rec_start_thres_db, LANG_RECORD_START_THRESHOLD, -35, + "trigger start threshold dB", UNIT_DB, VOLUME_MIN/10, 0, 1, NULL, NULL, NULL), + INT_SETTING(F_RECSETTING, rec_start_thres_linear, LANG_RECORD_START_THRESHOLD, 5, + "trigger start threshold linear", UNIT_PERCENT, 0, 100, 1, NULL, NULL, NULL), + INT_SETTING(F_RECSETTING, rec_stop_thres_db, LANG_RECORD_STOP_THRESHOLD, -45, + "trigger stop threshold dB", UNIT_DB, VOLUME_MIN/10, 0, 1, NULL, NULL, NULL), + INT_SETTING(F_RECSETTING, rec_stop_thres_linear, LANG_RECORD_STOP_THRESHOLD, 10, + "trigger stop threshold linear", UNIT_PERCENT, 0, 100, 1, NULL, NULL, NULL), + TABLE_SETTING(F_RECSETTING, rec_start_duration, LANG_MIN_DURATION, 0, + "trigger start duration", + "0s,1s,2s,5s,10s,15s,20s,25s,30s,1min,2min,5min,10min", + UNIT_SEC, NULL, NULL, NULL, 13, + 0,1,2,5,10,15,20,25,30,60,120,300,600), + TABLE_SETTING(F_RECSETTING, rec_stop_postrec, LANG_MIN_DURATION, 0, + "trigger stop duration", + "0s,1s,2s,5s,10s,15s,20s,25s,30s,1min,2min,5min,10min", + UNIT_SEC, NULL, NULL, NULL, 13, + 0,1,2,5,10,15,20,25,30,60,120,300,600), + TABLE_SETTING(F_RECSETTING, rec_stop_gap, LANG_RECORD_STOP_GAP, 1, + "trigger min gap", + "0s,1s,2s,5s,10s,15s,20s,25s,30s,1min,2min,5min,10min", + UNIT_SEC, NULL, NULL, NULL, 13, + 0,1,2,5,10,15,20,25,30,60,120,300,600), + CHOICE_SETTING(F_RECSETTING, rec_trigger_mode, LANG_RECORD_TRIGGER, TRIG_MODE_OFF, + "trigger mode","off,once,repeat", NULL ,3, + ID2P(LANG_OFF), ID2P(LANG_RECORD_TRIG_NOREARM), ID2P(LANG_REPEAT)), + CHOICE_SETTING(F_RECSETTING, rec_trigger_type, LANG_RECORD_TRIGGER_TYPE, TRIG_TYPE_STOP, + "trigger type","stop,pause,nf stp", NULL ,3, + ID2P(LANG_RECORD_TRIGGER_STOP), ID2P(LANG_PAUSE), ID2P(LANG_RECORD_TRIGGER_NEWFILESTP)), +#endif /* HAVE_RECORDING */ + +#ifdef HAVE_HISTOGRAM + /* TO DO: additional restictions of following REP items? */ + TABLE_SETTING(F_RECSETTING, histogram_interval, LANG_HISTOGRAM_INTERVAL, 0, + "histogram interval","0s,1s,2s,4s", + UNIT_SEC, NULL, NULL, NULL, 4, 0,1,2,4), +#endif /* HAVE_HISTOGRAM */ + +#ifdef HAVE_SPDIF_POWER + OFFON_SETTING(F_SOUNDSETTING, spdif_enable, LANG_SPDIF_ENABLE, false, + "spdif enable", spdif_power_enable), +#endif + CHOICE_SETTING(0, next_folder, LANG_NEXT_FOLDER, FOLDER_ADVANCE_OFF, + "folder navigation", "off,on,random",NULL ,3, + ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES), + ID2P(LANG_RANDOM)), + BOOL_SETTING(0, constrain_next_folder, LANG_CONSTRAIN_NEXT_FOLDER, false, + "constrain next folder", off_on, + LANG_SET_BOOL_YES, LANG_SET_BOOL_NO, NULL), + +#ifdef HAVE_TAGCACHE +#if CONFIG_CODEC == SWCODEC + BOOL_SETTING(0, autoresume_enable, LANG_AUTORESUME, false, + "autoresume enable", off_on, + LANG_SET_BOOL_YES, LANG_SET_BOOL_NO, NULL), + CHOICE_SETTING(0, autoresume_automatic, LANG_AUTORESUME_AUTOMATIC, + AUTORESUME_NEXTTRACK_NEVER, + "autoresume next track", "never,all,custom", + NULL, 3, + ID2P(LANG_SET_BOOL_NO), + ID2P(LANG_ALWAYS), + ID2P(LANG_AUTORESUME_CUSTOM)), + TEXT_SETTING(0, autoresume_paths, "autoresume next track paths", + "/podcast:/podcasts", NULL, NULL), +#endif + + OFFON_SETTING(0, runtimedb, LANG_RUNTIMEDB_ACTIVE, false, + "gather runtime data", NULL), + TEXT_SETTING(0, tagcache_scan_paths, "database scan paths", + DEFAULT_TAGCACHE_SCAN_PATHS, NULL, NULL), +#endif + +#if CONFIG_CODEC == SWCODEC + /* replay gain */ + CHOICE_SETTING(F_SOUNDSETTING, replaygain_settings.type, + LANG_REPLAYGAIN_MODE, REPLAYGAIN_SHUFFLE, "replaygain type", + "track,album,track shuffle,off", NULL, 4, ID2P(LANG_TRACK_GAIN), + ID2P(LANG_ALBUM_GAIN), ID2P(LANG_SHUFFLE_GAIN), ID2P(LANG_OFF)), + OFFON_SETTING(F_SOUNDSETTING, replaygain_settings.noclip, + LANG_REPLAYGAIN_NOCLIP, false, "replaygain noclip", NULL), + INT_SETTING_NOWRAP(F_SOUNDSETTING, replaygain_settings.preamp, + LANG_REPLAYGAIN_PREAMP, 0, "replaygain preamp", + UNIT_DB, -120, 120, 5, db_format, get_dec_talkid, NULL), + + CHOICE_SETTING(0, beep, LANG_BEEP, 0, "beep", "off,weak,moderate,strong", + NULL, 4, ID2P(LANG_OFF), ID2P(LANG_WEAK), + ID2P(LANG_MODERATE), ID2P(LANG_STRONG)), + +#ifdef HAVE_CROSSFADE + /* crossfade */ + CHOICE_SETTING(F_SOUNDSETTING, crossfade, LANG_CROSSFADE_ENABLE, 0, + "crossfade", + "off,auto track change,man track skip,shuffle,shuffle or man track skip,always", + NULL, 6, ID2P(LANG_OFF), ID2P(LANG_AUTOTRACKSKIP), + ID2P(LANG_MANTRACKSKIP), ID2P(LANG_SHUFFLE), + ID2P(LANG_SHUFFLE_TRACKSKIP), ID2P(LANG_ALWAYS)), + INT_SETTING(F_SOUNDSETTING, crossfade_fade_in_delay, + LANG_CROSSFADE_FADE_IN_DELAY, 0, + "crossfade fade in delay", UNIT_SEC, 0, 7, 1, NULL, NULL, NULL), + INT_SETTING(F_SOUNDSETTING, crossfade_fade_out_delay, + LANG_CROSSFADE_FADE_OUT_DELAY, 0, + "crossfade fade out delay", UNIT_SEC, 0, 7, 1, NULL, NULL,NULL), + INT_SETTING(F_SOUNDSETTING, crossfade_fade_in_duration, + LANG_CROSSFADE_FADE_IN_DURATION, 2, + "crossfade fade in duration", UNIT_SEC, 0, 15, 1, NULL, NULL, + NULL), + INT_SETTING(F_SOUNDSETTING, crossfade_fade_out_duration, + LANG_CROSSFADE_FADE_OUT_DURATION, 2, + "crossfade fade out duration", UNIT_SEC, 0, 15, 1, NULL, NULL, + NULL), + CHOICE_SETTING(F_SOUNDSETTING, crossfade_fade_out_mixmode, + LANG_CROSSFADE_FADE_OUT_MODE, 0, + "crossfade fade out mode", "crossfade,mix", NULL, 2, + ID2P(LANG_CROSSFADE), ID2P(LANG_MIX)), +#endif + + /* crossfeed */ + CHOICE_SETTING(F_SOUNDSETTING, crossfeed, LANG_CROSSFEED, 0,"crossfeed", + "off,meier,custom", dsp_set_crossfeed_type, 3, + ID2P(LANG_OFF), ID2P(LANG_CROSSFEED_MEIER), + ID2P(LANG_CROSSFEED_CUSTOM)), + INT_SETTING_NOWRAP(F_SOUNDSETTING, crossfeed_direct_gain, + LANG_CROSSFEED_DIRECT_GAIN, -15, + "crossfeed direct gain", UNIT_DB, -60, 0, 5, + db_format, get_dec_talkid,dsp_set_crossfeed_direct_gain), + INT_SETTING_NOWRAP(F_SOUNDSETTING, crossfeed_cross_gain, + LANG_CROSSFEED_CROSS_GAIN, -60, + "crossfeed cross gain", UNIT_DB, -120, -30, 5, + db_format, get_dec_talkid, crossfeed_cross_set), + INT_SETTING_NOWRAP(F_SOUNDSETTING, crossfeed_hf_attenuation, + LANG_CROSSFEED_HF_ATTENUATION, -160, + "crossfeed hf attenuation", UNIT_DB, -240, -60, 5, + db_format, get_dec_talkid, crossfeed_cross_set), + INT_SETTING_NOWRAP(F_SOUNDSETTING, crossfeed_hf_cutoff, + LANG_CROSSFEED_HF_CUTOFF, 700, + "crossfeed hf cutoff", UNIT_HERTZ, 500, 2000, 100, + NULL, NULL, crossfeed_cross_set), + + /* equalizer */ + OFFON_SETTING(F_EQSETTING, eq_enabled, LANG_EQUALIZER_ENABLED, false, + "eq enabled", NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_precut, LANG_EQUALIZER_PRECUT, 0, + "eq precut", UNIT_DB, 0, 240, 5, eq_precut_format, + get_precut_talkid, dsp_set_eq_precut), + /* 0..32768 Hz */ + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[0].cutoff, LANG_EQUALIZER_BAND_CUTOFF, + 60, "eq band 0 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[1].cutoff, LANG_EQUALIZER_BAND_CENTER, + 200, "eq band 1 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[2].cutoff, LANG_EQUALIZER_BAND_CENTER, + 800, "eq band 2 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[3].cutoff, LANG_EQUALIZER_BAND_CENTER, + 4000, "eq band 3 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[4].cutoff, LANG_EQUALIZER_BAND_CUTOFF, + 12000, "eq band 4 cutoff", UNIT_HERTZ, EQ_CUTOFF_MIN, + EQ_CUTOFF_MAX, EQ_CUTOFF_STEP, NULL, NULL, NULL), + /* 0..64 (or 0.0 to 6.4) */ + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[0].q, LANG_EQUALIZER_BAND_Q, 7, + "eq band 0 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, + eq_q_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[1].q, LANG_EQUALIZER_BAND_Q, 10, + "eq band 1 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, + eq_q_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[2].q, LANG_EQUALIZER_BAND_Q, 10, + "eq band 2 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, + eq_q_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[3].q, LANG_EQUALIZER_BAND_Q, 10, + "eq band 3 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, + eq_q_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[4].q, LANG_EQUALIZER_BAND_Q, 7, + "eq band 4 q", UNIT_INT, EQ_Q_MIN, EQ_Q_MAX, EQ_Q_STEP, + eq_q_format, get_dec_talkid, NULL), + /* -240..240 (or -24db to +24db) */ + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[0].gain, LANG_GAIN, 0, + "eq band 0 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, + EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[1].gain, LANG_GAIN, 0, + "eq band 1 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, + EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[2].gain, LANG_GAIN, 0, + "eq band 2 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, + EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[3].gain, LANG_GAIN, 0, + "eq band 3 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, + EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), + INT_SETTING_NOWRAP(F_EQSETTING, eq_band_settings[4].gain, LANG_GAIN, 0, + "eq band 4 gain", UNIT_DB, EQ_GAIN_MIN, EQ_GAIN_MAX, + EQ_GAIN_STEP, db_format, get_dec_talkid, NULL), + + /* dithering */ + OFFON_SETTING(F_SOUNDSETTING, dithering_enabled, LANG_DITHERING, false, + "dithering enabled", dsp_dither_enable), + +#ifdef HAVE_PITCHCONTROL + /* timestretch */ + OFFON_SETTING(F_SOUNDSETTING, timestretch_enabled, LANG_TIMESTRETCH, false, + "timestretch enabled", dsp_timestretch_enable), +#endif + + /* compressor */ + INT_SETTING_NOWRAP(F_SOUNDSETTING, compressor_settings.threshold, + LANG_COMPRESSOR_THRESHOLD, 0, + "compressor threshold", UNIT_DB, 0, -24, + -3, formatter_unit_0_is_off, getlang_unit_0_is_off, + compressor_set), + CHOICE_SETTING(F_SOUNDSETTING|F_NO_WRAP, compressor_settings.makeup_gain, + LANG_COMPRESSOR_GAIN, 1, "compressor makeup gain", + "off,auto", compressor_set, 2, + ID2P(LANG_OFF), ID2P(LANG_AUTO)), + CHOICE_SETTING(F_SOUNDSETTING|F_NO_WRAP, compressor_settings.ratio, + LANG_COMPRESSOR_RATIO, 1, "compressor ratio", + "2:1,4:1,6:1,10:1,limit", compressor_set, 5, + ID2P(LANG_COMPRESSOR_RATIO_2), ID2P(LANG_COMPRESSOR_RATIO_4), + ID2P(LANG_COMPRESSOR_RATIO_6), ID2P(LANG_COMPRESSOR_RATIO_10), + ID2P(LANG_COMPRESSOR_RATIO_LIMIT)), + CHOICE_SETTING(F_SOUNDSETTING|F_NO_WRAP, compressor_settings.knee, + LANG_COMPRESSOR_KNEE, 1, "compressor knee", + "hard knee,soft knee", compressor_set, 2, + ID2P(LANG_COMPRESSOR_HARD_KNEE), ID2P(LANG_COMPRESSOR_SOFT_KNEE)), + INT_SETTING_NOWRAP(F_SOUNDSETTING, compressor_settings.release_time, + LANG_COMPRESSOR_RELEASE, 500, + "compressor release time", UNIT_MS, 100, 1000, + 100, NULL, NULL, compressor_set), +#endif +#ifdef AUDIOHW_HAVE_BASS_CUTOFF + SOUND_SETTING(F_NO_WRAP, bass_cutoff, LANG_BASS_CUTOFF, + "bass cutoff", SOUND_BASS_CUTOFF), +#endif +#ifdef AUDIOHW_HAVE_TREBLE_CUTOFF + SOUND_SETTING(F_NO_WRAP, treble_cutoff, LANG_TREBLE_CUTOFF, + "treble cutoff", SOUND_TREBLE_CUTOFF), +#endif +#ifdef HAVE_DIRCACHE + /*enable dircache for all targets > 2MB of RAM by default*/ + OFFON_SETTING(F_BANFROMQS,dircache,LANG_DIRCACHE_ENABLE,true,"dircache",NULL), + SYSTEM_SETTING(NVRAM(4),dircache_size,0), +#endif + +#ifdef HAVE_TAGCACHE +#ifdef HAVE_TC_RAMCACHE + OFFON_SETTING(F_BANFROMQS,tagcache_ram,LANG_TAGCACHE_RAM,false,"tagcache_ram",NULL), +#endif + OFFON_SETTING(F_BANFROMQS, tagcache_autoupdate, LANG_TAGCACHE_AUTOUPDATE, false, + "tagcache_autoupdate", NULL), +#endif + CHOICE_SETTING(0, default_codepage, LANG_DEFAULT_CODEPAGE, 0, + "default codepage", +#ifdef HAVE_LCD_BITMAP + /* The order must match with that in unicode.c */ + "iso8859-1,iso8859-7,iso8859-8,cp1251,iso8859-11,cp1256," + "iso8859-9,iso8859-2,cp1250,cp1252,sjis,gb2312,ksx1001,big5,utf-8", + set_codepage, 14, + ID2P(LANG_CODEPAGE_LATIN1), + ID2P(LANG_CODEPAGE_GREEK), + ID2P(LANG_CODEPAGE_HEBREW), ID2P(LANG_CODEPAGE_CYRILLIC), + ID2P(LANG_CODEPAGE_THAI), ID2P(LANG_CODEPAGE_ARABIC), + ID2P(LANG_CODEPAGE_TURKISH), + ID2P(LANG_CODEPAGE_LATIN_EXTENDED), + ID2P(LANG_CODEPAGE_CENTRAL_EUROPEAN), + ID2P(LANG_CODEPAGE_WESTERN_EUROPEAN), + ID2P(LANG_CODEPAGE_JAPANESE), + ID2P(LANG_CODEPAGE_SIMPLIFIED), ID2P(LANG_CODEPAGE_KOREAN), + ID2P(LANG_CODEPAGE_TRADITIONAL), ID2P(LANG_CODEPAGE_UTF8)), +#else /* !HAVE_LCD_BITMAP */ + /* The order must match with that in unicode.c */ + "iso8859-1,iso8859-7,cp1251,iso8859-9,iso8859-2,cp1250,cp1252,utf-8", + set_codepage, 7, + ID2P(LANG_CODEPAGE_LATIN1), ID2P(LANG_CODEPAGE_GREEK), + ID2P(LANG_CODEPAGE_CYRILLIC), ID2P(LANG_CODEPAGE_TURKISH), + ID2P(LANG_CODEPAGE_LATIN_EXTENDED), + ID2P(LANG_CODEPAGE_CENTRAL_EUROPEAN), + ID2P(LANG_CODEPAGE_WESTERN_EUROPEAN), + ID2P(LANG_CODEPAGE_UTF8)), +#endif + OFFON_SETTING(0, warnon_erase_dynplaylist, LANG_WARN_ERASEDYNPLAYLIST_MENU, + true, "warn when erasing dynamic playlist",NULL), + +#ifdef HAVE_BACKLIGHT +#ifdef HAS_BUTTON_HOLD + CHOICE_SETTING(0, backlight_on_button_hold, LANG_BACKLIGHT_ON_BUTTON_HOLD, + 1, "backlight on button hold", "normal,off,on", + backlight_set_on_button_hold, 3, + ID2P(LANG_NORMAL), ID2P(LANG_OFF), ID2P(LANG_ON)), +#endif + +#ifdef HAVE_LCD_SLEEP_SETTING + STRINGCHOICE_SETTING(0, lcd_sleep_after_backlight_off, + LANG_LCD_SLEEP_AFTER_BACKLIGHT_OFF, 3, + "lcd sleep after backlight off", + "always,never,5,10,15,20,30,45,60,90", + lcd_set_sleep_after_backlight_off, 10, + LANG_ALWAYS, LANG_NEVER, TALK_ID(5, UNIT_SEC), + TALK_ID(10, UNIT_SEC), TALK_ID(15, UNIT_SEC), + TALK_ID(20, UNIT_SEC), TALK_ID(30, UNIT_SEC), + TALK_ID(45, UNIT_SEC),TALK_ID(60, UNIT_SEC), + TALK_ID(90, UNIT_SEC)), +#endif /* HAVE_LCD_SLEEP_SETTING */ +#endif /* HAVE_BACKLIGHT */ + + OFFON_SETTING(0, hold_lr_for_scroll_in_list, -1, true, + "hold_lr_for_scroll_in_list",NULL), +#ifdef HAVE_LCD_BITMAP + CHOICE_SETTING(0, show_path_in_browser, LANG_SHOW_PATH, SHOW_PATH_CURRENT, + "show path in browser", "off,current directory,full path", + NULL, 3, ID2P(LANG_OFF), ID2P(LANG_SHOW_PATH_CURRENT), + ID2P(LANG_DISPLAY_FULL_PATH)), +#endif + +#ifdef HAVE_AGC + {F_T_INT,&global_settings.rec_agc_preset_mic,LANG_RECORDING_AGC_PRESET, + INT(1),"agc mic preset",NULL,UNUSED}, + {F_T_INT,&global_settings.rec_agc_preset_line,LANG_RECORDING_AGC_PRESET, + INT(1),"agc line preset",NULL,UNUSED}, + {F_T_INT,&global_settings.rec_agc_maxgain_mic,-1,INT(104), + "agc maximum mic gain",NULL,UNUSED}, + {F_T_INT,&global_settings.rec_agc_maxgain_line,-1,INT(96), + "agc maximum line gain",NULL,UNUSED}, + {F_T_INT,&global_settings.rec_agc_cliptime,LANG_RECORDING_AGC_CLIPTIME, + INT(1),"agc cliptime","0.2s,0.4s,0.6s,0.8,1s",UNUSED}, +#endif + +#ifdef HAVE_REMOTE_LCD +#ifdef HAS_REMOTE_BUTTON_HOLD + CHOICE_SETTING(0, remote_backlight_on_button_hold, + LANG_BACKLIGHT_ON_BUTTON_HOLD, 0, + "remote backlight on button hold", + "normal,off,on", remote_backlight_set_on_button_hold, 3, + ID2P(LANG_NORMAL), ID2P(LANG_OFF), ID2P(LANG_ON)), +#endif +#endif +#ifdef HAVE_HEADPHONE_DETECTION + CHOICE_SETTING(0, unplug_mode, LANG_HEADPHONE_UNPLUG, 0, + "pause on headphone unplug", "off,pause,pause and resume", + NULL, 3, ID2P(LANG_OFF), ID2P(LANG_PAUSE), + ID2P(LANG_HEADPHONE_UNPLUG_RESUME)), + OFFON_SETTING(0, unplug_autoresume, + LANG_HEADPHONE_UNPLUG_DISABLE_AUTORESUME, false, + "disable autoresume if phones not present",NULL), +#endif + INT_SETTING(0, pause_rewind, LANG_PAUSE_REWIND, 0, + "rewind duration on pause", UNIT_SEC, 0, 15, 1, NULL, NULL, + NULL), +#if CONFIG_TUNER + CHOICE_SETTING(0, fm_region, LANG_FM_REGION, 0, + "fm_region", "eu,us,jp,kr,it,wo", set_radio_region, 6, + ID2P(LANG_FM_EUROPE), ID2P(LANG_FM_US), + ID2P(LANG_FM_JAPAN), ID2P(LANG_FM_KOREA), + ID2P(LANG_FM_ITALY), ID2P(LANG_FM_OTHER)), +#endif + + OFFON_SETTING(F_BANFROMQS, audioscrobbler, LANG_AUDIOSCROBBLER, false, + "Last.fm Logging", NULL), +#if CONFIG_TUNER + TEXT_SETTING(0, fmr_file, "fmr", "-", + FMPRESET_PATH "/", ".fmr"), + TEXT_SETTING(F_THEMESETTING,fms_file, "fms", + DEFAULT_FMS_NAME, SBS_DIR "/", ".fms"), +#ifdef HAVE_REMOTE_LCD + TEXT_SETTING(F_THEMESETTING,rfms_file, "rfms", + DEFAULT_FMS_NAME, SBS_DIR "/", ".rfms"), +#endif +#endif /* CONFIG_TUNER */ +#ifdef HAVE_LCD_BITMAP + TEXT_SETTING(F_THEMESETTING, font_file, "font", + DEFAULT_FONTNAME, FONT_DIR "/", ".fnt"), + INT_SETTING(0, glyphs_to_cache, LANG_GLYPHS, DEFAULT_GLYPHS, + "glyphs", UNIT_INT, MIN_GLYPHS, MAX_GLYPHS, 10, + NULL, NULL, NULL), +#endif +#ifdef HAVE_REMOTE_LCD + TEXT_SETTING(F_THEMESETTING, remote_font_file, "remote font", + DEFAULT_REMOTE_FONTNAME, FONT_DIR "/", ".fnt"), +#endif + TEXT_SETTING(F_THEMESETTING,wps_file, "wps", + DEFAULT_WPSNAME, WPS_DIR "/", ".wps"), +#ifdef HAVE_LCD_BITMAP + TEXT_SETTING(F_THEMESETTING,sbs_file, "sbs", + DEFAULT_SBSNAME, SBS_DIR "/", ".sbs"), +#endif +#ifdef HAVE_REMOTE_LCD + TEXT_SETTING(F_THEMESETTING,rwps_file,"rwps", + DEFAULT_WPSNAME, WPS_DIR "/", ".rwps"), + TEXT_SETTING(F_THEMESETTING,rsbs_file, "rsbs", + DEFAULT_SBSNAME, SBS_DIR "/", ".rsbs"), +#endif + TEXT_SETTING(0,lang_file,"lang","",LANG_DIR "/",".lng"), +#if LCD_DEPTH > 1 + TEXT_SETTING(F_THEMESETTING,backdrop_file,"backdrop", + DEFAULT_BACKDROP, NULL, NULL), +#endif +#ifdef HAVE_LCD_BITMAP + TEXT_SETTING(0,kbd_file,"kbd","-",ROCKBOX_DIR "/",".kbd"), +#endif +#ifdef HAVE_USB_CHARGING_ENABLE + CHOICE_SETTING(0, usb_charging, LANG_USB_CHARGING, 1, "usb charging", + "off,on,force", NULL, 3, ID2P(LANG_SET_BOOL_NO), + ID2P(LANG_SET_BOOL_YES), ID2P(LANG_FORCE)), +#endif + OFFON_SETTING(F_BANFROMQS,cuesheet,LANG_CUESHEET_ENABLE,false,"cuesheet support", + NULL), + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, skip_length, + LANG_SKIP_LENGTH, 0, "skip length", + "outro,track,1s,2s,3s,5s,7s,10s,15s,20s,30s,45s,1min,90s,2min,3min,5min,10min,15min", + UNIT_SEC, formatter_unit_0_is_skip_track, + getlang_unit_0_is_skip_track, NULL, + 19, -1,0,1,2,3,5,7,10,15,20,30,45,60,90,120,180,300,600,900), + CHOICE_SETTING(0, start_in_screen, LANG_START_SCREEN, 1, + "start in screen", "previous,root,files," +#ifdef HAVE_TAGCACHE +#define START_DB_COUNT 1 + "db," +#else +#define START_DB_COUNT 0 +#endif + "wps,menu," +#ifdef HAVE_RECORDING +#define START_REC_COUNT 1 + "recording," +#else +#define START_REC_COUNT 0 +#endif +#if CONFIG_TUNER +#define START_TUNER_COUNT 1 + "radio," +#else +#define START_TUNER_COUNT 0 +#endif + "bookmarks" +#ifdef HAVE_PICTUREFLOW_INTEGRATION +#define START_PF_COUNT 1 + ",pictureflow" +#else +#define START_PF_COUNT 0 +#endif + , NULL, + (6 + START_DB_COUNT + START_REC_COUNT + START_TUNER_COUNT + START_PF_COUNT), + ID2P(LANG_PREVIOUS_SCREEN), ID2P(LANG_MAIN_MENU), + ID2P(LANG_DIR_BROWSER), +#ifdef HAVE_TAGCACHE + ID2P(LANG_TAGCACHE), +#endif + ID2P(LANG_RESUME_PLAYBACK), ID2P(LANG_SETTINGS), +#ifdef HAVE_RECORDING + ID2P(LANG_RECORDING), +#endif +#if CONFIG_TUNER + ID2P(LANG_FM_RADIO), +#endif + ID2P(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS) +#ifdef HAVE_PICTUREFLOW_INTEGRATION + ,ID2P(LANG_ONPLAY_PICTUREFLOW) +#endif + ), + SYSTEM_SETTING(NVRAM(1),last_screen,-1), +#if defined(HAVE_RTC_ALARM) && \ + (defined(HAVE_RECORDING) || CONFIG_TUNER) + {F_T_INT, &global_settings.alarm_wake_up_screen, LANG_ALARM_WAKEUP_SCREEN, + INT(ALARM_START_WPS), "alarm wakeup screen", ALARM_SETTING_TEXT,UNUSED}, +#endif /* HAVE_RTC_ALARM */ + + /* Customizable icons */ +#ifdef HAVE_LCD_BITMAP + TEXT_SETTING(F_THEMESETTING, icon_file, "iconset", DEFAULT_ICONSET, + ICON_DIR "/", ".bmp"), + TEXT_SETTING(F_THEMESETTING, viewers_icon_file, "viewers iconset", + DEFAULT_VIEWERS_ICONSET, + ICON_DIR "/", ".bmp"), +#endif +#ifdef HAVE_REMOTE_LCD + TEXT_SETTING(F_THEMESETTING, remote_icon_file, "remote iconset", "-", + ICON_DIR "/", ".bmp"), + TEXT_SETTING(F_THEMESETTING, remote_viewers_icon_file, + "remote viewers iconset", "-", + ICON_DIR "/", ".bmp"), +#endif /* HAVE_REMOTE_LCD */ +#ifdef HAVE_LCD_COLOR + TEXT_SETTING(F_THEMESETTING, colors_file, "filetype colours", "-", + THEME_DIR "/", ".colours"), +#endif +#ifdef HAVE_BUTTON_LIGHT + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, buttonlight_timeout, + LANG_BUTTONLIGHT_TIMEOUT, 5, "button light timeout", off_on, + UNIT_SEC, backlight_formatter, backlight_getlang, + buttonlight_set_timeout, 20, + -1,0,1,2,3,4,5,6,7,8,9,10,15,20,25,30,45,60,90,120), +#endif +#ifdef HAVE_BUTTONLIGHT_BRIGHTNESS + INT_SETTING(F_NO_WRAP, buttonlight_brightness, LANG_BUTTONLIGHT_BRIGHTNESS, + DEFAULT_BRIGHTNESS_SETTING, + "button light brightness",UNIT_INT, MIN_BRIGHTNESS_SETTING, + MAX_BRIGHTNESS_SETTING, 1, NULL, NULL, + buttonlight_set_brightness), +#endif +#ifndef HAVE_WHEEL_ACCELERATION + INT_SETTING(0, list_accel_start_delay, LANG_LISTACCEL_START_DELAY, + 2, "list_accel_start_delay", UNIT_SEC, 0, 10, 1, + formatter_unit_0_is_off, getlang_unit_0_is_off, NULL), + INT_SETTING(0, list_accel_wait, LANG_LISTACCEL_ACCEL_SPEED, + 3, "list_accel_wait", UNIT_SEC, 1, 10, 1, + scanaccel_formatter, getlang_unit_0_is_off, NULL), +#endif /* HAVE_WHEEL_ACCELERATION */ +#if CONFIG_CODEC == SWCODEC + /* keyclick */ +#ifdef HAVE_HARDWARE_CLICK + CHOICE_SETTING(0, keyclick, LANG_KEYCLICK_SOFTWARE, 0, + "keyclick", "off,weak,moderate,strong", NULL, 4, + ID2P(LANG_OFF), ID2P(LANG_WEAK), ID2P(LANG_MODERATE), + ID2P(LANG_STRONG)), + OFFON_SETTING(0, keyclick_repeats, LANG_KEYCLICK_REPEATS, false, + "keyclick repeats", NULL), + OFFON_SETTING(0, keyclick_hardware, LANG_KEYCLICK_HARDWARE, false, + "hardware keyclick", NULL), +#else + CHOICE_SETTING(0, keyclick, LANG_KEYCLICK, 0, + "keyclick", "off,weak,moderate,strong", NULL, 4, + ID2P(LANG_OFF), ID2P(LANG_WEAK), ID2P(LANG_MODERATE), + ID2P(LANG_STRONG)), + OFFON_SETTING(0, keyclick_repeats, LANG_KEYCLICK_REPEATS, false, + "keyclick repeats", NULL), +#endif +#endif /* CONFIG_CODEC == SWCODEC */ + TEXT_SETTING(0, playlist_catalog_dir, "playlist catalog directory", + PLAYLIST_CATALOG_DEFAULT_DIR, NULL, NULL), + INT_SETTING(0, sleeptimer_duration, LANG_SLEEP_TIMER_DURATION, 30, + "sleeptimer duration", + UNIT_MIN, 5, 300, 5, NULL, NULL, NULL), + OFFON_SETTING(0, sleeptimer_on_startup, LANG_SLEEP_TIMER_ON_POWER_UP, false, + "sleeptimer on startup", NULL), + OFFON_SETTING(0, keypress_restarts_sleeptimer, LANG_KEYPRESS_RESTARTS_SLEEP_TIMER, false, + "keypress restarts sleeptimer", set_keypress_restarts_sleep_timer), +#ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING + CHOICE_SETTING(0, touchpad_sensitivity, LANG_TOUCHPAD_SENSITIVITY, 0, + "touchpad sensitivity", "normal,high", touchpad_set_sensitivity, 2, + ID2P(LANG_NORMAL), ID2P(LANG_HIGH)), +#endif +#ifdef HAVE_QUICKSCREEN + CUSTOM_SETTING(0, qs_items[QUICKSCREEN_TOP], LANG_TOP_QS_ITEM, + NULL, "qs top", + qs_load_from_cfg, qs_write_to_cfg, + qs_is_changed, qs_set_default), + CUSTOM_SETTING(0, qs_items[QUICKSCREEN_LEFT], LANG_LEFT_QS_ITEM, + &global_settings.playlist_shuffle, "qs left", + qs_load_from_cfg, qs_write_to_cfg, + qs_is_changed, qs_set_default), + CUSTOM_SETTING(0, qs_items[QUICKSCREEN_RIGHT], LANG_RIGHT_QS_ITEM, + &global_settings.repeat_mode, "qs right", + qs_load_from_cfg, qs_write_to_cfg, + qs_is_changed, qs_set_default), + CUSTOM_SETTING(0, qs_items[QUICKSCREEN_BOTTOM], LANG_BOTTOM_QS_ITEM, + NULL, "qs bottom", + qs_load_from_cfg, qs_write_to_cfg, + qs_is_changed, qs_set_default), + OFFON_SETTING(0, shortcuts_replaces_qs, LANG_USE_SHORTCUTS_INSTEAD_OF_QS, + false, "shortcuts instead of quickscreen", NULL), +#endif +#ifdef HAVE_SPEAKER + OFFON_SETTING(0, speaker_enabled, LANG_ENABLE_SPEAKER, false, "speaker", + audiohw_enable_speaker), +#endif +#ifdef HAVE_TOUCHSCREEN + CHOICE_SETTING(0, touch_mode, LANG_TOUCHSCREEN_MODE, DEFAULT_TOUCHSCREEN_MODE, + "touchscreen mode", "point,grid", NULL, 2, + ID2P(LANG_TOUCHSCREEN_POINT), ID2P(LANG_TOUCHSCREEN_GRID)), + CUSTOM_SETTING(0, ts_calibration_data, -1, + &default_calibration_parameters, "touchscreen calibration", + tsc_load_from_cfg, tsc_write_to_cfg, + tsc_is_changed, tsc_set_default), +#endif + OFFON_SETTING(0, prevent_skip, LANG_PREVENT_SKIPPING, false, "prevent track skip", NULL), + +#ifdef HAVE_PITCHCONTROL + OFFON_SETTING(0, pitch_mode_semitone, LANG_SEMITONE, false, + "Semitone pitch change", NULL), +#if CONFIG_CODEC == SWCODEC + OFFON_SETTING(0, pitch_mode_timestretch, LANG_TIMESTRETCH, false, + "Timestretch mode", NULL), +#endif +#endif + +#ifdef USB_ENABLE_HID + OFFON_SETTING(0, usb_hid, LANG_USB_HID, true, "usb hid", usb_set_hid), + CHOICE_SETTING(0, usb_keypad_mode, LANG_USB_KEYPAD_MODE, 0, + "usb keypad mode", "multimedia,presentation,browser" +#ifdef HAVE_USB_HID_MOUSE + ",mouse" +#endif + , NULL, +#ifdef HAVE_USB_HID_MOUSE + 4, +#else + 3, +#endif + ID2P(LANG_MULTIMEDIA_MODE), ID2P(LANG_PRESENTATION_MODE), + ID2P(LANG_BROWSER_MODE) +#ifdef HAVE_USB_HID_MOUSE + , ID2P(LANG_MOUSE_MODE) +#endif + ), /* CHOICE_SETTING( usb_keypad_mode ) */ +#endif + +#if defined(USB_ENABLE_STORAGE) && defined(HAVE_MULTIDRIVE) + OFFON_SETTING(0, usb_skip_first_drive, LANG_USB_SKIP_FIRST_DRIVE, false, "usb skip first drive", usb_set_skip_first_drive), +#endif + + /* Customizable list */ +#ifdef HAVE_LCD_BITMAP + VIEWPORT_SETTING(ui_vp_config, "ui viewport"), +#ifdef HAVE_REMOTE_LCD + VIEWPORT_SETTING(remote_ui_vp_config, "remote ui viewport"), +#endif +#endif + +#ifdef HAVE_MORSE_INPUT + OFFON_SETTING(0, morse_input, LANG_MORSE_INPUT, false, "morse input", NULL), +#endif + +#ifdef HAVE_HOTKEY + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, hotkey_wps, + LANG_HOTKEY_WPS, HOTKEY_VIEW_PLAYLIST, "hotkey wps", + "off,view playlist,show track info,pitchscreen,open with,delete" +#ifdef HAVE_PICTUREFLOW_INTEGRATION + ",pictureflow" +#endif + ,UNIT_INT, hotkey_formatter, hotkey_getlang, NULL, +#ifdef HAVE_PICTUREFLOW_INTEGRATION + 7, +#else + 6, +#endif + HOTKEY_OFF, + HOTKEY_VIEW_PLAYLIST, HOTKEY_SHOW_TRACK_INFO, HOTKEY_PITCHSCREEN, + HOTKEY_OPEN_WITH, HOTKEY_DELETE +#ifdef HAVE_PICTUREFLOW_INTEGRATION + , HOTKEY_PICTUREFLOW +#endif + ), + TABLE_SETTING(F_ALLOW_ARBITRARY_VALS, hotkey_tree, + LANG_HOTKEY_FILE_BROWSER, HOTKEY_OFF, "hotkey tree", + "off,open with,delete,insert,insert shuffled", + UNIT_INT, hotkey_formatter, hotkey_getlang, NULL, 5, HOTKEY_OFF, + HOTKEY_OPEN_WITH, HOTKEY_DELETE, HOTKEY_INSERT, HOTKEY_INSERT_SHUFFLED), +#endif + +#if CONFIG_CODEC == SWCODEC + INT_SETTING(0, resume_rewind, LANG_RESUME_REWIND, 0, + "resume rewind", UNIT_SEC, 0, 60, 5, + NULL, NULL, NULL), +#endif + CUSTOM_SETTING(0, root_menu_customized, + LANG_ROCKBOX_TITLE, /* lang string here is never actually used */ + NULL, "root menu order", + root_menu_load_from_cfg, root_menu_write_to_cfg, + root_menu_is_changed, root_menu_set_default), +}; + +const int nb_settings = sizeof(settings)/sizeof(*settings); + +const struct settings_list* get_settings_list(int*count) +{ + *count = nb_settings; + return settings; +} diff --git a/lib/rbcodec/codecs/libopus/celt/_kiss_fft_guts.h b/lib/rbcodec/codecs/libopus/celt/_kiss_fft_guts.h index b1fe8fb..63e2548 100644 --- a/lib/rbcodec/codecs/libopus/celt/_kiss_fft_guts.h +++ b/lib/rbcodec/codecs/libopus/celt/_kiss_fft_guts.h @@ -81,10 +81,13 @@ : "d0", "d1", "d2", "d3", "cc"); \ } #elif defined(CPU_ARM) +#if (ARM_ARCH < 5) + + # define C_MULC(m,a,b) \ { \ asm volatile( \ - "ldmia %[ap], {r0,r1} \n\t" \ + "ldm %[ap], {r0,r1} \n\t" \ "ldrsh r2, [%[bp], #0] \n\t" \ "ldrsh r3, [%[bp], #2] \n\t" \ \ @@ -103,6 +106,27 @@ : "r0", "r1", "r2", "r3", "r4"); \ } #else +/*same as above but using armv5 packed multiplies*/ +# define C_MULC(m,a,b) \ + { \ + asm volatile( \ + "ldm %[ap], {r0,r1} \n\t" \ + "ldr r2, [%[bp], #0] \n\t" \ + \ + "smulwb r4, r0, r2 \n\t" /*r4=a.r*b.r*/ \ + "smlawt %[mr], r1, r2, r4 \n\t" /*m.r=r4+a.i*b.i*/\ + "mov %[mr], %[mr], lsl #1 \n\t" /*Q15 not Q16*/ \ + \ + "smulwb r1, r1, r2 \n\t" /*r1=a.i*b.r*/ \ + "smulwt r4, r0, r2 \n\t" /*r4=a.r*b.i*/ \ + "sub %[mi], r1, r4 \n\t" \ + "mov %[mi], %[mi], lsl #1 \n\t" \ + : [mr] "=r" ((m).r), [mi] "=r" ((m).i) \ + : [ap] "r" (&(a)), [bp] "r" (&(b)) \ + : "r0", "r1", "r2", "r4"); \ +} +#endif /*ARMv5 code*/ +#else # define C_MULC(m,a,b) \ do{ (m).r = ADD32(S_MUL((a).r,(b).r) , S_MUL((a).i,(b).i)); \ (m).i = SUB32(S_MUL((a).i,(b).r) , S_MUL((a).r,(b).i)); }while(0) diff --git a/lib/rbcodec/dsp/eq.c b/lib/rbcodec/dsp/eq.c index 2e4b9af..d58f095 100644 --- a/lib/rbcodec/dsp/eq.c +++ b/lib/rbcodec/dsp/eq.c @@ -32,7 +32,7 @@ #include /** - * Current setup is one lowshelf filters three peaking filters and one + * Current setup is one lowshelf filters eight peaking filters and one * highshelf filter. Varying the number of shelving filters make no sense, * but adding peaking filters is possible. Check EQ_NUM_BANDS to have * 2 shelving filters and EQ_NUM_BANDS-2 peaking filters. diff --git a/lib/rbcodec/dsp/eq.h b/lib/rbcodec/dsp/eq.h index 53097be..cce4e51 100644 --- a/lib/rbcodec/dsp/eq.h +++ b/lib/rbcodec/dsp/eq.h @@ -25,7 +25,7 @@ * Menus and screens must be updated to support changing this from 5 * without modifying other stuff (remove comment when this is no longer * true :-) */ -#define EQ_NUM_BANDS 5 +#define EQ_NUM_BANDS 10 struct eq_band_setting { diff --git a/lib/rbcodec/dsp/eqs/Acoustic.cfg b/lib/rbcodec/dsp/eqs/Acoustic.cfg deleted file mode 100644 index 34b5ed8..0000000 --- a/lib/rbcodec/dsp/eqs/Acoustic.cfg +++ /dev/null @@ -1,17 +0,0 @@ -eq enabled: on -eq precut: 45 -eq band 0 cutoff: 60 -eq band 0 q: 7 -eq band 0 gain: 45 -eq band 1 cutoff: 200 -eq band 1 q: 10 -eq band 1 gain: 10 -eq band 2 cutoff: 800 -eq band 2 q: 10 -eq band 2 gain: 15 -eq band 3 cutoff: 4000 -eq band 3 q: 10 -eq band 3 gain: 30 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 20 diff --git a/lib/rbcodec/dsp/eqs/Bass.cfg b/lib/rbcodec/dsp/eqs/Bass.cfg deleted file mode 100644 index 2742459..0000000 --- a/lib/rbcodec/dsp/eqs/Bass.cfg +++ /dev/null @@ -1,17 +0,0 @@ -eq enabled: on -eq precut: 50 -eq band 0 cutoff: 60 -eq band 0 q: 7 -eq band 0 gain: 50 -eq band 1 cutoff: 200 -eq band 1 q: 10 -eq band 1 gain: 35 -eq band 2 cutoff: 800 -eq band 2 q: 10 -eq band 2 gain: 15 -eq band 3 cutoff: 4000 -eq band 3 q: 10 -eq band 3 gain: 5 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: -5 diff --git a/lib/rbcodec/dsp/eqs/Classical.cfg b/lib/rbcodec/dsp/eqs/Classical.cfg index bf2f9f9..f73d15a 100644 --- a/lib/rbcodec/dsp/eqs/Classical.cfg +++ b/lib/rbcodec/dsp/eqs/Classical.cfg @@ -1,17 +1,32 @@ -eq enabled: on -eq precut: 50 +eq enabled: off +eq precut: 0 eq band 0 cutoff: 60 eq band 0 q: 7 -eq band 0 gain: 50 -eq band 1 cutoff: 200 +eq band 0 gain: 0 +eq band 1 cutoff: 170 eq band 1 q: 10 -eq band 1 gain: 40 -eq band 2 cutoff: 800 +eq band 1 gain: 0 +eq band 2 cutoff: 310 eq band 2 q: 10 -eq band 2 gain: -20 -eq band 3 cutoff: 4000 +eq band 2 gain: 0 +eq band 3 cutoff: 600 eq band 3 q: 10 -eq band 3 gain: 10 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 20 +eq band 3 gain: 0 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 0 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 0 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: -70 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: -70 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: -70 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: -95 diff --git a/lib/rbcodec/dsp/eqs/Club.cfg b/lib/rbcodec/dsp/eqs/Club.cfg new file mode 100644 index 0000000..e1ad61a --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Club.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 80 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 0 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 0 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 80 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: 55 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 55 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 55 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 30 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 0 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 0 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 0 diff --git a/lib/rbcodec/dsp/eqs/Dance.cfg b/lib/rbcodec/dsp/eqs/Dance.cfg new file mode 100644 index 0000000..4069806 --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Dance.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 95 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 95 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 70 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 25 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: 0 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 0 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: -55 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: -70 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: -70 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 0 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 0 diff --git a/lib/rbcodec/dsp/eqs/Default.cfg b/lib/rbcodec/dsp/eqs/Default.cfg deleted file mode 100644 index d6f345f..0000000 --- a/lib/rbcodec/dsp/eqs/Default.cfg +++ /dev/null @@ -1,17 +0,0 @@ -eq enabled: off -eq precut: 0 -eq band 0 cutoff: 60 -eq band 0 q: 7 -eq band 0 gain: 0 -eq band 1 cutoff: 200 -eq band 1 q: 10 -eq band 1 gain: 0 -eq band 2 cutoff: 800 -eq band 2 q: 10 -eq band 2 gain: 0 -eq band 3 cutoff: 4000 -eq band 3 q: 10 -eq band 3 gain: 0 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 0 diff --git a/lib/rbcodec/dsp/eqs/Disco.cfg b/lib/rbcodec/dsp/eqs/Disco.cfg deleted file mode 100644 index f894f26..0000000 --- a/lib/rbcodec/dsp/eqs/Disco.cfg +++ /dev/null @@ -1,17 +0,0 @@ -eq enabled: on -eq precut: 45 -eq band 0 cutoff: 60 -eq band 0 q: 7 -eq band 0 gain: 30 -eq band 1 cutoff: 200 -eq band 1 q: 10 -eq band 1 gain: 10 -eq band 2 cutoff: 800 -eq band 2 q: 10 -eq band 2 gain: 45 -eq band 3 cutoff: 4000 -eq band 3 q: 10 -eq band 3 gain: 25 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 10 diff --git a/lib/rbcodec/dsp/eqs/Electronic.cfg b/lib/rbcodec/dsp/eqs/Electronic.cfg deleted file mode 100644 index e70c911..0000000 --- a/lib/rbcodec/dsp/eqs/Electronic.cfg +++ /dev/null @@ -1,17 +0,0 @@ -eq enabled: on -eq precut: 55 -eq band 0 cutoff: 60 -eq band 0 q: 7 -eq band 0 gain: 45 -eq band 1 cutoff: 200 -eq band 1 q: 10 -eq band 1 gain: 5 -eq band 2 cutoff: 800 -eq band 2 q: 10 -eq band 2 gain: 25 -eq band 3 cutoff: 4000 -eq band 3 q: 10 -eq band 3 gain: 15 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 55 diff --git a/lib/rbcodec/dsp/eqs/Flat.cfg b/lib/rbcodec/dsp/eqs/Flat.cfg new file mode 100644 index 0000000..e5cfb2c --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Flat.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 0 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 0 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 0 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 0 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: 0 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 0 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 0 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 0 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 0 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 0 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 0 diff --git a/lib/rbcodec/dsp/eqs/Full Bass and Treble.cfg b/lib/rbcodec/dsp/eqs/Full Bass and Treble.cfg new file mode 100644 index 0000000..70576e7 --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Full Bass and Treble.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 120 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 70 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 55 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 0 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: -70 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: -50 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 15 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 80 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 110 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 120 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 120 diff --git a/lib/rbcodec/dsp/eqs/Full Bass.cfg b/lib/rbcodec/dsp/eqs/Full Bass.cfg new file mode 100644 index 0000000..c73eacf --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Full Bass.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 95 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: -80 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 95 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 95 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: 55 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 15 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: -40 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: -80 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: -100 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: -110 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: -110 diff --git a/lib/rbcodec/dsp/eqs/Full Treble.cfg b/lib/rbcodec/dsp/eqs/Full Treble.cfg new file mode 100644 index 0000000..8136a7b --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Full Treble.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 170 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: -95 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: -95 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: -95 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: -40 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 25 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 110 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 160 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 160 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 160 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 170 diff --git a/lib/rbcodec/dsp/eqs/Headphones.cfg b/lib/rbcodec/dsp/eqs/Headphones.cfg new file mode 100644 index 0000000..e5a32fc --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Headphones.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 145 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 50 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 110 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 55 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: -30 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: -25 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 15 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 50 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 95 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 130 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 145 diff --git a/lib/rbcodec/dsp/eqs/Hip-Hop.cfg b/lib/rbcodec/dsp/eqs/Hip-Hop.cfg deleted file mode 100644 index 2d38425..0000000 --- a/lib/rbcodec/dsp/eqs/Hip-Hop.cfg +++ /dev/null @@ -1,17 +0,0 @@ -eq enabled: on -eq precut: 65 -eq band 0 cutoff: 60 -eq band 0 q: 7 -eq band 0 gain: 65 -eq band 1 cutoff: 200 -eq band 1 q: 10 -eq band 1 gain: 25 -eq band 2 cutoff: 800 -eq band 2 q: 10 -eq band 2 gain: -10 -eq band 3 cutoff: 4000 -eq band 3 q: 10 -eq band 3 gain: 15 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 35 diff --git a/lib/rbcodec/dsp/eqs/Jazz.cfg b/lib/rbcodec/dsp/eqs/Jazz.cfg deleted file mode 100644 index f576f9f..0000000 --- a/lib/rbcodec/dsp/eqs/Jazz.cfg +++ /dev/null @@ -1,17 +0,0 @@ -eq enabled: on -eq precut: 60 -eq band 0 cutoff: 60 -eq band 0 q: 7 -eq band 0 gain: 40 -eq band 1 cutoff: 200 -eq band 1 q: 10 -eq band 1 gain: 15 -eq band 2 cutoff: 800 -eq band 2 q: 10 -eq band 2 gain: -25 -eq band 3 cutoff: 4000 -eq band 3 q: 10 -eq band 3 gain: 5 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 60 diff --git a/lib/rbcodec/dsp/eqs/Large Hall.cfg b/lib/rbcodec/dsp/eqs/Large Hall.cfg new file mode 100644 index 0000000..f72a13d --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Large Hall.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 150 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 105 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 105 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 55 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: 55 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 0 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: -50 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: -50 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: -50 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 0 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 0 diff --git a/lib/rbcodec/dsp/eqs/Live.cfg b/lib/rbcodec/dsp/eqs/Live.cfg new file mode 100644 index 0000000..82879eb --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Live.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 55 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: -50 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 0 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 40 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: 55 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 55 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 55 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 40 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 25 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 25 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 25 diff --git a/lib/rbcodec/dsp/eqs/Lounge.cfg b/lib/rbcodec/dsp/eqs/Lounge.cfg deleted file mode 100644 index 39ae23a..0000000 --- a/lib/rbcodec/dsp/eqs/Lounge.cfg +++ /dev/null @@ -1,17 +0,0 @@ -eq enabled: on -eq precut: 20 -eq band 0 cutoff: 60 -eq band 0 q: 7 -eq band 0 gain: -25 -eq band 1 cutoff: 200 -eq band 1 q: 10 -eq band 1 gain: 5 -eq band 2 cutoff: 800 -eq band 2 q: 10 -eq band 2 gain: 20 -eq band 3 cutoff: 4000 -eq band 3 q: 10 -eq band 3 gain: -15 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 15 diff --git a/lib/rbcodec/dsp/eqs/Party.cfg b/lib/rbcodec/dsp/eqs/Party.cfg new file mode 100644 index 0000000..4138073 --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Party.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 70 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 70 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 70 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 0 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: 0 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 0 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 0 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 0 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 0 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 70 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 70 diff --git a/lib/rbcodec/dsp/eqs/Pop.cfg b/lib/rbcodec/dsp/eqs/Pop.cfg index 1d8cefe..6d49a85 100644 --- a/lib/rbcodec/dsp/eqs/Pop.cfg +++ b/lib/rbcodec/dsp/eqs/Pop.cfg @@ -1,17 +1,32 @@ -eq enabled: on -eq precut: 50 +eq enabled: off +eq precut: 80 eq band 0 cutoff: 60 eq band 0 q: 7 -eq band 0 gain: -10 -eq band 1 cutoff: 200 +eq band 0 gain: -15 +eq band 1 cutoff: 170 eq band 1 q: 10 -eq band 1 gain: 5 -eq band 2 cutoff: 800 +eq band 1 gain: 50 +eq band 2 cutoff: 310 eq band 2 q: 10 -eq band 2 gain: 50 -eq band 3 cutoff: 4000 +eq band 2 gain: 70 +eq band 3 cutoff: 600 eq band 3 q: 10 -eq band 3 gain: 15 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: -10 +eq band 3 gain: 80 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 55 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 0 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: -25 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: -25 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: -15 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: -15 diff --git a/lib/rbcodec/dsp/eqs/R&B.cfg b/lib/rbcodec/dsp/eqs/R&B.cfg deleted file mode 100644 index a460b58..0000000 --- a/lib/rbcodec/dsp/eqs/R&B.cfg +++ /dev/null @@ -1,17 +0,0 @@ -eq enabled: on -eq precut: 45 -eq band 0 cutoff: 60 -eq band 0 q: 7 -eq band 0 gain: 35 -eq band 1 cutoff: 200 -eq band 1 q: 10 -eq band 1 gain: 45 -eq band 2 cutoff: 800 -eq band 2 q: 10 -eq band 2 gain: 5 -eq band 3 cutoff: 4000 -eq band 3 q: 10 -eq band 3 gain: 25 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 30 diff --git a/lib/rbcodec/dsp/eqs/Reggae.cfg b/lib/rbcodec/dsp/eqs/Reggae.cfg new file mode 100644 index 0000000..80db930 --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Reggae.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 65 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 0 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 0 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 0 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: -55 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 0 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 65 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 65 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 0 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 0 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 0 diff --git a/lib/rbcodec/dsp/eqs/Rock.cfg b/lib/rbcodec/dsp/eqs/Rock.cfg index ec4f035..0a59bde 100644 --- a/lib/rbcodec/dsp/eqs/Rock.cfg +++ b/lib/rbcodec/dsp/eqs/Rock.cfg @@ -1,17 +1,32 @@ -eq enabled: on -eq precut: 45 +eq enabled: off +eq precut: 110 eq band 0 cutoff: 60 eq band 0 q: 7 -eq band 0 gain: 25 -eq band 1 cutoff: 200 +eq band 0 gain: 80 +eq band 1 cutoff: 170 eq band 1 q: 10 -eq band 1 gain: 10 -eq band 2 cutoff: 800 +eq band 1 gain: 50 +eq band 2 cutoff: 310 eq band 2 q: 10 -eq band 2 gain: 0 -eq band 3 cutoff: 4000 +eq band 2 gain: -55 +eq band 3 cutoff: 600 eq band 3 q: 10 -eq band 3 gain: 20 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 45 +eq band 3 gain: -80 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: -30 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 40 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 90 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 110 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 110 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 110 diff --git a/lib/rbcodec/dsp/eqs/Ska.cfg b/lib/rbcodec/dsp/eqs/Ska.cfg new file mode 100644 index 0000000..f04c13c --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Ska.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 110 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: -25 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: -50 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: -40 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: 0 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 40 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 55 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 90 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 95 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 110 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 95 diff --git a/lib/rbcodec/dsp/eqs/Soft Rock.cfg b/lib/rbcodec/dsp/eqs/Soft Rock.cfg new file mode 100644 index 0000000..44ac61b --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Soft Rock.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 90 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 40 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 40 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 25 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: 0 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: -40 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: -55 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: -30 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 0 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 25 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 90 diff --git a/lib/rbcodec/dsp/eqs/Soft.cfg b/lib/rbcodec/dsp/eqs/Soft.cfg new file mode 100644 index 0000000..6e5eb53 --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Soft.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 120 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 50 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 15 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 0 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: -25 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: 0 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 40 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 80 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 95 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 110 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 120 diff --git a/lib/rbcodec/dsp/eqs/Techno.cfg b/lib/rbcodec/dsp/eqs/Techno.cfg new file mode 100644 index 0000000..3b9e5ad --- /dev/null +++ b/lib/rbcodec/dsp/eqs/Techno.cfg @@ -0,0 +1,32 @@ +eq enabled: off +eq precut: 95 +eq band 0 cutoff: 60 +eq band 0 q: 7 +eq band 0 gain: 80 +eq band 1 cutoff: 170 +eq band 1 q: 10 +eq band 1 gain: 55 +eq band 2 cutoff: 310 +eq band 2 q: 10 +eq band 2 gain: 0 +eq band 3 cutoff: 600 +eq band 3 q: 10 +eq band 3 gain: -55 +eq band 4 cutoff: 1000 +eq band 4 q: 10 +eq band 4 gain: -50 +eq band 5 cutoff: 3000 +eq band 5 q: 10 +eq band 5 gain: 0 +eq band 6 cutoff: 6000 +eq band 6 q: 10 +eq band 6 gain: 80 +eq band 7 cutoff: 12000 +eq band 7 q: 10 +eq band 7 gain: 95 +eq band 8 cutoff: 14000 +eq band 8 q: 10 +eq band 8 gain: 95 +eq band 9 cutoff: 16000 +eq band 9 q: 7 +eq band 9 gain: 90 diff --git a/lib/rbcodec/dsp/eqs/Vocal.cfg b/lib/rbcodec/dsp/eqs/Vocal.cfg deleted file mode 100644 index 1de754f..0000000 --- a/lib/rbcodec/dsp/eqs/Vocal.cfg +++ /dev/null @@ -1,17 +0,0 @@ -eq enabled: on -eq precut: 45 -eq band 0 cutoff: 60 -eq band 0 q: 7 -eq band 0 gain: -45 -eq band 1 cutoff: 200 -eq band 1 q: 10 -eq band 1 gain: 5 -eq band 2 cutoff: 800 -eq band 2 q: 10 -eq band 2 gain: 45 -eq band 3 cutoff: 4000 -eq band 3 q: 10 -eq band 3 gain: 20 -eq band 4 cutoff: 12000 -eq band 4 q: 7 -eq band 4 gain: 0