OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> | 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> |
3 <PreferenceCategory | 3 <PreferenceCategory |
4 android:key="@string/pref_videosettings_key" | 4 android:key="@string/pref_videosettings_key" |
5 android:title="@string/pref_videosettings_title"> | 5 android:title="@string/pref_videosettings_title"> |
6 | 6 |
7 <CheckBoxPreference | 7 <CheckBoxPreference |
8 android:key="@string/pref_videocall_key" | 8 android:key="@string/pref_videocall_key" |
9 android:title="@string/pref_videocall_title" | 9 android:title="@string/pref_videocall_title" |
10 android:dialogTitle="@string/pref_videocall_dlg" | 10 android:dialogTitle="@string/pref_videocall_dlg" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 android:key="@string/pref_hwcodec_key" | 69 android:key="@string/pref_hwcodec_key" |
70 android:title="@string/pref_hwcodec_title" | 70 android:title="@string/pref_hwcodec_title" |
71 android:dialogTitle="@string/pref_hwcodec_dlg" | 71 android:dialogTitle="@string/pref_hwcodec_dlg" |
72 android:defaultValue="@string/pref_hwcodec_default" /> | 72 android:defaultValue="@string/pref_hwcodec_default" /> |
73 | 73 |
74 <CheckBoxPreference | 74 <CheckBoxPreference |
75 android:key="@string/pref_capturetotexture_key" | 75 android:key="@string/pref_capturetotexture_key" |
76 android:title="@string/pref_capturetotexture_title" | 76 android:title="@string/pref_capturetotexture_title" |
77 android:dialogTitle="@string/pref_capturetotexture_dlg" | 77 android:dialogTitle="@string/pref_capturetotexture_dlg" |
78 android:defaultValue="@string/pref_capturetotexture_default" /> | 78 android:defaultValue="@string/pref_capturetotexture_default" /> |
| 79 |
| 80 <CheckBoxPreference |
| 81 android:key="@string/pref_flexfec_key" |
| 82 android:title="@string/pref_flexfec_title" |
| 83 android:dialogTitle="@string/pref_flexfec_dlg" |
| 84 android:defaultValue="@string/pref_flexfec_default" /> |
79 </PreferenceCategory> | 85 </PreferenceCategory> |
80 | 86 |
81 <PreferenceCategory | 87 <PreferenceCategory |
82 android:key="@string/pref_audiosettings_key" | 88 android:key="@string/pref_audiosettings_key" |
83 android:title="@string/pref_audiosettings_title"> | 89 android:title="@string/pref_audiosettings_title"> |
84 | 90 |
85 <ListPreference | 91 <ListPreference |
86 android:key="@string/pref_startaudiobitrate_key" | 92 android:key="@string/pref_startaudiobitrate_key" |
87 android:title="@string/pref_startaudiobitrate_title" | 93 android:title="@string/pref_startaudiobitrate_title" |
88 android:defaultValue="@string/pref_startaudiobitrate_default" | 94 android:defaultValue="@string/pref_startaudiobitrate_default" |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 android:defaultValue="@string/pref_displayhud_default" /> | 227 android:defaultValue="@string/pref_displayhud_default" /> |
222 | 228 |
223 <CheckBoxPreference | 229 <CheckBoxPreference |
224 android:key="@string/pref_tracing_key" | 230 android:key="@string/pref_tracing_key" |
225 android:title="@string/pref_tracing_title" | 231 android:title="@string/pref_tracing_title" |
226 android:dialogTitle="@string/pref_tracing_dlg" | 232 android:dialogTitle="@string/pref_tracing_dlg" |
227 android:defaultValue="@string/pref_tracing_default" /> | 233 android:defaultValue="@string/pref_tracing_default" /> |
228 </PreferenceCategory> | 234 </PreferenceCategory> |
229 | 235 |
230 </PreferenceScreen> | 236 </PreferenceScreen> |
OLD | NEW |