Skip to content

Commit d3ec15b

Browse files
committed
stats.lua: remove prefix from display luminance metadata
People are getting confused about "HDR10" part.
1 parent 1abd2a0 commit d3ec15b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

player/lua/stats.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ local function append_hdr(s, hdr, video_out)
823823
local has_fall = hdr["max-fall"] and hdr["max-fall"] > 0
824824

825825
if has_dml or has_cll or has_fall then
826-
append(s, "", {prefix="HDR10:"})
826+
append(s, "", {prefix=video_out and "" or "HDR10:", prefix_sep=video_out and "" or nil})
827827
if has_dml then
828828
-- libplacebo uses close to zero values as "defined zero"
829829
hdr["min-luma"] = hdr["min-luma"] <= 1e-6 and 0 or hdr["min-luma"]

0 commit comments

Comments
 (0)