Skip to content

Commit 2c5f3aa

Browse files
committed
Update code docs
1 parent a935fbc commit 2c5f3aa

1 file changed

Lines changed: 11 additions & 10 deletions

File tree

docs/source_utils_deviceCapabilities.bs.html

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -651,33 +651,34 @@
651651
' HDR SUPPORT
652652
h264VideoRangeTypes = "SDR|DOVIWithSDR"
653653
hevcVideoRangeTypes = "SDR|DOVIWithSDR"
654-
vp9VideoRangeTypes = "SDR"
654+
vp9VideoRangeTypes = "SDR|DOVIWithSDR"
655655
av1VideoRangeTypes = "SDR|DOVIWithSDR"
656656

657657
if canPlay4k()
658658
print "This device supports 4k video"
659659
dp = di.GetDisplayProperties()
660660

661661
if dp.DolbyVision
662-
h264VideoRangeTypes = h264VideoRangeTypes + "|DOVI"
663-
hevcVideoRangeTypes = hevcVideoRangeTypes + "|DOVI"
664-
av1VideoRangeTypes = av1VideoRangeTypes + "|DOVI"
662+
h264VideoRangeTypes = h264VideoRangeTypes + "|DOVI|DOVIWithEL|DOVIWithELHDR10Plus"
663+
hevcVideoRangeTypes = hevcVideoRangeTypes + "|DOVI|DOVIWithEL|DOVIWithELHDR10Plus"
664+
av1VideoRangeTypes = av1VideoRangeTypes + "|DOVI|DOVIWithEL|DOVIWithELHDR10Plus"
665665
end if
666666

667667
if dp.Hdr10
668-
hevcVideoRangeTypes = hevcVideoRangeTypes + "|HDR10|DOVIWithHDR10"
669-
vp9VideoRangeTypes = vp9VideoRangeTypes + "|HDR10"
670-
av1VideoRangeTypes = av1VideoRangeTypes + "|HDR10|DOVIWithHDR10"
668+
hevcVideoRangeTypes = hevcVideoRangeTypes + "|HDR10|DOVIWithHDR10|DOVIWithEL"
669+
vp9VideoRangeTypes = vp9VideoRangeTypes + "|HDR10|DOVIWithHDR10|DOVIWithEL"
670+
av1VideoRangeTypes = av1VideoRangeTypes + "|HDR10|DOVIWithHDR10|DOVIWithEL"
671671
end if
672672

673673
if dp.Hdr10Plus
674-
av1VideoRangeTypes = av1VideoRangeTypes + "|HDR10Plus|DOVIWithHDR10Plus"
675-
hevcVideoRangeTypes = hevcVideoRangeTypes + "|HDR10Plus|DOVIWithHDR10Plus"
674+
hevcVideoRangeTypes = hevcVideoRangeTypes + "|HDR10Plus|DOVIWithHDR10Plus|DOVIWithELHDR10Plus"
675+
vp9VideoRangeTypes = vp9VideoRangeTypes + "|HDR10Plus|DOVIWithHDR10Plus|DOVIWithELHDR10Plus"
676+
av1VideoRangeTypes = av1VideoRangeTypes + "|HDR10Plus|DOVIWithHDR10Plus|DOVIWithELHDR10Plus"
676677
end if
677678

678679
if dp.HLG
679680
hevcVideoRangeTypes = hevcVideoRangeTypes + "|HLG|DOVIWithHLG"
680-
vp9VideoRangeTypes = vp9VideoRangeTypes + "|HLG"
681+
vp9VideoRangeTypes = vp9VideoRangeTypes + "|HLG|DOVIWithHLG"
681682
av1VideoRangeTypes = av1VideoRangeTypes + "|HLG|DOVIWithHLG"
682683
end if
683684
end if

0 commit comments

Comments
 (0)