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/fft_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/fft_neon.S')
-rw-r--r-- | libavcodec/arm/fft_neon.S | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/arm/fft_neon.S b/libavcodec/arm/fft_neon.S index e237196774..08589db096 100644 --- a/libavcodec/arm/fft_neon.S +++ b/libavcodec/arm/fft_neon.S @@ -43,7 +43,7 @@ function fft4_neon vst1.32 {d0-d3}, [r0,:128] bx lr -.endfunc +endfunc function fft8_neon mov r1, r0 @@ -96,7 +96,7 @@ function fft8_neon vst1.32 {d0-d3}, [r0,:128] bx lr -.endfunc +endfunc function fft16_neon movrel r1, mppm @@ -198,7 +198,7 @@ function fft16_neon vst2.32 {d26-d27},[r0,:128], r1 vst2.32 {d30-d31},[r0,:128] bx lr -.endfunc +endfunc function fft_pass_neon push {r4-r6,lr} @@ -274,7 +274,7 @@ function fft_pass_neon bne 1b pop {r4-r6,pc} -.endfunc +endfunc .macro def_fft n, n2, n4 .align 6 @@ -291,7 +291,7 @@ function fft\n\()_neon movrel r1, X(ff_cos_\n) mov r2, #\n4/2 b fft_pass_neon -.endfunc +endfunc .endm def_fft 32, 16, 8 @@ -314,7 +314,7 @@ function ff_fft_calc_neon, export=1 ldr r3, [r3, r2, lsl #2] mov r0, r1 bx r3 -.endfunc +endfunc function ff_fft_permute_neon, export=1 push {r4,lr} @@ -344,7 +344,7 @@ function ff_fft_permute_neon, export=1 bgt 1b pop {r4,pc} -.endfunc +endfunc .section .rodata .align 4 |