summaryrefslogtreecommitdiff
path: root/libavcodec/arm
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2008-12-30 03:13:40 +0000
committerMåns Rullgård <mans@mansr.com>2008-12-30 03:13:40 +0000
commit77e2249e2fbb303e00b5b103bd2af3855a976154 (patch)
treeef2f663ec1804e11dce2e12352d3a9da7e50c079 /libavcodec/arm
parent275131628d12392d6ea40aa63e557290d13088e4 (diff)
ARM: rename coefficient table in NEON IDCT
Originally committed as revision 16392 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm')
-rw-r--r--libavcodec/arm/simple_idct_neon.S7
1 files changed, 4 insertions, 3 deletions
diff --git a/libavcodec/arm/simple_idct_neon.S b/libavcodec/arm/simple_idct_neon.S
index 376db0b534..e05c5fcb8b 100644
--- a/libavcodec/arm/simple_idct_neon.S
+++ b/libavcodec/arm/simple_idct_neon.S
@@ -230,7 +230,8 @@ function idct_col4_st8_neon
.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 @@ const: .short W1, W2, W3, W4, W5, W6, W7, W4c
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