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/h264pred_neon.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/h264pred_neon.S')
-rw-r--r-- | libavcodec/arm/h264pred_neon.S | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libavcodec/arm/h264pred_neon.S b/libavcodec/arm/h264pred_neon.S index fe8a369a90..815b67b81f 100644 --- a/libavcodec/arm/h264pred_neon.S +++ b/libavcodec/arm/h264pred_neon.S @@ -166,12 +166,9 @@ function ff_pred16x16_plane_neon, export=1 bx lr endfunc - .section .rodata - .align 4 -p16weight: +const p16weight, align=4 .short 1,2,3,4,5,6,7,8 - - .text +endconst function ff_pred8x8_hor_neon, export=1 sub r2, r0, #1 |