mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
configure: Remove av_restrict
All versions of MSVC that support C11 (namely >= v19.27)
also support the restrict keyword, therefore av_restrict
is no longer necessary since 75697836b1.
Reviewed-by: Martin Storsjö <martin@martin.st>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
53a51e70f2
commit
c00cd007e8
41 changed files with 130 additions and 167 deletions
|
|
@ -224,7 +224,7 @@ static void vector_fmul_window_mips(float *dst, const float *src0,
|
|||
);
|
||||
}
|
||||
|
||||
static void butterflies_float_mips(float *av_restrict v1, float *av_restrict v2,
|
||||
static void butterflies_float_mips(float *restrict v1, float *restrict v2,
|
||||
int len)
|
||||
{
|
||||
float temp0, temp1, temp2, temp3, temp4;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue