mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
lavu/fixed_dsp: add missing av_restrict qualifiers
The butterflies_fixed function pointer declaration specifies av_restrict for the first two pointer arguments. So the corresponding function definitions should honor this declaration. MSVC emits warning C4113 for this. Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
d09776d486
commit
a11e745b97
2 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@
|
|||
#include "libavutil/fixed_dsp.h"
|
||||
#include "cpu.h"
|
||||
|
||||
void ff_butterflies_fixed_sse2(int *src0, int *src1, int len);
|
||||
void ff_butterflies_fixed_sse2(int *av_restrict src0, int *av_restrict src1, int len);
|
||||
|
||||
av_cold void ff_fixed_dsp_init_x86(AVFixedDSPContext *fdsp)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue