diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-09 16:17:56 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-09 16:17:56 +0000 |
commit | a7e7d40c2ead00b4435b06c0c01432e51459bf9f (patch) | |
tree | 7521febd58cce91d589773519cbdaa9a2490e926 /libavcodec/arm/simple_idct_neon.S | |
parent | db76ca7f3543ab9caadce1bda6d70d5c1d9be011 (diff) | |
download | ffmpeg-a7e7d40c2ead00b4435b06c0c01432e51459bf9f.tar.gz |
ARM: set size of asm functions in object files
Originally committed as revision 22404 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/simple_idct_neon.S')
-rw-r--r-- | libavcodec/arm/simple_idct_neon.S | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/arm/simple_idct_neon.S b/libavcodec/arm/simple_idct_neon.S index 4c329d8500..f27208e46b 100644 --- a/libavcodec/arm/simple_idct_neon.S +++ b/libavcodec/arm/simple_idct_neon.S @@ -77,7 +77,7 @@ function idct_row4_pld_neon add r3, r3, r1, lsl #1 pld [r3] pld [r3, r1] - .endfunc +endfunc function idct_row4_neon vmov.i32 q15, #(1<<(ROW_SHIFT-1)) @@ -147,7 +147,7 @@ function idct_row4_neon vst1.64 {d6-d9}, [r2,:128]! bx lr - .endfunc +endfunc function idct_col4_neon mov ip, #16 @@ -218,7 +218,7 @@ function idct_col4_neon vsubhn.i32 d6, q14, q6 bx lr - .endfunc +endfunc .align 6 @@ -237,7 +237,7 @@ function idct_col4_st8_neon vst1.32 {d5[1]}, [r0,:32], r1 bx lr - .endfunc +endfunc .section .rodata .align 4 @@ -275,7 +275,7 @@ function ff_simple_idct_put_neon, export=1 bl idct_col4_st8_neon idct_end - .endfunc +endfunc .align 6 @@ -312,7 +312,7 @@ function idct_col4_add8_neon vst1.32 {d5[1]}, [ip,:32], r1 bx lr - .endfunc +endfunc /* void ff_simple_idct_add_neon(uint8_t *dst, int line_size, DCTELEM *data); */ function ff_simple_idct_add_neon, export=1 @@ -330,7 +330,7 @@ function ff_simple_idct_add_neon, export=1 bl idct_col4_add8_neon idct_end - .endfunc +endfunc .align 6 @@ -351,7 +351,7 @@ function idct_col4_st16_neon vst1.64 {d9}, [r2,:64], ip bx lr - .endfunc +endfunc /* void ff_simple_idct_neon(DCTELEM *data); */ function ff_simple_idct_neon, export=1 @@ -370,4 +370,4 @@ function ff_simple_idct_neon, export=1 bl idct_col4_st16_neon idct_end - .endfunc +endfunc |