diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2014-12-24 14:22:19 -0500 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2014-12-27 16:55:12 -0500 |
commit | e42409479f09761a5d613b3fdba72062d909f0ee (patch) | |
tree | ac2bd0786d214936aff18f61d29426bcec78c5df /libavcodec | |
parent | 418c202c6363c617adbb353a63db983a744e0b34 (diff) | |
download | ffmpeg-e42409479f09761a5d613b3fdba72062d909f0ee.tar.gz |
vp8/x86: move variable assigned inside macro branch.
The value is not used outside the branch.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/vp9lpf.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/vp9lpf.asm b/libavcodec/x86/vp9lpf.asm index 613a104cc6..73b965ada5 100644 --- a/libavcodec/x86/vp9lpf.asm +++ b/libavcodec/x86/vp9lpf.asm @@ -462,8 +462,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 |