diff options
author | Clément Bœsch <cboesch@gopro.com> | 2017-03-30 10:23:25 +0200 |
---|---|---|
committer | Clément Bœsch <cboesch@gopro.com> | 2017-03-30 10:23:25 +0200 |
commit | f291a9a1adab8ba41e06073b8a9e51f528be6532 (patch) | |
tree | 72c0fb1826e1f0e332ccbc8b9e94fe209b6830b4 /libavutil | |
parent | 77248d12181288dd00d1f83fc03649ef14e4dfbe (diff) | |
parent | 99434f4df81b6801b2b535d5b9143305595784f6 (diff) | |
download | ffmpeg-streaming-f291a9a1adab8ba41e06073b8a9e51f528be6532.zip ffmpeg-streaming-f291a9a1adab8ba41e06073b8a9e51f528be6532.tar.gz |
Merge commit '99434f4df81b6801b2b535d5b9143305595784f6'
* commit '99434f4df81b6801b2b535d5b9143305595784f6':
float_dsp: Have implementation match function pointer prototype
Merged-by: Clément Bœsch <cboesch@gopro.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/x86/float_dsp_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/float_dsp_init.c b/libavutil/x86/float_dsp_init.c index c836a78..736b9ad 100644 --- a/libavutil/x86/float_dsp_init.c +++ b/libavutil/x86/float_dsp_init.c @@ -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); -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) { |