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

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

Issue 1452423003: Add option to capture to texture in AppRTCDemo for Android. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: factory.setVideoHwAccelerationOptions. Created 5 years 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 android:defaultValue="@string/pref_videocodec_default" 53 android:defaultValue="@string/pref_videocodec_default"
54 android:dialogTitle="@string/pref_videocodec_dlg" 54 android:dialogTitle="@string/pref_videocodec_dlg"
55 android:entries="@array/videoCodecs" 55 android:entries="@array/videoCodecs"
56 android:entryValues="@array/videoCodecs" /> 56 android:entryValues="@array/videoCodecs" />
57 57
58 <CheckBoxPreference 58 <CheckBoxPreference
59 android:key="@string/pref_hwcodec_key" 59 android:key="@string/pref_hwcodec_key"
60 android:title="@string/pref_hwcodec_title" 60 android:title="@string/pref_hwcodec_title"
61 android:dialogTitle="@string/pref_hwcodec_dlg" 61 android:dialogTitle="@string/pref_hwcodec_dlg"
62 android:defaultValue="@string/pref_hwcodec_default" /> 62 android:defaultValue="@string/pref_hwcodec_default" />
63
64 <CheckBoxPreference
65 android:key="@string/pref_capturetotexture_key"
66 android:title="@string/pref_capturetotexture_title"
67 android:dialogTitle="@string/pref_capturetotexture_dlg"
68 android:defaultValue="@string/pref_capturetotexture_default" />
63 </PreferenceCategory> 69 </PreferenceCategory>
64 70
65 <PreferenceCategory 71 <PreferenceCategory
66 android:key="@string/pref_audiosettings_key" 72 android:key="@string/pref_audiosettings_key"
67 android:title="@string/pref_audiosettings_title"> 73 android:title="@string/pref_audiosettings_title">
68 74
69 <ListPreference 75 <ListPreference
70 android:key="@string/pref_startaudiobitrate_key" 76 android:key="@string/pref_startaudiobitrate_key"
71 android:title="@string/pref_startaudiobitrate_title" 77 android:title="@string/pref_startaudiobitrate_title"
72 android:defaultValue="@string/pref_startaudiobitrate_default" 78 android:defaultValue="@string/pref_startaudiobitrate_default"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 android:dialogTitle="@string/pref_room_server_url_dlg" /> 120 android:dialogTitle="@string/pref_room_server_url_dlg" />
115 121
116 <CheckBoxPreference 122 <CheckBoxPreference
117 android:key="@string/pref_displayhud_key" 123 android:key="@string/pref_displayhud_key"
118 android:title="@string/pref_displayhud_title" 124 android:title="@string/pref_displayhud_title"
119 android:dialogTitle="@string/pref_displayhud_dlg" 125 android:dialogTitle="@string/pref_displayhud_dlg"
120 android:defaultValue="@string/pref_displayhud_default" /> 126 android:defaultValue="@string/pref_displayhud_default" />
121 </PreferenceCategory> 127 </PreferenceCategory>
122 128
123 </PreferenceScreen> 129 </PreferenceScreen>
OLDNEW
« no previous file with comments | « webrtc/examples/androidapp/res/values/strings.xml ('k') | webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698