summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiklas Haas <git@nand.wakku.to>2016-02-11 00:11:39 +0100
committerwm4 <wm4@nowhere>2017-10-09 20:40:31 +0200
commitbee7404efc269511892f55c5c705645bc3943fa0 (patch)
tree7f8c6e365242a1df51917f4c9361d6747b699482
parent1f41c729bbf2b118b91eecea514eca5cbd333ed1 (diff)
downloadmpv-bee7404efc269511892f55c5c705645bc3943fa0.tar.bz2
mpv-bee7404efc269511892f55c5c705645bc3943fa0.tar.xz
stats: add video-params/gamma property
-rw-r--r--player/lua/stats.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/player/lua/stats.lua b/player/lua/stats.lua
index ea0c88e3f9..19096e40b2 100644
--- a/player/lua/stats.lua
+++ b/player/lua/stats.lua
@@ -142,6 +142,7 @@ function add_video(s)
append_property(s, sec, "video-params/pixelformat", {prefix="Pixel format:"})
append_property(s, sec, "video-params/colormatrix", {prefix="Colormatrix:"})
append_property(s, sec, "video-params/primaries", {prefix="Primaries:"})
+ append_property(s, sec, "video-params/gamma", {prefix="Gamma:"})
append_property(s, sec, "video-params/colorlevels", {prefix="Levels:"})
append_property(s, sec, "packet-video-bitrate", {prefix="Bitrate:", suffix=" kbps"})
end