ARM: fix float_dsp breakage from d5a7229

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Mans Rullgard
2012-06-08 19:24:51 +01:00
parent d5a7229ba4
commit a839d6abf8
4 changed files with 8 additions and 8 deletions

View File

@@ -25,10 +25,10 @@
void ff_vector_fmul_vfp(float *dst, const float *src0, const float *src1,
int len);
void ff_dsputil_init_vfp(DSPContext* c, AVCodecContext *avctx)
void ff_float_dsp_init_vfp(AVFloatDSPContext *fdsp)
{
int cpu_flags = av_get_cpu_flags();
if (!have_vfpv3(cpu_flags))
c->vector_fmul = ff_vector_fmul_vfp;
fdsp->vector_fmul = ff_vector_fmul_vfp;
}