diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-09 12:37:08 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-10 17:56:06 +0100 |
commit | 11043d80f60ca37330f5f1afb8ee956665a71290 (patch) | |
tree | 4130024372ffb84b30112245fa8b156db912c62b /libavcodec/arm/vp8_armv6.S | |
parent | 39c2a6bf44b25534fdbc9b6ac3844dab28ba5b0e (diff) | |
download | ffmpeg-11043d80f60ca37330f5f1afb8ee956665a71290.tar.gz |
ARM: use const macro to define constant data in asm
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/arm/vp8_armv6.S')
-rw-r--r-- | libavcodec/arm/vp8_armv6.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/arm/vp8_armv6.S b/libavcodec/arm/vp8_armv6.S index 1d89c68909..594046d709 100644 --- a/libavcodec/arm/vp8_armv6.S +++ b/libavcodec/arm/vp8_armv6.S @@ -240,9 +240,9 @@ A orrcs r8, r8, r10, lsl r6 b 5b endfunc - .section .rodata -zigzag_scan: +const zigzag_scan .byte 0, 2, 8, 16 .byte 10, 4, 6, 12 .byte 18, 24, 26, 20 .byte 14, 22, 28, 30 +endconst |