changeset 8506:1a629032b24a libavcodec

ARM: rename coefficient table in NEON IDCT
author mru
date Tue, 30 Dec 2008 03:13:40 +0000
parents c8743c33eeef
children 779a9c93bf61
files arm/simple_idct_neon.S
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/arm/simple_idct_neon.S	Mon Dec 29 17:14:30 2008 +0000
+++ b/arm/simple_idct_neon.S	Tue Dec 30 03:13:40 2008 +0000
@@ -230,7 +230,8 @@
 
         .section .rodata
         .align 4
-const:  .short W1, W2, W3, W4, W5, W6, W7, W4c
+idct_coeff_neon:
+        .short W1, W2, W3, W4, W5, W6, W7, W4c
         .previous
 
         .macro idct_start data
@@ -238,8 +239,8 @@
         pld             [\data]
         pld             [\data, #64]
         vpush           {d8-d15}
-        movw            r3, #:lower16:const
-        movt            r3, #:upper16:const
+        movw            r3, #:lower16:idct_coeff_neon
+        movt            r3, #:upper16:idct_coeff_neon
         vld1.64         {d0,d1}, [r3,:128]
         .endm