mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-22 15:00:10 +01: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:
@@ -16,14 +16,12 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "libavutil/attributes.h"
|
||||
#include "libavutil/cpu.h"
|
||||
#include "libavutil/fixed_dsp.h"
|
||||
#include "cpu.h"
|
||||
|
||||
void ff_butterflies_fixed_sse2(int *av_restrict src0, int *av_restrict src1, int len);
|
||||
void ff_butterflies_fixed_sse2(int *restrict src0, int *restrict src1, int len);
|
||||
|
||||
av_cold void ff_fixed_dsp_init_x86(AVFixedDSPContext *fdsp)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user