Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: webrtc/examples/androidapp/res/xml/preferences.xml

Issue 2306433002: Add option to set maximum video encoder bitrate to AppRTCDemo. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 20 matching lines...) Expand all
31 android:entries="@array/cameraFps" 31 android:entries="@array/cameraFps"
32 android:entryValues="@array/cameraFps" /> 32 android:entryValues="@array/cameraFps" />
33 33
34 <CheckBoxPreference 34 <CheckBoxPreference
35 android:key="@string/pref_capturequalityslider_key" 35 android:key="@string/pref_capturequalityslider_key"
36 android:title="@string/pref_capturequalityslider_title" 36 android:title="@string/pref_capturequalityslider_title"
37 android:dialogTitle="@string/pref_capturequalityslider_dlg" 37 android:dialogTitle="@string/pref_capturequalityslider_dlg"
38 android:defaultValue="@string/pref_capturequalityslider_default" /> 38 android:defaultValue="@string/pref_capturequalityslider_default" />
39 39
40 <ListPreference 40 <ListPreference
41 android:key="@string/pref_startvideobitrate_key" 41 android:key="@string/pref_maxvideobitrate_key"
42 android:title="@string/pref_startvideobitrate_title" 42 android:title="@string/pref_maxvideobitrate_title"
43 android:defaultValue="@string/pref_startvideobitrate_default" 43 android:defaultValue="@string/pref_maxvideobitrate_default"
44 android:dialogTitle="@string/pref_startvideobitrate_dlg" 44 android:dialogTitle="@string/pref_maxvideobitrate_dlg"
45 android:entries="@array/startBitrate" 45 android:entries="@array/startBitrate"
46 android:entryValues="@array/startBitrate" /> 46 android:entryValues="@array/startBitrate" />
47 47
48 <EditTextPreference 48 <EditTextPreference
49 android:key="@string/pref_startvideobitratevalue_key" 49 android:key="@string/pref_maxvideobitratevalue_key"
50 android:title="@string/pref_startvideobitratevalue_title" 50 android:title="@string/pref_maxvideobitratevalue_title"
51 android:inputType="number" 51 android:inputType="number"
52 android:defaultValue="@string/pref_startvideobitratevalue_default" 52 android:defaultValue="@string/pref_maxvideobitratevalue_default"
53 android:dialogTitle="@string/pref_startvideobitratevalue_dlg" /> 53 android:dialogTitle="@string/pref_maxvideobitratevalue_dlg" />
54 54
55 <ListPreference 55 <ListPreference
56 android:key="@string/pref_videocodec_key" 56 android:key="@string/pref_videocodec_key"
57 android:title="@string/pref_videocodec_title" 57 android:title="@string/pref_videocodec_title"
58 android:defaultValue="@string/pref_videocodec_default" 58 android:defaultValue="@string/pref_videocodec_default"
59 android:dialogTitle="@string/pref_videocodec_dlg" 59 android:dialogTitle="@string/pref_videocodec_dlg"
60 android:entries="@array/videoCodecs" 60 android:entries="@array/videoCodecs"
61 android:entryValues="@array/videoCodecs" /> 61 android:entryValues="@array/videoCodecs" />
62 62
63 <CheckBoxPreference 63 <CheckBoxPreference
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 android:defaultValue="@string/pref_displayhud_default" /> 168 android:defaultValue="@string/pref_displayhud_default" />
169 169
170 <CheckBoxPreference 170 <CheckBoxPreference
171 android:key="@string/pref_tracing_key" 171 android:key="@string/pref_tracing_key"
172 android:title="@string/pref_tracing_title" 172 android:title="@string/pref_tracing_title"
173 android:dialogTitle="@string/pref_tracing_dlg" 173 android:dialogTitle="@string/pref_tracing_dlg"
174 android:defaultValue="@string/pref_tracing_default" /> 174 android:defaultValue="@string/pref_tracing_default" />
175 </PreferenceCategory> 175 </PreferenceCategory>
176 176
177 </PreferenceScreen> 177 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698