dea5173edf
Android AppRTCDemo. - Add an option to set VP8 encoder start bitrate usig x-google-start-bitrate line in remote SDP. - Allow to enabled/disable VP8 hw decoder and encoder acceleration using appRTC settings. BUG=4046 R=jiayl@webrtc.org Review URL: https://webrtc-codereview.appspot.com/32539004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7775 4adac7df-926f-26a2-2b94-8c16560cd09d
48 lines
2.0 KiB
XML
48 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<ListPreference
|
|
android:key="@string/pref_resolution_key"
|
|
android:title="@string/pref_resolution_title"
|
|
android:defaultValue="@string/pref_resolution_default"
|
|
android:dialogTitle="@string/pref_resolution_dlg"
|
|
android:entries="@array/videoResolutions"
|
|
android:entryValues="@array/videoResolutionsValues" />
|
|
|
|
<ListPreference
|
|
android:key="@string/pref_fps_key"
|
|
android:title="@string/pref_fps_title"
|
|
android:defaultValue="@string/pref_fps_default"
|
|
android:dialogTitle="@string/pref_fps_dlg"
|
|
android:entries="@array/cameraFps"
|
|
android:entryValues="@array/cameraFps" />
|
|
|
|
<ListPreference
|
|
android:key="@string/pref_startbitrate_key"
|
|
android:title="@string/pref_startbitrate_title"
|
|
android:defaultValue="@string/pref_startbitrate_default"
|
|
android:dialogTitle="@string/pref_startbitrate_dlg"
|
|
android:entries="@array/startBitrate"
|
|
android:entryValues="@array/startBitrate" />
|
|
|
|
<EditTextPreference
|
|
android:key="@string/pref_startbitratevalue_key"
|
|
android:title="@string/pref_startbitratevalue_title"
|
|
android:inputType="number"
|
|
android:defaultValue="@string/pref_startbitratevalue_default"
|
|
android:dialogTitle="@string/pref_startbitratevalue_dlg" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="@string/pref_hwcodec_key"
|
|
android:title="@string/pref_hwcodec_title"
|
|
android:dialogTitle="@string/pref_hwcodec_dlg"
|
|
android:defaultValue="@string/pref_hwcodec_default" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="@string/pref_cpu_usage_detection_key"
|
|
android:title="@string/pref_cpu_usage_detection_title"
|
|
android:dialogTitle="@string/pref_cpu_usage_detection_dlg"
|
|
android:defaultValue="@string/pref_cpu_usage_detection_default" />
|
|
|
|
|
|
</PreferenceScreen>
|