summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRicardo Constantino (:RiCON) <wiiaboo@gmail.com>2016-09-02 17:28:04 +0100
committerwm4 <wm4@nowhere>2017-10-09 20:40:31 +0200
commit49d64997ef2a7323fc61b0c48aa366bfa48e1e02 (patch)
tree975cf8c46758ff76d7ca6d4500ef96ec922eaa56
parent97c1cd66580ef191b8968ee2b35c47bd8d2a3fff (diff)
downloadmpv-49d64997ef2a7323fc61b0c48aa366bfa48e1e02.tar.bz2
mpv-49d64997ef2a7323fc61b0c48aa366bfa48e1e02.tar.xz
stats: remove hwdec-active property
-rw-r--r--player/lua/stats.lua9
1 files changed, 2 insertions, 7 deletions
diff --git a/player/lua/stats.lua b/player/lua/stats.lua
index a9dc8dbba0..60ba62d3ce 100644
--- a/player/lua/stats.lua
+++ b/player/lua/stats.lua
@@ -318,15 +318,10 @@ local function add_video(s)
end
if append_property(s, "video-codec", {prefix=o.nl .. o.nl .. "Video:", nl="", indent=""}) then
- if not append_property(s, "hwdec-current",
+ append_property(s, "hwdec-current",
{prefix="(hwdec:", nl="", indent=" ",
no_prefix_markup=true, suffix=")"},
- {no=true, [""]=true}) then
- append_property(s, "hwdec-active",
- {prefix="(hwdec)", nl="", indent=" ",
- no_prefix_markup=true, no_value=true},
- {no=true})
- end
+ {no=true, [""]=true})
end
append_property(s, "avsync", {prefix="A-V:"})
if append_property(s, "drop-frame-count", {prefix="Dropped:"}) then