diff options
author | Martin Storsjö <martin@martin.st> | 2017-02-24 17:36:05 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2017-03-19 22:53:43 +0200 |
commit | b46d37e93ab1d38281ce2cc54b70de2c422d06e5 (patch) | |
tree | ebd5acc53d0aa111eba46ff4f8001b8adbc7e554 /libavcodec/arm/vp9itxfm_16bpp_neon.S | |
parent | 21c89f3a26bb1331381b90e653277585447cfbb3 (diff) | |
download | ffmpeg-b46d37e93ab1d38281ce2cc54b70de2c422d06e5.tar.gz |
arm: vp9itxfm16: Use the right lane size
This makes the code slightly clearer, but doesn't make any functional
difference.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/arm/vp9itxfm_16bpp_neon.S')
-rw-r--r-- | libavcodec/arm/vp9itxfm_16bpp_neon.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/arm/vp9itxfm_16bpp_neon.S b/libavcodec/arm/vp9itxfm_16bpp_neon.S index e6e94407e2..a92f3234dd 100644 --- a/libavcodec/arm/vp9itxfm_16bpp_neon.S +++ b/libavcodec/arm/vp9itxfm_16bpp_neon.S @@ -1082,8 +1082,8 @@ A and r7, sp, #15 .ifc \txfm1\()_\txfm2,idct_idct b 3f 1: - vmov.i16 q14, #0 - vmov.i16 q15, #0 + vmov.i32 q14, #0 + vmov.i32 q15, #0 2: subs r1, r1, #1 @ Unroll for 2 lines |