[FFmpeg-cvslog] aarch64: vp9: loop_filter: fix typo in skip flatout8 check

Janne Grunau git at videolan.org
Fri Mar 31 23:04:34 EEST 2017


ffmpeg | branch: master | Janne Grunau <janne-libav at jannau.net> | Mon Nov 14 01:16:00 2016 +0100| [31756abe29eb039a11c59a42cb12e0cc2aef3b97] | committer: Martin Storsjö

aarch64: vp9: loop_filter: fix typo in skip flatout8 check

The 16_16 loop filter functions could miss an early exit before
flatout8.

Signed-off-by: Martin Storsjö <martin at martin.st>

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

 libavcodec/aarch64/vp9lpf_neon.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/aarch64/vp9lpf_neon.S b/libavcodec/aarch64/vp9lpf_neon.S
index 995a97d..c1b0c88 100644
--- a/libavcodec/aarch64/vp9lpf_neon.S
+++ b/libavcodec/aarch64/vp9lpf_neon.S
@@ -413,7 +413,7 @@
         cbz             x5,  7f
         mov             x5,  v7.d[0]
 .ifc \sz, .16b
-        mov             x6,  v2.d[1]
+        mov             x6,  v7.d[1]
         orr             x5,  x5,  x6
 .endif
         // If no pixels need flat8out, jump to a writeout of the inner 6 pixels



More information about the ffmpeg-cvslog mailing list