diff options
author | Måns Rullgård <mans@mansr.com> | 2010-04-12 13:28:59 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-04-12 13:28:59 +0000 |
commit | f01210a6911557afd2a95c4acf1917b34e5bead6 (patch) | |
tree | 5c38f824e169c2b97d7ec44c20b35ea7004e2e6a | |
parent | a7fc91468ccd6f9a89ff6ab90b1b7dad14cde839 (diff) | |
download | ffmpeg-f01210a6911557afd2a95c4acf1917b34e5bead6.tar.gz |
ARM: fix NEON synth_filter_float with hardfp calls
Originally committed as revision 22852 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/arm/synth_filter_neon.S | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/arm/synth_filter_neon.S b/libavcodec/arm/synth_filter_neon.S index 5fd90aef46..c168d738f1 100644 --- a/libavcodec/arm/synth_filter_neon.S +++ b/libavcodec/arm/synth_filter_neon.S @@ -35,12 +35,14 @@ function ff_synth_filter_float_neon, export=1 ldr r2, [sp, #12*4] @ in mov r9, r1 @ synth_buf +VFP vpush {d0} bl ff_imdct_half_neon +VFP vpop {d0} pop {r3} ldr r5, [sp, #9*4] @ window ldr r2, [sp, #10*4] @ out - vldr d0, [sp, #12*4] @ scale, bias +NOVFP vldr d0, [sp, #12*4] @ scale, bias add r8, r9, #12*4 mov lr, #64*4 |