1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-07-11 14:30:22 +02: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:
Andreas Rheinhardt
2024-03-10 17:14:55 +01:00
parent 53a51e70f2
commit c00cd007e8
41 changed files with 130 additions and 167 deletions

View File

@ -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;