diff options
author | Martin Vignali <martin.vignali@gmail.com> | 2017-12-03 17:04:38 +0100 |
---|---|---|
committer | Martin Vignali <martin.vignali@gmail.com> | 2017-12-03 19:17:28 +0100 |
commit | 6e3e696591483747d99d7fda8da1b7f1f7932cab (patch) | |
tree | 791c06f7f6da8f8d740cbca3ddcb8d23a0a426b6 | |
parent | 9719d57b34f2156dc26d7a46ba809b1f9427011c (diff) | |
download | ffmpeg-6e3e696591483747d99d7fda8da1b7f1f7932cab.tar.gz |
avfilter/x86/vf_threshold : cosmetic indent
-rw-r--r-- | libavfilter/x86/vf_threshold.asm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavfilter/x86/vf_threshold.asm b/libavfilter/x86/vf_threshold.asm index 117cc98fe2..fb008c376a 100644 --- a/libavfilter/x86/vf_threshold.asm +++ b/libavfilter/x86/vf_threshold.asm @@ -32,15 +32,15 @@ SECTION .text %macro THRESHOLD_8 0 cglobal threshold8, 10, 13, 5, in, threshold, min, max, out, ilinesize, tlinesize, flinesize, slinesize, olinesize, w, h, x - mov wd, dword wm - mov hd, dword hm + mov wd, dword wm + mov hd, dword hm VBROADCASTI128 m4, [pb_128] - add inq, wq - add thresholdq, wq - add minq, wq - add maxq, wq - add outq, wq - neg wq + add inq, wq + add thresholdq, wq + add minq, wq + add maxq, wq + add outq, wq + neg wq .nextrow: mov xq, wq |