summaryrefslogtreecommitdiffstats
path: root/CrespoParts/res
diff options
context:
space:
mode:
authorKalimochoAz <calimochoazucarado@gmail.com>2012-01-12 21:21:06 +0100
committerKalimochoAz <calimochoazucarado@gmail.com>2012-01-12 21:21:06 +0100
commit1702e13347bef848b9b3a70b50c9e6019148f250 (patch)
tree78f8f6d05b71c6aabdc3509e0bedd958ae0a95f5 /CrespoParts/res
parent472352ed57a466d1616ceb595863413731505873 (diff)
downloaddevice_samsung_crespo-1702e13347bef848b9b3a70b50c9e6019148f250.zip
device_samsung_crespo-1702e13347bef848b9b3a70b50c9e6019148f250.tar.gz
device_samsung_crespo-1702e13347bef848b9b3a70b50c9e6019148f250.tar.bz2
Remove Sound settings from crespoparts
Since we are moving them to DSPManager Change-Id: Ib40d45be59a7b5f17f49f50dc29ffdefe3abde69
Diffstat (limited to 'CrespoParts/res')
-rw-r--r--CrespoParts/res/values/strings.xml31
-rwxr-xr-xCrespoParts/res/xml/sound_preferences.xml68
2 files changed, 0 insertions, 99 deletions
diff --git a/CrespoParts/res/values/strings.xml b/CrespoParts/res/values/strings.xml
index a1d2386..74793bc 100644
--- a/CrespoParts/res/values/strings.xml
+++ b/CrespoParts/res/values/strings.xml
@@ -19,37 +19,6 @@
<string name="color_green_title">Green</string>
<string name="color_blue_title">Blue</string>
- <!-- WM8994 Control Settings -->
- <string name="general_sound_title">Sound</string>
- <!-- Categories -->
- <string name="category_wm8994_internal_speaker">Internal Speaker Configuration</string>
- <string name="category_wm8994_signal_processing">Signal Processing</string>
- <string name="category_wm8994_headphone_amp">Headphone Amplifier</string>
- <string name="category_wm8994_codec_optimization">Codec Optimization</string>
- <string name="category_wm8994_dac_config">Digital/Analog Converter Settings</string>
- <string name="category_wm8994_analog_path">Analog Path Configuration</string>
- <string name="category_wm8994_mic_settings">Microphone Settings</string>
- <!-- Titles/Summaries -->
- <string name="wm8994_settings_title_head">Sound Settings</string>
- <string name="wm8994_settings_title_subhead">Sound Settings</string>
- <string name="wm8994_settings_summary_head">Advanced control of the WM8994 sound processor hardware</string>
- <string name="pref_wm8994_control_enable_title">Enable WM8994 Control</string>
- <string name="pref_wm8994_control_enable_summary">Enable advanced controls for the WM8994 sound processor hardware</string>
- <string name="pref_wm8994_speaker_tuning_title">Tune speaker for music</string>
- <string name="pref_wm8994_speaker_tuning_summary">Reconfigures the hardware EQ to get more bass and balanced sound</string>
- <string name="pref_wm8994_mono_downmix_title">Mono downmix</string>
- <string name="pref_wm8994_mono_downmix_summary">Downmix stereo sound to mono (for stereo outputs, such as headphones)</string>
- <string name="pref_wm8994_stereo_expansion_title">Stereo expansion</string>
- <string name="pref_wm8994_stereo_expansion_summary">"Expand" stereo sound via digital signal processing</string>
- <string name="pref_wm8994_dac_direct_title">D/AC direct</string>
- <string name="pref_wm8994_dac_direct_summary">Access digital/analog converter directly, bypassing the channel mixer. Produces cleaner audio (lower signal-to-noise ratio)</string>
- <string name="pref_wm8994_dac_osr128_title">Hi-fi playback</string>
- <string name="pref_wm8994_dac_osr128_summary">Digital-to-analog converter 128x oversampling -- cleaner sound when playing music</string>
- <string name="pref_wm8994_adc_osr128_title">Hi-fi recording</string>
- <string name="pref_wm8994_adc_osr128_summary">Analog-to-digital converter 128x oversampling -- increases quality of recordings</string>
- <string name="pref_wm8994_fll_tuning_title">Tuned audio clock</string>
- <string name="pref_wm8994_fll_tuning_summary">Use tuned WM8994 audio clock source -- improves quality of sound</string>
-
<string name="category_touchkey_title">Touch Keys</string>
<string name="touchkey_notification_title_head">Backlight Notifications</string>
<string name="touchkey_notification_summary_head">The touch key backlights will turn on when there is a notification.</string>
diff --git a/CrespoParts/res/xml/sound_preferences.xml b/CrespoParts/res/xml/sound_preferences.xml
deleted file mode 100755
index f1007c6..0000000
--- a/CrespoParts/res/xml/sound_preferences.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
- android:title="@string/app_name">
-
- <CheckBoxPreference android:key="pref_wm8994_control_enable"
- android:title="@string/pref_wm8994_control_enable_title"
- android:summary="@string/pref_wm8994_control_enable_summary" />
-
- <!-- Internal speaker options -->
- <PreferenceCategory android:key="wm8994_internal_speaker_category"
- android:title="@string/category_wm8994_internal_speaker">
-
- <CheckBoxPreference android:key="pref_wm8994_speaker_tuning"
- android:title="@string/pref_wm8994_speaker_tuning_title"
- android:summary="@string/pref_wm8994_speaker_tuning_summary"
- android:dependency="pref_wm8994_control_enable" />
-
- </PreferenceCategory>
-
- <!-- Signal Processing -->
- <PreferenceCategory android:key="wm8994_signal_processing_category"
- android:title="@string/category_wm8994_signal_processing">
-
- <CheckBoxPreference android:key="pref_wm8994_mono_downmix"
- android:title="@string/pref_wm8994_mono_downmix_title"
- android:summary="@string/pref_wm8994_mono_downmix_summary"
- android:dependency="pref_wm8994_control_enable" />
-
- <CheckBoxPreference android:key="pref_wm8994_stereo_expansion"
- android:title="@string/pref_wm8994_stereo_expansion_title"
- android:summary="@string/pref_wm8994_stereo_expansion_summary"
- android:dependency="pref_wm8994_control_enable" />
-
- </PreferenceCategory>
-
- <!-- D/AC, A/DC -->
- <PreferenceCategory android:key="wm8994_dac_config_category"
- android:title="@string/category_wm8994_dac_config">
-
- <CheckBoxPreference android:key="pref_wm8994_dac_direct"
- android:title="@string/pref_wm8994_dac_direct_title"
- android:summary="@string/pref_wm8994_dac_direct_summary"
- android:dependency="pref_wm8994_control_enable" />
-
- <CheckBoxPreference android:key="pref_wm8994_dac_osr128"
- android:title="@string/pref_wm8994_dac_osr128_title"
- android:summary="@string/pref_wm8994_dac_osr128_summary"
- android:dependency="pref_wm8994_control_enable" />
-
- <CheckBoxPreference android:key="pref_wm8994_adc_osr128"
- android:title="@string/pref_wm8994_adc_osr128_title"
- android:summary="@string/pref_wm8994_adc_osr128_summary"
- android:dependency="pref_wm8994_control_enable" />
-
- </PreferenceCategory>
-
- <!-- Codec settings -->
- <PreferenceCategory android:key="wm8994_codec_optimization_category"
- android:title="@string/category_wm8994_codec_optimization">
-
- <CheckBoxPreference android:key="pref_wm8994_fll_tuning"
- android:title="@string/pref_wm8994_fll_tuning_title"
- android:summary="@string/pref_wm8994_fll_tuning_summary"
- android:dependency="pref_wm8994_control_enable" />
-
- </PreferenceCategory>
-
-</PreferenceScreen>