summaryrefslogtreecommitdiffstats
path: root/TOOLS/lua/autocrop.lua
diff options
context:
space:
mode:
authorKevin Mitchell <kevmitch@gmail.com>2014-04-26 18:07:46 -0700
committerwm4 <wm4@nowhere>2014-04-27 15:34:53 +0200
commit4e973c059a859103fc3fef08b023f9b581246815 (patch)
treea312e1c61f15ce5a6ba18d24f9c94e8af5ffd9a6 /TOOLS/lua/autocrop.lua
parent7ef045555dd1c6f1fc368d9d18d014a579885d6e (diff)
downloadmpv-4e973c059a859103fc3fef08b023f9b581246815.tar.bz2
mpv-4e973c059a859103fc3fef08b023f9b581246815.tar.xz
TOOLS: indent lua scripts by 4 spaces instead of 3
Diffstat (limited to 'TOOLS/lua/autocrop.lua')
-rw-r--r--TOOLS/lua/autocrop.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/TOOLS/lua/autocrop.lua b/TOOLS/lua/autocrop.lua
index e5292eee18..bf608dc050 100644
--- a/TOOLS/lua/autocrop.lua
+++ b/TOOLS/lua/autocrop.lua
@@ -1,11 +1,11 @@
mp.command('vf add @autocrop.cropdetect:lavfi=graph="cropdetect=limit=24:round=2:reset=0"')
function update_crop_handler()
- cropdetect_metadata=mp.get_property_native("vf-metadata/autocrop.cropdetect")
- mp.command(string.format('vf add @autocrop.crop:crop=%s:%s:%s:%s',
- cropdetect_metadata['lavfi.cropdetect.w'],
- cropdetect_metadata['lavfi.cropdetect.h'],
- cropdetect_metadata['lavfi.cropdetect.x'],
- cropdetect_metadata['lavfi.cropdetect.y']))
+ cropdetect_metadata=mp.get_property_native("vf-metadata/autocrop.cropdetect")
+ mp.command(string.format('vf add @autocrop.crop:crop=%s:%s:%s:%s',
+ cropdetect_metadata['lavfi.cropdetect.w'],
+ cropdetect_metadata['lavfi.cropdetect.h'],
+ cropdetect_metadata['lavfi.cropdetect.x'],
+ cropdetect_metadata['lavfi.cropdetect.y']))
end
mp.add_key_binding("C","update_crop",update_crop_handler)