Add never drop frames option for devices with micro-stuttering issues

This commit is contained in:
Cameron Gutman
2017-11-05 12:29:33 -08:00
parent d125eb7b16
commit 5e5df8abc8
5 changed files with 27 additions and 12 deletions

View File

@@ -142,7 +142,9 @@
<string name="summary_checkbox_host_audio">Play audio from the computer and this device</string>
<string name="category_advanced_settings">Advanced Settings</string>
<string name="title_disable_frame_drop">Never drop frames</string>
<string name="summary_disable_frame_drop">May reduce micro-stuttering on some devices, but can increase latency</string>
<string name="title_video_format">Change H.265 settings</string>
<string name="summary_video_format">H.265 lowers video bandwidth requirements but requires a very recent device.</string>
<string name="summary_video_format">H.265 lowers video bandwidth requirements but requires a very recent device</string>
</resources>

View File

@@ -97,5 +97,10 @@
android:entryValues="@array/video_format_values"
android:summary="@string/summary_video_format"
android:defaultValue="auto" />
<CheckBoxPreference
android:key="checkbox_disable_frame_drop"
android:title="@string/title_disable_frame_drop"
android:summary="@string/summary_disable_frame_drop"
android:defaultValue="false" />
</PreferenceCategory>
</PreferenceScreen>