summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorStefan de Konink <stefan@konink.de>2021-08-15 10:31:13 +0200
committeravih <avih@users.noreply.github.com>2021-08-15 12:27:40 +0300
commit0c9e1e34fddb35e9b4205cee4ce6810e4a7388ee (patch)
tree228a1f56ce1b6617d640711b6f84f329c5492c3d /player
parentd8e5f6ff3aae31fc03c43b98bbf0e272c741eb1d (diff)
downloadmpv-0c9e1e34fddb35e9b4205cee4ce6810e4a7388ee.tar.bz2
mpv-0c9e1e34fddb35e9b4205cee4ce6810e4a7388ee.tar.xz
stats.lua: typo lavfi-complex
Fix typo lavi-complex to lavfi-complex.
Diffstat (limited to 'player')
-rw-r--r--player/lua/stats.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/player/lua/stats.lua b/player/lua/stats.lua
index f662be145c..8e42351690 100644
--- a/player/lua/stats.lua
+++ b/player/lua/stats.lua
@@ -660,7 +660,7 @@ end
local function add_video(s)
local r = mp.get_property_native("video-params")
- -- in case of e.g. lavi-complex there can be no input video, only output
+ -- in case of e.g. lavfi-complex there can be no input video, only output
if not r then
r = mp.get_property_native("video-out-params")
end
@@ -736,7 +736,7 @@ end
local function add_audio(s)
local r = mp.get_property_native("audio-params")
- -- in case of e.g. lavi-complex there can be no input audio, only output
+ -- in case of e.g. lavfi-complex there can be no input audio, only output
if not r then
r = mp.get_property_native("audio-out-params")
end