2002-06-27 00:20:00 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-03-25 15:24:03 +00:00
|
|
|
* Copyright (C) 2002 by Stuart Martin
|
2002-06-27 00:20:00 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2002-06-27 00:20:00 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __SETTINGS_H__
|
|
|
|
#define __SETTINGS_H__
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2009-03-08 20:28:15 +00:00
|
|
|
#include <stddef.h>
|
2006-03-03 01:12:50 +00:00
|
|
|
#include "inttypes.h"
|
2003-07-15 02:34:10 +00:00
|
|
|
#include "config.h"
|
2010-05-16 04:25:26 +00:00
|
|
|
#include "audiohw.h" /* for the AUDIOHW_* defines */
|
2009-08-23 23:44:31 +00:00
|
|
|
#include "statusbar.h" /* for the statusbar values */
|
2009-10-28 20:41:34 +00:00
|
|
|
#include "quickscreen.h"
|
2009-03-09 23:13:50 +00:00
|
|
|
#include "button.h"
|
2006-11-06 18:07:30 +00:00
|
|
|
#include "audio.h"
|
2012-04-29 21:31:30 +00:00
|
|
|
#include "dsp_proc_settings.h"
|
2010-08-01 16:15:27 +00:00
|
|
|
#include "rbpaths.h"
|
2006-11-06 18:07:30 +00:00
|
|
|
|
2007-10-10 01:41:48 +00:00
|
|
|
struct opt_items {
|
|
|
|
unsigned const char* string;
|
2007-11-20 19:50:52 +00:00
|
|
|
int32_t voice_id;
|
2007-10-10 01:41:48 +00:00
|
|
|
};
|
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
/** Setting values defines **/
|
2007-02-03 10:52:57 +00:00
|
|
|
#define MAX_FILENAME 32
|
2010-11-15 12:33:47 +00:00
|
|
|
#define MAX_PATHNAME 80
|
2002-10-08 15:42:40 +00:00
|
|
|
|
2018-10-30 13:43:32 +00:00
|
|
|
/* The values are assigned to the enums so that they correspond to */
|
|
|
|
/* setting values in settings_list.c */
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2018-10-30 13:43:32 +00:00
|
|
|
/* Shared by all bookmark parameters */
|
2009-08-07 00:56:39 +00:00
|
|
|
enum {
|
2009-08-12 18:42:13 +00:00
|
|
|
BOOKMARK_NO = 0,
|
2018-10-30 13:43:32 +00:00
|
|
|
BOOKMARK_YES = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Auto create bookmark */
|
|
|
|
enum {
|
|
|
|
BOOKMARK_ASK = 2,
|
|
|
|
BOOKMARK_RECENT_ONLY_YES = 3,
|
|
|
|
BOOKMARK_RECENT_ONLY_ASK = 4,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Most recent bookmark */
|
|
|
|
enum {
|
|
|
|
BOOKMARK_ONE_PER_PLAYLIST = 2,
|
|
|
|
BOOKMARK_ONE_PER_TRACK = 3,
|
2009-08-07 00:56:39 +00:00
|
|
|
};
|
2002-09-04 03:38:37 +00:00
|
|
|
|
2008-05-28 10:55:39 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
TRIG_MODE_OFF = 0,
|
|
|
|
TRIG_MODE_NOREARM,
|
|
|
|
TRIG_MODE_REARM
|
|
|
|
};
|
2005-04-04 09:12:12 +00:00
|
|
|
|
2008-05-28 10:55:39 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
TRIG_TYPE_STOP = 0,
|
|
|
|
TRIG_TYPE_PAUSE,
|
|
|
|
TRIG_TYPE_NEW_FILE
|
|
|
|
};
|
2003-09-29 21:26:53 +00:00
|
|
|
|
2009-11-11 00:48:17 +00:00
|
|
|
#ifdef HAVE_CROSSFADE
|
2009-08-07 00:56:39 +00:00
|
|
|
enum {
|
2009-08-16 12:27:21 +00:00
|
|
|
CROSSFADE_ENABLE_OFF = 0,
|
2009-11-11 00:48:17 +00:00
|
|
|
CROSSFADE_ENABLE_AUTOSKIP,
|
|
|
|
CROSSFADE_ENABLE_MANSKIP,
|
2009-08-07 00:56:39 +00:00
|
|
|
CROSSFADE_ENABLE_SHUFFLE,
|
2009-11-12 15:42:37 +00:00
|
|
|
CROSSFADE_ENABLE_SHUFFLE_OR_MANSKIP,
|
2009-08-07 00:56:39 +00:00
|
|
|
CROSSFADE_ENABLE_ALWAYS,
|
|
|
|
};
|
2009-11-11 00:48:17 +00:00
|
|
|
#endif
|
2005-07-22 16:46:27 +00:00
|
|
|
|
2009-08-07 00:56:39 +00:00
|
|
|
enum {
|
2009-08-16 12:27:21 +00:00
|
|
|
FOLDER_ADVANCE_OFF = 0,
|
2009-08-07 00:56:39 +00:00
|
|
|
FOLDER_ADVANCE_NEXT,
|
|
|
|
FOLDER_ADVANCE_RANDOM,
|
2009-08-07 00:59:22 +00:00
|
|
|
};
|
2006-10-09 10:54:17 +00:00
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
/* repeat mode options */
|
|
|
|
enum
|
|
|
|
{
|
2009-08-16 12:27:21 +00:00
|
|
|
REPEAT_OFF = 0,
|
2007-01-29 13:18:57 +00:00
|
|
|
REPEAT_ALL,
|
|
|
|
REPEAT_ONE,
|
|
|
|
REPEAT_SHUFFLE,
|
2007-02-17 22:26:14 +00:00
|
|
|
#ifdef AB_REPEAT_ENABLE
|
2007-01-29 13:18:57 +00:00
|
|
|
REPEAT_AB,
|
|
|
|
#endif
|
|
|
|
NUM_REPEAT_MODES
|
|
|
|
};
|
|
|
|
|
2009-06-20 21:13:24 +00:00
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
/* dir filter options */
|
|
|
|
/* Note: Any new filter modes need to be added before NUM_FILTER_MODES.
|
|
|
|
* Any new rockbox browse filter modes (accessible through the menu)
|
|
|
|
* must be added after NUM_FILTER_MODES. */
|
|
|
|
enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB,
|
|
|
|
NUM_FILTER_MODES,
|
2010-05-12 10:38:00 +00:00
|
|
|
SHOW_WPS, SHOW_RWPS, SHOW_FMS, SHOW_RFMS, SHOW_SBS, SHOW_RSBS, SHOW_FMR, SHOW_CFG,
|
2010-12-15 12:47:30 +00:00
|
|
|
SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS, SHOW_M3U};
|
2007-01-29 13:18:57 +00:00
|
|
|
|
2008-10-08 16:32:01 +00:00
|
|
|
/* file and dir sort options */
|
|
|
|
enum { SORT_ALPHA, SORT_DATE, SORT_DATE_REVERSED, SORT_TYPE, /* available as settings */
|
|
|
|
SORT_ALPHA_REVERSED, SORT_TYPE_REVERSED }; /* internal use only */
|
2009-03-01 17:55:59 +00:00
|
|
|
enum { SORT_INTERPRET_AS_DIGIT, SORT_INTERPRET_AS_NUMBER };
|
2008-10-08 16:32:01 +00:00
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
/* recursive dir insert options */
|
|
|
|
enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
|
|
|
|
|
|
|
|
/* show path types */
|
|
|
|
enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
|
|
|
|
|
2009-08-19 12:36:40 +00:00
|
|
|
/* scrollbar visibility/position */
|
2009-10-05 18:11:41 +00:00
|
|
|
enum { SCROLLBAR_OFF = 0, SCROLLBAR_LEFT, SCROLLBAR_RIGHT };
|
2009-08-19 12:36:40 +00:00
|
|
|
|
2011-02-08 20:31:35 +00:00
|
|
|
/* autoresume settings */
|
|
|
|
enum { AUTORESUME_NEXTTRACK_NEVER = 0, AUTORESUME_NEXTTRACK_ALWAYS,
|
|
|
|
AUTORESUME_NEXTTRACK_CUSTOM};
|
|
|
|
|
2007-03-07 01:16:25 +00:00
|
|
|
/* Alarm settings */
|
|
|
|
#ifdef HAVE_RTC_ALARM
|
|
|
|
enum { ALARM_START_WPS = 0,
|
|
|
|
#if CONFIG_TUNER
|
|
|
|
ALARM_START_FM,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
ALARM_START_REC,
|
|
|
|
#endif
|
|
|
|
ALARM_START_COUNT
|
|
|
|
};
|
|
|
|
#if CONFIG_TUNER && defined(HAVE_RECORDING)
|
|
|
|
#define ALARM_SETTING_TEXT "wps,fm,rec"
|
|
|
|
#elif CONFIG_TUNER
|
|
|
|
#define ALARM_SETTING_TEXT "wps,fm"
|
|
|
|
#elif defined(HAVE_RECORDING)
|
|
|
|
#define ALARM_SETTING_TEXT "wps,rec"
|
|
|
|
#endif
|
2007-01-29 13:18:57 +00:00
|
|
|
|
2007-03-07 01:16:25 +00:00
|
|
|
#endif /* HAVE_RTC_ALARM */
|
2008-12-13 06:01:08 +00:00
|
|
|
|
|
|
|
/* Keyclick stuff */
|
|
|
|
|
|
|
|
/* Not really a setting but several files should stay synced */
|
|
|
|
#define KEYCLICK_DURATION 2
|
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
/** virtual pointer stuff.. move to another .h maybe? **/
|
2004-07-23 23:01:20 +00:00
|
|
|
/* These define "virtual pointers", which could either be a literal string,
|
|
|
|
or a mean a string ID if the pointer is in a certain range.
|
|
|
|
This helps to save space for menus and options. */
|
|
|
|
|
|
|
|
#define VIRT_SIZE 0xFFFF /* more than enough for our string ID range */
|
2009-10-05 14:42:18 +00:00
|
|
|
#if defined(CPU_S5L870X)
|
|
|
|
/* the S5L870X has IRAM at 0, so we use 0xffff bytes right after that */
|
|
|
|
#define VIRT_PTR ((unsigned char*)0x40000)
|
|
|
|
#elif CONFIG_CPU==DM320
|
2007-11-02 02:50:02 +00:00
|
|
|
/* the DM320 has IRAM at 0, so we use 0xffff bytes right after that */
|
|
|
|
#define VIRT_PTR ((unsigned char*)0x4000)
|
2004-07-23 23:01:20 +00:00
|
|
|
#else
|
|
|
|
/* a location where we won't store strings, 0 is the fastest */
|
|
|
|
#define VIRT_PTR ((unsigned char*)0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* form a "virtual pointer" out of a language ID */
|
|
|
|
#define ID2P(id) (VIRT_PTR + id)
|
|
|
|
|
|
|
|
/* resolve a pointer which could be a virtualized ID or a literal */
|
2008-08-15 08:27:39 +00:00
|
|
|
#define P2STR(p) (char *)((p>=VIRT_PTR && p<VIRT_PTR+VIRT_SIZE) ? str(p-VIRT_PTR) : p)
|
2004-07-23 23:01:20 +00:00
|
|
|
|
|
|
|
/* get the string ID from a virtual pointer, -1 if not virtual */
|
2008-08-15 08:27:39 +00:00
|
|
|
#define P2ID(p) ((p>=VIRT_PTR && p<VIRT_PTR+VIRT_SIZE) ? p-VIRT_PTR : -1)
|
2004-07-23 23:01:20 +00:00
|
|
|
|
2006-07-31 19:13:21 +00:00
|
|
|
/* !defined(HAVE_LCD_COLOR) implies HAVE_LCD_CONTRAST with default 40.
|
|
|
|
Explicitly define HAVE_LCD_CONTRAST in config file for newer ports for
|
|
|
|
simplicity. */
|
2007-01-29 13:18:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** function prototypes **/
|
|
|
|
|
|
|
|
/* argument bits for settings_load() */
|
2009-08-07 00:56:39 +00:00
|
|
|
#define SETTINGS_RTC (BIT_N(0)) /* only the settings from the RTC nonvolatile RAM */
|
|
|
|
#define SETTINGS_HD (BIT_N(1)) /* only the settings from the disk sector */
|
|
|
|
#define SETTINGS_ALL (SETTINGS_RTC|SETTINGS_HD) /* both */
|
2011-12-19 20:12:52 +00:00
|
|
|
void settings_load(int which) INIT_ATTR;
|
2008-03-28 12:51:33 +00:00
|
|
|
bool settings_load_config(const char* file, bool apply);
|
2007-01-29 13:18:57 +00:00
|
|
|
|
2008-03-25 15:24:03 +00:00
|
|
|
void status_save(void);
|
2007-01-29 13:18:57 +00:00
|
|
|
int settings_save(void);
|
2016-03-30 22:25:24 +00:00
|
|
|
void reset_runtime(void);
|
2007-02-01 13:57:14 +00:00
|
|
|
/* defines for the options paramater */
|
2007-05-29 04:39:11 +00:00
|
|
|
enum {
|
|
|
|
SETTINGS_SAVE_CHANGED = 0,
|
|
|
|
SETTINGS_SAVE_ALL,
|
|
|
|
SETTINGS_SAVE_THEME,
|
2007-12-24 22:35:31 +00:00
|
|
|
SETTINGS_SAVE_SOUND,
|
2007-05-29 04:39:11 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
SETTINGS_SAVE_RECPRESETS,
|
|
|
|
#endif
|
2007-12-07 10:59:07 +00:00
|
|
|
SETTINGS_SAVE_EQPRESET,
|
2007-05-29 04:39:11 +00:00
|
|
|
};
|
2008-03-28 12:51:33 +00:00
|
|
|
bool settings_save_config(int options);
|
2007-01-29 13:18:57 +00:00
|
|
|
|
2008-04-20 14:12:28 +00:00
|
|
|
struct settings_list;
|
|
|
|
void reset_setting(const struct settings_list *setting, void *var);
|
2007-01-29 13:18:57 +00:00
|
|
|
void settings_reset(void);
|
|
|
|
void sound_settings_apply(void);
|
2009-08-16 20:12:17 +00:00
|
|
|
|
2011-09-20 17:43:55 +00:00
|
|
|
/* call this after loading a .wps/.rwps or other skin files, so that the
|
2009-08-16 20:12:17 +00:00
|
|
|
* skin buffer is reset properly
|
|
|
|
*/
|
|
|
|
void settings_apply_skins(void);
|
|
|
|
|
2010-03-06 12:14:12 +00:00
|
|
|
void settings_apply(bool read_disk);
|
2007-01-29 13:18:57 +00:00
|
|
|
void settings_apply_pm_range(void);
|
|
|
|
void settings_display(void);
|
|
|
|
|
|
|
|
enum optiontype { INT, BOOL };
|
|
|
|
|
2008-03-25 15:24:03 +00:00
|
|
|
const struct settings_list* find_setting(const void* variable, int *id);
|
2011-09-04 13:17:09 +00:00
|
|
|
const struct settings_list* find_setting_by_cfgname(const char* name, int *id);
|
2008-03-28 12:51:33 +00:00
|
|
|
bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len);
|
2011-04-17 11:23:48 +00:00
|
|
|
bool cfg_string_to_int(int setting_id, int* out, const char* str);
|
2008-12-07 16:19:25 +00:00
|
|
|
bool cfg_to_string(int setting_id, char* buf, int buf_len);
|
2008-03-25 15:24:03 +00:00
|
|
|
bool set_bool_options(const char* string, const bool* variable,
|
2008-03-28 12:51:33 +00:00
|
|
|
const char* yes_str, int yes_voice,
|
|
|
|
const char* no_str, int no_voice,
|
2007-01-29 13:18:57 +00:00
|
|
|
void (*function)(bool));
|
|
|
|
|
2008-03-25 15:24:03 +00:00
|
|
|
bool set_bool(const char* string, const bool* variable);
|
2008-03-28 12:51:33 +00:00
|
|
|
bool set_int(const unsigned char* string, const char* unit, int voice_unit,
|
2008-03-25 15:24:03 +00:00
|
|
|
const int* variable,
|
2008-03-28 12:51:33 +00:00
|
|
|
void (*function)(int), int step, int min, int max,
|
2009-08-20 16:47:44 +00:00
|
|
|
const char* (*formatter)(char*, size_t, int, const char*) );
|
2008-03-25 15:24:03 +00:00
|
|
|
|
2007-02-12 14:22:35 +00:00
|
|
|
/* use this one if you need to create a lang from the value (i.e with TALK_ID()) */
|
2008-03-28 12:51:33 +00:00
|
|
|
bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit,
|
2008-03-25 15:24:03 +00:00
|
|
|
const int* variable,
|
2008-03-28 12:51:33 +00:00
|
|
|
void (*function)(int), int step, int min, int max,
|
2009-08-20 16:47:44 +00:00
|
|
|
const char* (*formatter)(char*, size_t, int, const char*),
|
2007-11-26 23:10:20 +00:00
|
|
|
int32_t (*get_talk_id)(int, int));
|
2007-01-29 13:18:57 +00:00
|
|
|
|
2010-07-25 22:45:57 +00:00
|
|
|
void set_file(const char* filename, char* setting, const int maxlen);
|
2008-03-25 15:24:03 +00:00
|
|
|
|
2008-03-28 12:51:33 +00:00
|
|
|
bool set_option(const char* string, const void* variable, enum optiontype type,
|
|
|
|
const struct opt_items* options, int numoptions, void (*function)(int));
|
2008-03-25 15:24:03 +00:00
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** global_settings and global_status struct definitions **/
|
|
|
|
|
2007-01-24 02:19:22 +00:00
|
|
|
struct system_status
|
|
|
|
{
|
|
|
|
int resume_index; /* index in playlist (-1 for no active resume) */
|
2012-12-09 20:04:17 +00:00
|
|
|
uint32_t resume_crc32; /* crc32 of the name of the file */
|
2013-07-14 11:59:39 +00:00
|
|
|
uint32_t resume_elapsed; /* elapsed time in last file */
|
2007-01-24 02:19:22 +00:00
|
|
|
uint32_t resume_offset; /* byte offset in mp3 file */
|
|
|
|
int runtime; /* current runtime since last charge */
|
|
|
|
int topruntime; /* top known runtime */
|
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
int dircache_size; /* directory cache structure last size, 22 bits */
|
|
|
|
#endif
|
2007-02-18 08:46:12 +00:00
|
|
|
#if CONFIG_TUNER
|
2007-01-24 02:19:22 +00:00
|
|
|
int last_frequency; /* Last frequency for resuming, in FREQ_STEP units,
|
|
|
|
relative to MIN_FREQ */
|
|
|
|
#endif
|
2008-11-03 09:40:45 +00:00
|
|
|
signed char last_screen;
|
2007-04-22 08:50:24 +00:00
|
|
|
int viewer_icon_count;
|
2009-11-01 02:36:51 +00:00
|
|
|
int last_volume_change; /* tick the last volume change happened. skins use this */
|
2011-09-24 13:19:34 +00:00
|
|
|
int font_id[NB_SCREENS]; /* font id of the settings font for each screen */
|
2013-07-14 11:59:39 +00:00
|
|
|
|
2007-01-24 02:19:22 +00:00
|
|
|
};
|
2007-02-07 04:24:21 +00:00
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
struct user_settings
|
|
|
|
{
|
|
|
|
/* audio settings */
|
|
|
|
|
2007-11-18 16:45:58 +00:00
|
|
|
int volume; /* audio output volume in decibels range depends on the dac */
|
iBasso DX50/DX90: Major code cleanup and reorganization.
Reorganization
- Separated iBasso devices from PLATFORM_ANDROID. These are now standlone
hosted targets. Most device specific code is in the
firmware/target/hosted/ibasso directory.
- No dependency on Android SDK, only the Android NDK is needed.
32 bit Android NDK and Android API Level 16.
- Separate implementation for each device where feasible.
Code cleanup
- Rewrite of existing code, from simple reformat to complete reimplementation.
- New backlight interface, seperating backlight from touchscreen.
- Rewrite of device button handler, removing unneeded code and fixing memory
leaks.
- New Debug messages interface logging to Android adb logcat (DEBUGF, panicf,
logf).
- Rewrite of lcd device handler, removing unneeded code and fixing memory leaks.
- Rewrite of audiohw device handler/pcm interface, removing unneeded code and
fixing memory leaks, enabling 44.1/48kHz pthreaded playback.
- Rewrite of power and powermng, proper shutdown, using batterylog results
(see http://gerrit.rockbox.org/r/#/c/1047/).
- Rewrite of configure (Android NDK) and device specific config.
- Rewrite of the Android NDK specific Makefile.
Misc
- All plugins/games/demos activated.
- Update tinyalsa to latest from https://github.com/tinyalsa/tinyalsa.
Includes
- http://gerrit.rockbox.org/r/#/c/993/
- http://gerrit.rockbox.org/r/#/c/1010/
- http://gerrit.rockbox.org/r/#/c/1035/
Does not include http://gerrit.rockbox.org/r/#/c/1007/ due to new backlight
interface and new option for hold switch, touchscreen, physical button
interaction.
Rockbox needs the iBasso DX50/DX90 loader for startup, see
http://gerrit.rockbox.org/r/#/c/1099/
The loader expects Rockbox to be installed in /mnt/sdcard/.rockbox/. If
/mnt/sdcard/ is accessed as USB mass storage device, Rockbox will exit
gracefully and the loader will restart Rockbox on USB disconnect.
Tested on iBasso DX50.
Compiled (not tested) for iBasso DX90.
Compiled (not tested) for PLATFORM_ANDROID.
Change-Id: I5f5e22e68f5b4cf29c28e2b40b2c265f2beb7ab7
2015-02-02 20:44:29 +00:00
|
|
|
int balance; /* stereo balance: -100 - +100 -100=left 0=bal +100=right */
|
2007-11-18 16:45:58 +00:00
|
|
|
int bass; /* bass boost/cut in decibels */
|
|
|
|
int treble; /* treble boost/cut in decibels */
|
2005-01-12 00:24:15 +00:00
|
|
|
int channel_config; /* Stereo, Mono, Custom, Mono left, Mono right, Karaoke */
|
|
|
|
int stereo_width; /* 0-255% */
|
2007-11-18 16:45:58 +00:00
|
|
|
|
2010-05-15 14:16:35 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_BASS_CUTOFF
|
2007-11-24 07:51:00 +00:00
|
|
|
int bass_cutoff;
|
2010-05-15 14:16:35 +00:00
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_TREBLE_CUTOFF
|
2007-11-24 07:51:00 +00:00
|
|
|
int treble_cutoff;
|
|
|
|
#endif
|
|
|
|
|
2009-11-10 03:46:08 +00:00
|
|
|
#ifdef HAVE_CROSSFADE
|
2009-01-03 12:48:06 +00:00
|
|
|
/* Crossfade */
|
|
|
|
int crossfade; /* Enable crossfade (0=off, 1=shuffle, 2=trackskip,
|
|
|
|
3=shuff&trackskip, 4=always) */
|
2005-11-06 16:40:20 +00:00
|
|
|
int crossfade_fade_in_delay; /* Fade in delay (0-15s) */
|
|
|
|
int crossfade_fade_out_delay; /* Fade out delay (0-15s) */
|
|
|
|
int crossfade_fade_in_duration; /* Fade in duration (0-15s) */
|
|
|
|
int crossfade_fade_out_duration; /* Fade out duration (0-15s) */
|
|
|
|
int crossfade_fade_out_mixmode; /* Fade out mode (0=crossfade,1=mix) */
|
2009-11-10 03:46:08 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
|
|
|
|
/* Replaygain */
|
2012-04-30 20:27:01 +00:00
|
|
|
struct replaygain_settings replaygain_settings;
|
2009-01-03 12:48:06 +00:00
|
|
|
|
|
|
|
/* Crossfeed */
|
2012-05-01 07:58:27 +00:00
|
|
|
int crossfeed; /* crossfeed type */
|
2009-01-03 12:48:06 +00:00
|
|
|
unsigned int crossfeed_direct_gain; /* dB x 10 */
|
|
|
|
unsigned int crossfeed_cross_gain; /* dB x 10 */
|
|
|
|
unsigned int crossfeed_hf_attenuation; /* dB x 10 */
|
|
|
|
unsigned int crossfeed_hf_cutoff; /* Frequency in Hz */
|
|
|
|
|
|
|
|
/* EQ */
|
|
|
|
bool eq_enabled; /* Enable equalizer */
|
|
|
|
unsigned int eq_precut; /* dB */
|
2012-03-27 23:52:15 +00:00
|
|
|
struct eq_band_setting eq_band_settings[EQ_NUM_BANDS]; /* for each band */
|
2009-01-03 12:48:06 +00:00
|
|
|
|
|
|
|
/* Misc. swcodec */
|
|
|
|
int beep; /* system beep volume when changing tracks etc. */
|
|
|
|
int keyclick; /* keyclick volume */
|
|
|
|
int keyclick_repeats; /* keyclick on repeats */
|
|
|
|
bool dithering_enabled;
|
2012-05-08 14:34:26 +00:00
|
|
|
#ifdef HAVE_PITCHCONTROL
|
2009-06-12 07:20:50 +00:00
|
|
|
bool timestretch_enabled;
|
2010-09-17 20:28:47 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
|
2007-07-10 07:41:37 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
2006-11-06 18:07:30 +00:00
|
|
|
int rec_format; /* record format index */
|
2009-01-03 12:48:06 +00:00
|
|
|
int rec_mono_mode; /* how to create mono: L, R, L+R */
|
|
|
|
|
|
|
|
/* Encoder Settings Start - keep these together */
|
|
|
|
struct mp3_enc_config mp3_enc_config;
|
|
|
|
#if 0 /* These currently contain no members but their places in line
|
|
|
|
should be held */
|
|
|
|
struct aiff_enc_config aiff_enc_config;
|
|
|
|
struct wav_enc_config wav_enc_config;
|
|
|
|
struct wavpack_enc_config wavpack_enc_config;
|
|
|
|
#endif
|
|
|
|
/* Encoder Settings End */
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
int rec_source; /* 0=mic, 1=line, 2=S/PDIF, 2 or 3=FM Radio */
|
|
|
|
int rec_frequency; /* 0 = 44.1kHz (depends on target)
|
2002-11-10 23:18:33 +00:00
|
|
|
1 = 48kHz
|
|
|
|
2 = 32kHz
|
|
|
|
3 = 22.05kHz
|
|
|
|
4 = 24kHz
|
|
|
|
5 = 16kHz */
|
|
|
|
int rec_channels; /* 0=Stereo, 1=Mono */
|
2009-01-03 12:48:06 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
int rec_mic_gain; /* depends on target */
|
|
|
|
int rec_left_gain; /* depends on target */
|
2009-01-03 12:48:06 +00:00
|
|
|
int rec_right_gain; /* depends on target */
|
|
|
|
bool peak_meter_clipcounter; /* clipping count indicator */
|
2003-04-20 22:00:30 +00:00
|
|
|
bool rec_editable; /* true means that the bit reservoir is off */
|
2003-06-04 13:48:50 +00:00
|
|
|
|
|
|
|
/* note: timesplit setting is not saved */
|
Auto-Ranging Time Formatting For Menus (hh:mm:ss:mss)
Unifies time formatting in settings_list.c allows time format to
display as HH:MM:SS.MSS or any consecutive combination thereof
(hh:mm:ss, mm:ss, mm:ss.mss, ss.mss, hh, mm, ss ,mss)
works in INT and TABLE settings with the addition of flag 'F_TIME_SETTING'
Time is auto-ranged dependent on value
Adds talk_time_intervals to allow time values to be spoken similar to
display format: x Hours, x Minutes, x Seconds, x Milliseconds
Table lookups merged or removed from recording, clip meter and lcd timeout
-String_Choice replaced with TABLE_SETTING or INT_SETTING for these
functions as well, cleaned-up cfg_vals that get saved to cfgfile
RTL Languages ARE supported
Negative values ARE supported
Backlight on/off are now Always and Never to share formatter with LCD
Timeout
Added flag to allow ranged units to be locked to a minimum index
Added flag to allow leading zero to be supressed from the largest unit
merged talk_time_unit() and talk_time_intervals()
optimized time_split()
optimized format_time_auto()
Backlight time-out list same as original
Change-Id: I59027c62d3f2956bd16fdcc1a48b2ac32c084abd
2018-12-18 04:27:55 +00:00
|
|
|
int rec_timesplit; /* IN MINUTES 0 = off */
|
2006-07-22 17:23:05 +00:00
|
|
|
int rec_sizesplit; /* 0 = off,
|
|
|
|
1 = 5MB, 2 = 10MB, 3 = 15MB, 4 = 32MB
|
|
|
|
5 = 64MB, 6 = 75MB, 7 = 100MB, 8 = 128MB
|
|
|
|
9 = 256MB, 10= 512MB, 11= 650MB, 12= 700MB,
|
|
|
|
13= 1GB, 14 = 1.5GB 15 = 1.75MB*/
|
|
|
|
int rec_split_type; /* split/stop */
|
|
|
|
int rec_split_method; /* time/filesize */
|
2006-09-18 12:41:12 +00:00
|
|
|
|
2003-12-31 03:13:29 +00:00
|
|
|
int rec_prerecord_time; /* In seconds, 0-30, 0 means OFF */
|
2010-11-15 12:33:47 +00:00
|
|
|
char rec_directory[MAX_PATHNAME+1];
|
2006-02-17 22:47:56 +00:00
|
|
|
int cliplight; /* 0 = off
|
|
|
|
1 = main lcd
|
|
|
|
2 = main and remote lcd
|
|
|
|
3 = remote lcd */
|
2008-01-21 09:48:44 +00:00
|
|
|
|
2008-05-28 10:55:39 +00:00
|
|
|
int rec_start_thres_db;
|
|
|
|
int rec_start_thres_linear;
|
2005-04-04 09:12:12 +00:00
|
|
|
int rec_start_duration; /* index of trig_durations */
|
2008-05-28 10:55:39 +00:00
|
|
|
int rec_stop_thres_db;
|
|
|
|
int rec_stop_thres_linear;
|
|
|
|
int rec_stop_postrec;
|
2005-04-04 09:12:12 +00:00
|
|
|
int rec_stop_gap; /* index of trig_durations */
|
|
|
|
int rec_trigger_mode; /* see TRIG_MODE_XXX constants */
|
2006-11-09 12:27:56 +00:00
|
|
|
int rec_trigger_type; /* what to do when trigger released */
|
2011-06-05 12:36:27 +00:00
|
|
|
#ifdef HAVE_HISTOGRAM
|
|
|
|
int histogram_interval; /* recording peakmeter histogram */
|
2010-03-03 22:16:08 +00:00
|
|
|
#endif
|
2005-04-04 09:12:12 +00:00
|
|
|
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
int rec_agc_preset_mic; /* AGC mic preset modes:
|
|
|
|
0 = Off
|
|
|
|
1 = Safety (clip)
|
|
|
|
2 = Live (slow)
|
|
|
|
3 = DJ-Set (slow)
|
|
|
|
4 = Medium
|
|
|
|
5 = Voice (fast) */
|
|
|
|
int rec_agc_preset_line; /* AGC line-in preset modes:
|
|
|
|
0 = Off
|
|
|
|
1 = Safety (clip)
|
|
|
|
2 = Live (slow)
|
|
|
|
3 = DJ-Set (slow)
|
|
|
|
4 = Medium
|
|
|
|
5 = Voice (fast) */
|
|
|
|
int rec_agc_maxgain_mic; /* AGC maximum mic gain */
|
|
|
|
int rec_agc_maxgain_line; /* AGC maximum line-in gain */
|
|
|
|
int rec_agc_cliptime; /* 0.2, 0.4, 0.6, 0.8, 1s */
|
|
|
|
#endif
|
2007-07-10 07:41:37 +00:00
|
|
|
#endif /* HAVE_RECORDING */
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
#if CONFIG_TUNER
|
|
|
|
int fm_region;
|
|
|
|
bool fm_force_mono; /* Forces Mono mode if true */
|
|
|
|
unsigned char fmr_file[MAX_FILENAME+1]; /* last fmr preset */
|
2010-05-12 10:38:00 +00:00
|
|
|
unsigned char fms_file[MAX_FILENAME+1]; /* last fms */
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
unsigned char rfms_file[MAX_FILENAME+1]; /* last remote-fms */
|
2007-11-18 18:27:36 +00:00
|
|
|
#endif
|
2010-05-12 10:38:00 +00:00
|
|
|
#endif /* CONFIG_TUNER */
|
2007-11-18 17:04:46 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
/* misc options */
|
2009-03-02 19:25:50 +00:00
|
|
|
#ifndef HAVE_WHEEL_ACCELERATION
|
2009-01-03 12:48:06 +00:00
|
|
|
int list_accel_start_delay; /* ms before we start increaseing step size */
|
|
|
|
int list_accel_wait; /* ms between increases */
|
2007-11-18 16:45:58 +00:00
|
|
|
#endif
|
2008-11-26 08:26:13 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
|
|
|
|
int touchpad_sensitivity;
|
2007-11-18 16:45:58 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
|
2013-12-01 18:25:42 +00:00
|
|
|
#ifdef HAVE_TOUCHPAD_DEADZONE
|
|
|
|
int touchpad_deadzone;
|
|
|
|
#endif
|
|
|
|
|
2011-05-13 22:28:47 +00:00
|
|
|
int pause_rewind; /* time in s to rewind when pausing */
|
2020-09-17 18:53:29 +00:00
|
|
|
#if defined(HAVE_HEADPHONE_DETECTION) || defined(HAVE_LINEOUT_DETECTION)
|
2009-01-03 12:48:06 +00:00
|
|
|
int unplug_mode; /* pause on headphone unplug */
|
|
|
|
bool unplug_autoresume; /* disable auto-resume if no phones */
|
2005-07-01 09:42:39 +00:00
|
|
|
#endif
|
2005-09-10 12:28:16 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAVE_QUICKSCREEN
|
2009-10-28 20:41:34 +00:00
|
|
|
int qs_items[QUICKSCREEN_ITEM_COUNT];
|
2006-04-02 12:23:08 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
|
|
|
|
int timeformat; /* time format: 0=24 hour clock, 1=12 hour clock */
|
2006-09-27 21:36:50 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAVE_DISK_STORAGE
|
|
|
|
int disk_spindown; /* time until disk spindown, in seconds (0=off) */
|
|
|
|
int buffer_margin; /* audio buffer watermark margin, in seconds */
|
|
|
|
#endif
|
2002-06-27 00:20:00 +00:00
|
|
|
|
2005-01-17 11:37:36 +00:00
|
|
|
int dirfilter; /* 0=display all, 1=only supported, 2=only music,
|
|
|
|
3=dirs+playlists, 4=ID3 database */
|
2007-08-13 19:29:49 +00:00
|
|
|
int show_filename_ext; /* show filename extensions in file browser?
|
|
|
|
0 = no, 1 = yes, 2 = only unknown 0 */
|
2009-01-03 12:48:06 +00:00
|
|
|
int default_codepage; /* set default codepage for tag conversion */
|
|
|
|
bool hold_lr_for_scroll_in_list; /* hold L/R scrolls the list left/right */
|
2002-09-18 10:12:16 +00:00
|
|
|
bool play_selected; /* Plays selected file even in shuffle mode */
|
2009-01-03 12:48:06 +00:00
|
|
|
bool party_mode; /* party mode - unstoppable music */
|
|
|
|
bool audioscrobbler; /* Audioscrobbler logging */
|
|
|
|
bool cuesheet;
|
|
|
|
bool car_adapter_mode; /* 0=off 1=on */
|
2019-01-02 02:05:13 +00:00
|
|
|
int car_adapter_mode_delay; /* delay before resume, in seconds*/
|
2009-01-03 12:48:06 +00:00
|
|
|
int start_in_screen;
|
|
|
|
#if defined(HAVE_RTC_ALARM) && \
|
|
|
|
(defined(HAVE_RECORDING) || CONFIG_TUNER)
|
|
|
|
int alarm_wake_up_screen;
|
|
|
|
#endif
|
2002-09-04 03:38:37 +00:00
|
|
|
int ff_rewind_min_step; /* FF/Rewind minimum step size */
|
2002-08-28 19:34:07 +00:00
|
|
|
int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
|
2007-08-01 08:50:44 +00:00
|
|
|
|
2002-09-27 09:31:31 +00:00
|
|
|
int peak_meter_release; /* units per read out */
|
|
|
|
int peak_meter_hold; /* hold time for peak meter in 1/100 s */
|
|
|
|
int peak_meter_clip_hold; /* hold time for clips */
|
2002-10-29 12:09:15 +00:00
|
|
|
bool peak_meter_dbfs; /* show linear or dbfs values */
|
2003-02-14 14:14:55 +00:00
|
|
|
int peak_meter_min; /* range minimum */
|
|
|
|
int peak_meter_max; /* range maximum */
|
2002-09-27 09:31:31 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
unsigned char wps_file[MAX_FILENAME+1]; /* last wps */
|
2009-10-19 15:28:15 +00:00
|
|
|
unsigned char sbs_file[MAX_FILENAME+1]; /* last statusbar skin */
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */
|
|
|
|
unsigned char rsbs_file[MAX_FILENAME+1]; /* last remote statusbar skin */
|
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
unsigned char lang_file[MAX_FILENAME+1]; /* last language */
|
2010-11-15 12:33:47 +00:00
|
|
|
unsigned char playlist_catalog_dir[MAX_PATHNAME+1];
|
2009-01-03 12:48:06 +00:00
|
|
|
int skip_length; /* skip length */
|
|
|
|
int max_files_in_dir; /* Max entries in directory (file browser) */
|
|
|
|
int max_files_in_playlist; /* Max entries in playlist */
|
|
|
|
int volume_type; /* how volume is displayed: 0=graphic, 1=percent */
|
|
|
|
int battery_display; /* how battery is displayed: 0=graphic, 1=percent */
|
|
|
|
bool show_icons; /* 0=hide 1=show */
|
2009-11-07 01:26:22 +00:00
|
|
|
int statusbar; /* STATUSBAR_* enum values */
|
2009-07-05 18:07:58 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2009-11-07 01:26:22 +00:00
|
|
|
int remote_statusbar;
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
#endif
|
2002-08-22 15:47:30 +00:00
|
|
|
|
2009-08-19 12:36:40 +00:00
|
|
|
int scrollbar; /* SCROLLBAR_* enum values */
|
|
|
|
int scrollbar_width;
|
|
|
|
|
2011-10-17 17:38:10 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
int list_line_padding;
|
|
|
|
#endif
|
2013-05-06 05:20:40 +00:00
|
|
|
#if LCD_DEPTH > 1
|
|
|
|
int list_separator_height; /* -1=auto (== 1 currently), 0=disabled, X=height in pixels */
|
|
|
|
int list_separator_color;
|
|
|
|
#endif
|
2002-09-09 14:25:39 +00:00
|
|
|
/* goto current song when exiting WPS */
|
|
|
|
bool browse_current; /* 1=goto current song,
|
|
|
|
0=goto previous location */
|
2009-01-03 12:48:06 +00:00
|
|
|
bool scroll_paginated; /* 0=dont 1=do */
|
|
|
|
int scroll_speed; /* long texts scrolling speed: 1-30 */
|
|
|
|
int bidir_limit; /* bidir scroll length limit */
|
|
|
|
int scroll_delay; /* delay (in 1/10s) before starting scroll */
|
|
|
|
int scroll_step; /* pixels to advance per update */
|
2004-01-14 00:13:04 +00:00
|
|
|
|
|
|
|
/* auto bookmark settings */
|
|
|
|
int autoloadbookmark; /* auto load option: 0=off, 1=ask, 2=on */
|
|
|
|
int autocreatebookmark; /* auto create option: 0=off, 1=ask, 2=on */
|
2010-07-05 16:39:00 +00:00
|
|
|
bool autoupdatebookmark;/* auto update option */
|
2018-10-30 13:43:32 +00:00
|
|
|
int usemrb; /* use MRB list: 0=No, 1=Yes, 2=One per playlist,
|
|
|
|
3=One per playlist and track */
|
2003-05-09 16:01:21 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
bool dircache; /* enable directory cache */
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_TAGCACHE
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
bool tagcache_ram; /* load tagcache to ram? */
|
2003-05-09 16:01:21 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
bool tagcache_autoupdate; /* automatically keep tagcache in sync? */
|
2011-01-02 22:39:05 +00:00
|
|
|
bool autoresume_enable; /* enable auto-resume feature? */
|
2011-02-08 20:31:35 +00:00
|
|
|
int autoresume_automatic; /* resume next track? 0=never, 1=always,
|
|
|
|
2=custom */
|
2011-02-11 00:20:03 +00:00
|
|
|
unsigned char autoresume_paths[MAX_PATHNAME+1]; /* colon-separated list */
|
2009-01-03 12:48:06 +00:00
|
|
|
bool runtimedb; /* runtime database active? */
|
2012-07-18 21:36:57 +00:00
|
|
|
unsigned char tagcache_scan_paths[MAX_PATHNAME+1];
|
2009-01-03 12:48:06 +00:00
|
|
|
#endif /* HAVE_TAGCACHE */
|
2003-05-09 16:01:21 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2011-04-10 13:25:47 +00:00
|
|
|
unsigned char backdrop_file[MAX_PATHNAME+1]; /* backdrop bitmap file */
|
2009-01-03 12:48:06 +00:00
|
|
|
#endif
|
2003-11-03 23:36:36 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
int bg_color; /* background color native format */
|
|
|
|
int fg_color; /* foreground color native format */
|
|
|
|
int lss_color; /* background color for the selector or start color for the gradient */
|
|
|
|
int lse_color; /* end color for the selector gradient */
|
|
|
|
int lst_color; /* color of the text for the selector */
|
|
|
|
unsigned char colors_file[MAX_FILENAME+1];
|
2007-11-18 16:45:58 +00:00
|
|
|
#endif
|
2004-01-26 17:05:21 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
/* playlist/playback settings */
|
|
|
|
int repeat_mode; /* 0=off 1=repeat all 2=repeat one 3=shuffle 4=ab */
|
|
|
|
int next_folder; /* move to next folder */
|
2012-03-19 09:56:38 +00:00
|
|
|
bool constrain_next_folder; /* whether next_folder is constrained to
|
|
|
|
directories within start_directory */
|
2009-01-03 12:48:06 +00:00
|
|
|
int recursive_dir_insert; /* should directories be inserted recursively */
|
|
|
|
bool fade_on_stop; /* fade on pause/unpause/stop */
|
|
|
|
bool playlist_shuffle;
|
|
|
|
bool warnon_erase_dynplaylist; /* warn when erasing dynamic playlist */
|
|
|
|
|
2004-01-26 17:05:21 +00:00
|
|
|
/* playlist viewer settings */
|
|
|
|
bool playlist_viewer_icons; /* display icons on viewer */
|
|
|
|
bool playlist_viewer_indices; /* display playlist indices on viewer */
|
|
|
|
int playlist_viewer_track_display; /* how to display tracks in viewer */
|
2004-03-27 00:11:01 +00:00
|
|
|
|
|
|
|
/* voice UI settings */
|
|
|
|
bool talk_menu; /* enable voice UI */
|
2007-06-07 09:24:53 +00:00
|
|
|
int talk_dir; /* voiced directories mode: 0=off 1=number 2=spell */
|
|
|
|
bool talk_dir_clip; /* use directory .talk clips */
|
2008-01-21 09:48:44 +00:00
|
|
|
int talk_file; /* voice file mode: 0=off, 1=number, 2=spell */
|
2007-06-07 09:24:53 +00:00
|
|
|
bool talk_file_clip; /* use file .talk clips */
|
2007-11-07 03:25:33 +00:00
|
|
|
bool talk_filetype; /* say file type */
|
2007-11-03 05:00:49 +00:00
|
|
|
bool talk_battery_level;
|
2004-06-22 09:16:44 +00:00
|
|
|
|
|
|
|
/* file browser sorting */
|
2009-01-03 12:48:06 +00:00
|
|
|
bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
|
|
|
|
int sort_dir; /* 0=alpha, 1=date (old first), 2=date (new first) */
|
2009-03-01 17:55:59 +00:00
|
|
|
int sort_file; /* 0=alpha, 1=date, 2=date (new first), 3=type */
|
|
|
|
int interpret_numbers; /* true=strnatcmp, false=strcmp */
|
2005-07-24 15:32:28 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
/* power settings */
|
|
|
|
int poweroff; /* idle power off timer */
|
2012-01-03 23:44:38 +00:00
|
|
|
#if BATTERY_CAPACITY_DEFAULT > 0
|
2009-01-03 12:48:06 +00:00
|
|
|
int battery_capacity; /* in mAh */
|
2010-09-01 23:36:15 +00:00
|
|
|
#endif
|
2008-01-21 09:48:44 +00:00
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
#if BATTERY_TYPES_COUNT > 1
|
|
|
|
int battery_type; /* for units which can take multiple types (Ondio). */
|
2006-07-10 16:47:30 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAVE_SPDIF_POWER
|
|
|
|
bool spdif_enable; /* S/PDIF power on/off */
|
2006-10-25 10:17:57 +00:00
|
|
|
#endif
|
2012-12-26 17:01:19 +00:00
|
|
|
#ifdef HAVE_USB_CHARGING_ENABLE
|
2010-06-05 10:05:27 +00:00
|
|
|
int usb_charging;
|
2005-11-17 20:14:59 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
/* device settings */
|
|
|
|
#ifdef HAVE_LCD_CONTRAST
|
|
|
|
int contrast; /* lcd contrast */
|
2006-02-07 14:07:46 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAVE_LCD_INVERT
|
|
|
|
bool invert; /* invert display */
|
2006-02-02 20:42:56 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAVE_LCD_FLIP
|
|
|
|
bool flip_display; /* turn display (and button layout) by 180 degrees */
|
|
|
|
#endif
|
|
|
|
int cursor_style; /* style of the selection cursor */
|
|
|
|
int screen_scroll_step;
|
|
|
|
int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
|
|
|
|
bool offset_out_of_view;
|
|
|
|
unsigned char icon_file[MAX_FILENAME+1];
|
|
|
|
unsigned char viewers_icon_file[MAX_FILENAME+1];
|
|
|
|
unsigned char font_file[MAX_FILENAME+1]; /* last font */
|
2011-11-20 15:41:17 +00:00
|
|
|
int glyphs_to_cache; /* default font allocation size in glyphs */
|
2010-02-14 06:26:16 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
unsigned char remote_font_file[MAX_FILENAME+1]; /* last font */
|
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
unsigned char kbd_file[MAX_FILENAME+1]; /* last keyboard */
|
2019-06-25 20:32:39 +00:00
|
|
|
int backlight_timeout; /* backlight off timeout: -1=never,
|
|
|
|
0=always, or time in seconds */
|
2009-01-03 12:48:06 +00:00
|
|
|
bool caption_backlight; /* turn on backlight at end and start of track */
|
2006-03-24 13:47:24 +00:00
|
|
|
bool bl_filter_first_keypress; /* filter first keypress when dark? */
|
2009-01-03 12:48:06 +00:00
|
|
|
#if CONFIG_CHARGING
|
|
|
|
int backlight_timeout_plugged;
|
2006-03-25 19:16:45 +00:00
|
|
|
#endif
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
#ifndef HAS_BUTTON_HOLD
|
|
|
|
bool bt_selective_softlock_actions;
|
|
|
|
int bt_selective_softlock_actions_mask;
|
|
|
|
#endif
|
2009-03-09 23:13:50 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
bool bl_selective_actions; /* backlight disable on some actions */
|
|
|
|
int bl_selective_actions_mask;/* mask of actions that will not enable backlight */
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAS_BUTTON_HOLD
|
2006-09-10 02:00:40 +00:00
|
|
|
int backlight_on_button_hold; /* what to do with backlight when hold
|
|
|
|
switch is on */
|
2006-03-24 13:47:24 +00:00
|
|
|
#endif
|
2008-05-14 19:29:25 +00:00
|
|
|
#ifdef HAVE_LCD_SLEEP_SETTING
|
2006-09-10 02:00:40 +00:00
|
|
|
int lcd_sleep_after_backlight_off; /* when to put lcd to sleep after backlight
|
2019-06-25 20:32:39 +00:00
|
|
|
has turned off: -1=never, 0=always,
|
|
|
|
or time in seconds */
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
#endif /* HAVE_BACKLIGHT */
|
|
|
|
|
2009-01-26 23:21:49 +00:00
|
|
|
#if defined(HAVE_BACKLIGHT_FADING_INT_SETTING)
|
2009-01-03 12:48:06 +00:00
|
|
|
int backlight_fade_in; /* backlight fade in timing: 0..3 */
|
|
|
|
int backlight_fade_out; /* backlight fade in timing: 0..7 */
|
2009-01-26 23:21:49 +00:00
|
|
|
#elif defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING)
|
2009-01-03 12:48:06 +00:00
|
|
|
bool backlight_fade_in;
|
|
|
|
bool backlight_fade_out;
|
2006-09-26 10:03:56 +00:00
|
|
|
#endif
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
2009-01-03 12:48:06 +00:00
|
|
|
int brightness;
|
2006-10-05 12:40:13 +00:00
|
|
|
#endif
|
2006-11-06 18:07:30 +00:00
|
|
|
|
2007-04-16 09:14:36 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2009-01-03 12:48:06 +00:00
|
|
|
/* remote lcd */
|
|
|
|
int remote_contrast; /* lcd contrast: 0-63 0=low 63=high */
|
2019-06-25 20:32:39 +00:00
|
|
|
int remote_backlight_timeout; /* backlight off timeout: -1=never,
|
|
|
|
0=always, or time in seconds */
|
2009-01-03 12:48:06 +00:00
|
|
|
int remote_backlight_timeout_plugged;
|
|
|
|
int remote_scroll_speed; /* long texts scrolling speed: 1-30 */
|
|
|
|
int remote_scroll_delay; /* delay (in 1/10s) before starting scroll */
|
|
|
|
int remote_scroll_step; /* pixels to advance per update */
|
|
|
|
int remote_bidir_limit; /* bidir scroll length limit */
|
|
|
|
bool remote_invert; /* invert display */
|
|
|
|
bool remote_flip_display; /* turn display (and button layout) by 180 degrees */
|
|
|
|
bool remote_caption_backlight; /* turn on backlight at end and start of track */
|
|
|
|
bool remote_bl_filter_first_keypress; /* filter first remote keypress when remote dark? */
|
2007-04-16 09:14:36 +00:00
|
|
|
unsigned char remote_icon_file[MAX_FILENAME+1];
|
|
|
|
unsigned char remote_viewers_icon_file[MAX_FILENAME+1];
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAS_REMOTE_BUTTON_HOLD
|
|
|
|
int remote_backlight_on_button_hold; /* what to do with remote backlight when hold
|
|
|
|
switch is on */
|
2007-04-16 09:14:36 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD_TICKING
|
|
|
|
bool remote_reduce_ticking; /* 0=normal operation,
|
|
|
|
1=EMI reduce on with cost more CPU. */
|
2007-06-17 21:16:34 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
#endif /* HAVE_REMOTE_LCD */
|
|
|
|
|
2007-04-22 13:02:24 +00:00
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
2007-10-07 15:02:02 +00:00
|
|
|
int buttonlight_timeout;
|
2007-04-22 13:02:24 +00:00
|
|
|
#endif
|
2007-05-08 06:45:38 +00:00
|
|
|
#ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
|
|
|
|
int buttonlight_brightness;
|
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_ACCESSORY_PROTOCOL
|
|
|
|
int serial_bitrate; /* 0=auto 1=9600 2=19200 3=38400 4=57600 */
|
2008-05-29 21:27:44 +00:00
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
#ifdef HAVE_ACCESSORY_SUPPLY
|
|
|
|
bool accessory_supply; /* 0=off 1=on, accessory power supply for iPod */
|
2008-11-03 11:11:07 +00:00
|
|
|
#endif
|
2010-03-20 15:02:29 +00:00
|
|
|
#ifdef HAVE_LINEOUT_POWEROFF
|
|
|
|
bool lineout_active;
|
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
|
2009-03-02 18:18:24 +00:00
|
|
|
#ifdef HAVE_SPEAKER
|
2017-01-14 00:40:12 +00:00
|
|
|
int speaker_mode; /* 0: off, 1: on, 2: auto (only if headphone detection) */
|
|
|
|
#endif /* HAVE_SPEAKER */
|
2009-03-27 13:53:29 +00:00
|
|
|
bool prevent_skip;
|
2009-03-02 18:18:24 +00:00
|
|
|
|
2009-03-24 21:55:05 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
int touch_mode;
|
2009-06-16 17:04:47 +00:00
|
|
|
struct touchscreen_parameter ts_calibration_data;
|
2009-03-24 21:55:05 +00:00
|
|
|
#endif
|
|
|
|
|
2012-05-08 14:34:26 +00:00
|
|
|
#ifdef HAVE_PITCHCONTROL
|
2009-07-11 16:46:19 +00:00
|
|
|
/* pitch screen settings */
|
|
|
|
bool pitch_mode_semitone;
|
|
|
|
bool pitch_mode_timestretch;
|
|
|
|
#endif
|
2009-01-03 12:48:06 +00:00
|
|
|
/* If values are just added to the end, no need to bump plugin API
|
|
|
|
version. */
|
|
|
|
/* new stuff to be added at the end */
|
2009-09-30 10:06:04 +00:00
|
|
|
|
|
|
|
#ifdef USB_ENABLE_HID
|
2009-10-23 13:29:19 +00:00
|
|
|
bool usb_hid;
|
2009-09-30 10:06:04 +00:00
|
|
|
int usb_keypad_mode;
|
|
|
|
#endif
|
|
|
|
|
2011-09-09 16:15:35 +00:00
|
|
|
#if defined(USB_ENABLE_STORAGE) && defined(HAVE_MULTIDRIVE)
|
|
|
|
bool usb_skip_first_drive;
|
|
|
|
#endif
|
|
|
|
|
2009-08-16 22:20:11 +00:00
|
|
|
unsigned char ui_vp_config[64]; /* viewport string for the lists */
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
unsigned char remote_ui_vp_config[64]; /* viewport string for the remote lists */
|
|
|
|
#endif
|
2009-08-18 03:24:45 +00:00
|
|
|
|
2012-03-27 23:52:15 +00:00
|
|
|
struct compressor_settings compressor_settings;
|
2009-08-18 03:24:45 +00:00
|
|
|
|
2011-12-26 11:29:18 +00:00
|
|
|
int sleeptimer_duration; /* In minutes; 0=off */
|
2011-10-17 18:57:38 +00:00
|
|
|
bool sleeptimer_on_startup;
|
2011-12-26 09:30:25 +00:00
|
|
|
bool keypress_restarts_sleeptimer;
|
2011-10-17 18:57:38 +00:00
|
|
|
|
2009-11-08 13:14:50 +00:00
|
|
|
#ifdef HAVE_MORSE_INPUT
|
|
|
|
bool morse_input; /* text input method setting */
|
|
|
|
#endif
|
|
|
|
|
2010-04-01 03:14:44 +00:00
|
|
|
#ifdef HAVE_HOTKEY
|
2010-04-08 01:43:50 +00:00
|
|
|
/* hotkey assignments - acceptable values are in
|
2010-05-09 02:02:51 +00:00
|
|
|
hotkey_action enum in onplay.h */
|
2010-04-01 03:14:44 +00:00
|
|
|
int hotkey_wps;
|
|
|
|
int hotkey_tree;
|
|
|
|
#endif
|
|
|
|
|
2010-04-24 14:10:28 +00:00
|
|
|
/* When resuming playback (after a stop), rewind this number of seconds */
|
|
|
|
int resume_rewind;
|
2010-05-15 13:09:45 +00:00
|
|
|
|
|
|
|
#ifdef AUDIOHW_HAVE_DEPTH_3D
|
|
|
|
int depth_3d;
|
|
|
|
#endif
|
|
|
|
|
2013-05-12 19:23:45 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_FILTER_ROLL_OFF
|
|
|
|
int roll_off;
|
|
|
|
#endif
|
|
|
|
|
2018-06-28 10:24:26 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_FUNCTIONAL_MODE
|
|
|
|
int func_mode;
|
|
|
|
#endif
|
|
|
|
|
2010-05-15 13:09:45 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_EQ
|
|
|
|
/** Hardware EQ tone controls **/
|
|
|
|
struct hw_eq_band
|
|
|
|
{
|
|
|
|
/* Maintain the order of members or sound_menu has to be changed */
|
|
|
|
int gain;
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_FREQUENCY
|
|
|
|
int frequency;
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIOHW_HAVE_EQ_WIDTH
|
|
|
|
int width;
|
|
|
|
#endif
|
|
|
|
} hw_eq_bands[AUDIOHW_EQ_BAND_NUM];
|
|
|
|
#endif /* AUDIOHW_HAVE_EQ */
|
2011-11-16 10:25:43 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_HARDWARE_CLICK
|
|
|
|
bool keyclick_hardware; /* hardware piezo keyclick */
|
|
|
|
#endif
|
|
|
|
|
2010-11-15 12:33:47 +00:00
|
|
|
char start_directory[MAX_PATHNAME+1];
|
2012-03-02 19:33:13 +00:00
|
|
|
/* Has the root been customized from the .cfg file? false = no, true = loaded from cfg */
|
|
|
|
bool root_menu_customized;
|
2012-03-27 13:38:30 +00:00
|
|
|
#ifdef HAVE_QUICKSCREEN
|
|
|
|
bool shortcuts_replaces_qs;
|
|
|
|
#endif
|
2013-05-23 17:58:51 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_PLAY_FREQ
|
|
|
|
int play_frequency; /* core audio output frequency selection */
|
|
|
|
#endif
|
2013-12-21 13:33:54 +00:00
|
|
|
int volume_limit; /* maximum volume limit */
|
2014-08-22 13:30:35 +00:00
|
|
|
|
|
|
|
int surround_enabled;
|
|
|
|
int surround_balance;
|
|
|
|
int surround_fx1;
|
|
|
|
int surround_fx2;
|
|
|
|
bool surround_method2;
|
|
|
|
int surround_mix;
|
|
|
|
|
|
|
|
int pbe;
|
|
|
|
int pbe_precut;
|
|
|
|
|
|
|
|
int afr_enabled;
|
2015-01-30 21:47:30 +00:00
|
|
|
|
|
|
|
#if defined(DX50) || defined(DX90)
|
|
|
|
int governor;
|
2020-11-02 13:10:15 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_USB_POWER
|
2015-01-21 19:51:36 +00:00
|
|
|
int usb_mode;
|
2015-01-30 21:47:30 +00:00
|
|
|
#endif
|
2002-06-27 00:20:00 +00:00
|
|
|
};
|
|
|
|
|
2007-01-29 13:18:57 +00:00
|
|
|
/** global variables **/
|
|
|
|
extern long lasttime;
|
2002-06-27 00:20:00 +00:00
|
|
|
/* global settings */
|
|
|
|
extern struct user_settings global_settings;
|
2007-01-24 02:19:22 +00:00
|
|
|
/* global status */
|
|
|
|
extern struct system_status global_status;
|
2006-08-15 09:38:13 +00:00
|
|
|
|
2002-06-27 00:20:00 +00:00
|
|
|
#endif /* __SETTINGS_H__ */
|