Comment out HDR option since it's non-working and tweak the remaining option text

This commit is contained in:
Cameron Gutman 2018-07-28 03:06:11 -07:00
parent a81b501d7d
commit 3ad5f1478c

View file

@ -243,15 +243,15 @@ ScrollView {
model: ListModel { model: ListModel {
id: audioListModel id: audioListModel
ListElement { ListElement {
text: "Auto" text: "Autodetect"
val: StreamingPreferences.AC_AUTO val: StreamingPreferences.AC_AUTO
} }
ListElement { ListElement {
text: "Force stereo" text: "Stereo"
val: StreamingPreferences.AC_FORCE_STEREO val: StreamingPreferences.AC_FORCE_STEREO
} }
ListElement { ListElement {
text: "Force 5.1 surround sound" text: "5.1 surround sound"
val: StreamingPreferences.AC_FORCE_SURROUND val: StreamingPreferences.AC_FORCE_SURROUND
} }
} }
@ -367,7 +367,7 @@ ScrollView {
model: ListModel { model: ListModel {
id: decoderListModel id: decoderListModel
ListElement { ListElement {
text: "Auto" text: "Automatic (Recommended)"
val: StreamingPreferences.VDS_AUTO val: StreamingPreferences.VDS_AUTO
} }
ListElement { ListElement {
@ -414,21 +414,24 @@ ScrollView {
model: ListModel { model: ListModel {
id: codecListModel id: codecListModel
ListElement { ListElement {
text: "Auto" text: "Automatic (Recommended)"
val: StreamingPreferences.VCC_AUTO val: StreamingPreferences.VCC_AUTO
} }
ListElement { ListElement {
text: "Force H264" text: "Force H.264"
val: StreamingPreferences.VCC_FORCE_H264 val: StreamingPreferences.VCC_FORCE_H264
} }
ListElement { ListElement {
text: "Force HEVC" text: "Force HEVC"
val: StreamingPreferences.VCC_FORCE_HEVC val: StreamingPreferences.VCC_FORCE_HEVC
} }
ListElement { // HDR seems to be broken in GFE 3.14.1, and even when that's fixed
// we'll probably need to gate this feature on OS support in our
// renderers.
/* ListElement {
text: "Force HEVC HDR" text: "Force HEVC HDR"
val: StreamingPreferences.VCC_FORCE_HEVC_HDR val: StreamingPreferences.VCC_FORCE_HEVC_HDR
} } */
} }
// ::onActivated must be used, as it only listens for when the index is changed by a human // ::onActivated must be used, as it only listens for when the index is changed by a human
onActivated : { onActivated : {