diff options
author | Chiwen Chang <rock1104.tw@yahoo.com.tw> | 2014-08-22 23:30:35 +1000 |
---|---|---|
committer | Gerrit Rockbox <gerrit@rockbox.org> | 2015-01-19 19:34:01 +0100 |
commit | 3ae0f32ac3d6693a9528703c5f1b3586a9d79601 (patch) | |
tree | f34f7a90ac4cdaa1e1bf31574e8e4967916616a4 /apps/settings.h | |
parent | 2cdfc43f10e3d755018ea508b64b209608d71864 (diff) |
three new DSPs
perceptual bass enhancement
- a bbe-ish group delay corrction with Biophonic EQ boost.
- precut
auditory fatigue reduction
-reduce signal in frequency that may trigger temporary threshold shift
haas surround
-frequency between f(x1) and f(x2) is always bypassed.
-can apply to side only.
Change-Id: Icb6355ce9b1c99bf2c58c9385c3c411c0ae209d3
Diffstat (limited to 'apps/settings.h')
-rw-r--r-- | apps/settings.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h index 3ec5ee6207..3029026ab6 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -838,6 +838,18 @@ struct user_settings int play_frequency; /* core audio output frequency selection */ #endif int volume_limit; /* maximum volume limit */ + + 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; }; /** global variables **/ |