[FFmpeg-cvslog] vp9lpf/x86: move variable assigned inside macro branch.

Ronald S. Bultje git at videolan.org
Thu Mar 23 12:44:17 EET 2017


ffmpeg | branch: master | Ronald S. Bultje <rsbultje at gmail.com> | Wed Dec 24 14:22:19 2014 -0500| [4ce8ba72f9cbdecf3a2ee3533959e097a2095595] | committer: Anton Khirnov

vp9lpf/x86: move variable assigned inside macro branch.

The value is not used outside the branch.

Signed-off-by: Anton Khirnov <anton at khirnov.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4ce8ba72f9cbdecf3a2ee3533959e097a2095595
---

 libavcodec/x86/vp9lpf.asm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/x86/vp9lpf.asm b/libavcodec/x86/vp9lpf.asm
index 5d82995..0b72fac 100644
--- a/libavcodec/x86/vp9lpf.asm
+++ b/libavcodec/x86/vp9lpf.asm
@@ -463,8 +463,8 @@ cglobal vp9_loop_filter_%1_%2_16, 2, 6, 16, %3, dst, stride, mstride, dst2, stri
 
     ; (m3: fm, m8..15: p3 p2 p1 p0 q0 q1 q2 q3)
     ; calc flat8in (if not 44_16) and hev masks
-    mova                m6, [pb_81]                     ; [1 1 1 1 ...] ^ 0x80
 %if %2 != 44
+    mova                m6, [pb_81]                     ; [1 1 1 1 ...] ^ 0x80
     ABSSUB_GT           m2, m8, m11, m6, m5             ; abs(p3 - p0) <= 1
     mova                m8, [pb_80]
     ABSSUB_GT           m1, m9, m11, m6, m5, m8         ; abs(p2 - p0) <= 1



More information about the ffmpeg-cvslog mailing list