Browse Source

Merge commit '99434f4df81b6801b2b535d5b9143305595784f6'

* commit '99434f4df81b6801b2b535d5b9143305595784f6':
  float_dsp: Have implementation match function pointer prototype

Merged-by: Clément Bœsch <cboesch@gopro.com>
tags/n3.3
Clément Bœsch 8 years ago
parent
commit
f291a9a1ad
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/x86/float_dsp_init.c

+ 1
- 1
libavutil/x86/float_dsp_init.c View File

@@ -63,7 +63,7 @@ void ff_vector_fmul_reverse_avx(float *dst, const float *src0,


float ff_scalarproduct_float_sse(const float *v1, const float *v2, int order); float ff_scalarproduct_float_sse(const float *v1, const float *v2, int order);


void ff_butterflies_float_sse(float *src0, float *src1, int len);
void ff_butterflies_float_sse(float *av_restrict src0, float *av_restrict src1, int len);


av_cold void ff_float_dsp_init_x86(AVFloatDSPContext *fdsp) av_cold void ff_float_dsp_init_x86(AVFloatDSPContext *fdsp)
{ {


Loading…
Cancel
Save