You've already forked FFmpeg
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:
@ -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;
|
||||
|
Reference in New Issue
Block a user