diff options
| author | Christos Papageorgiou <root.expert.xda@gmail.com> | 2020-01-27 18:50:09 +0200 |
|---|---|---|
| committer | Ralf Luther <luther.ralf@gmail.com> | 2020-02-25 09:42:19 +0100 |
| commit | e3a0f1fd6afa7a3d12b51e7d03d4f8ee877203fa (patch) | |
| tree | 444303e6598f1b810d6ae94582f9fab3a2036e62 | |
| parent | 9ed4fdd5a476b030aa6c37c15e8e2fb37c7883f7 (diff) | |
JamesDSPManager: Move convolver file loading in normal settings.
Change-Id: I6dbd4513d6d72cd0415e1fb0a06e8f72c81a91a4
| -rw-r--r-- | app/src/main/res/xml/advanced_preferences.xml | 5 | ||||
| -rw-r--r-- | app/src/main/res/xml/bluetooth_preferences.xml | 5 | ||||
| -rw-r--r-- | app/src/main/res/xml/headset_preferences.xml | 5 | ||||
| -rw-r--r-- | app/src/main/res/xml/speaker_preferences.xml | 5 |
4 files changed, 15 insertions, 5 deletions
diff --git a/app/src/main/res/xml/advanced_preferences.xml b/app/src/main/res/xml/advanced_preferences.xml index e87aef4..4e2fcec 100644 --- a/app/src/main/res/xml/advanced_preferences.xml +++ b/app/src/main/res/xml/advanced_preferences.xml @@ -88,11 +88,6 @@ android:key="dsp.convolver.resampler" android:defaultValue="" android:dialogTitle="@string/dialog_offlineimpulseresponseresampler_title" /> - <james.dsp.preference.SummariedListPreferenceWithCustom - android:title="@string/dialog_impulseresponse" - android:key="dsp.convolver.files" - android:defaultValue="" - android:dialogTitle="@string/dialog_impulseresponse" /> <james.dsp.preference.SummariedTextPreferenceRanged android:key="dsp.convolver.gain" android:defaultValue="0.0" diff --git a/app/src/main/res/xml/bluetooth_preferences.xml b/app/src/main/res/xml/bluetooth_preferences.xml index 7fcea6c..925a19f 100644 --- a/app/src/main/res/xml/bluetooth_preferences.xml +++ b/app/src/main/res/xml/bluetooth_preferences.xml @@ -76,6 +76,11 @@ android:summaryOn="@string/pref_convolver_summary_on" android:summaryOff="@string/pref_convolver_summary_off" android:title="@string/pref_convolver_enable" /> + <james.dsp.preference.SummariedListPreferenceWithCustom + android:title="@string/dialog_impulseresponse" + android:key="dsp.convolver.files" + android:defaultValue="" + android:dialogTitle="@string/dialog_impulseresponse" /> </PreferenceCategory> <PreferenceCategory android:title="@string/pref_ddc_title" android:key="dsp.ddc"> diff --git a/app/src/main/res/xml/headset_preferences.xml b/app/src/main/res/xml/headset_preferences.xml index 7fcea6c..925a19f 100644 --- a/app/src/main/res/xml/headset_preferences.xml +++ b/app/src/main/res/xml/headset_preferences.xml @@ -76,6 +76,11 @@ android:summaryOn="@string/pref_convolver_summary_on" android:summaryOff="@string/pref_convolver_summary_off" android:title="@string/pref_convolver_enable" /> + <james.dsp.preference.SummariedListPreferenceWithCustom + android:title="@string/dialog_impulseresponse" + android:key="dsp.convolver.files" + android:defaultValue="" + android:dialogTitle="@string/dialog_impulseresponse" /> </PreferenceCategory> <PreferenceCategory android:title="@string/pref_ddc_title" android:key="dsp.ddc"> diff --git a/app/src/main/res/xml/speaker_preferences.xml b/app/src/main/res/xml/speaker_preferences.xml index 7fcea6c..925a19f 100644 --- a/app/src/main/res/xml/speaker_preferences.xml +++ b/app/src/main/res/xml/speaker_preferences.xml @@ -76,6 +76,11 @@ android:summaryOn="@string/pref_convolver_summary_on" android:summaryOff="@string/pref_convolver_summary_off" android:title="@string/pref_convolver_enable" /> + <james.dsp.preference.SummariedListPreferenceWithCustom + android:title="@string/dialog_impulseresponse" + android:key="dsp.convolver.files" + android:defaultValue="" + android:dialogTitle="@string/dialog_impulseresponse" /> </PreferenceCategory> <PreferenceCategory android:title="@string/pref_ddc_title" android:key="dsp.ddc"> |
