6f6ef72950
This DCHECK ensures that one packet was inserted after the buffer was flushed. R=kwiberg@webrtc.org Review URL: https://webrtc-codereview.appspot.com/30169004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7719 4adac7df-926f-26a2-2b94-8c16560cd09d
24 lines
1.1 KiB
XML
24 lines
1.1 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" />
|
|
<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>
|