From b25b6432a7345791c488fadba3bd1ac75ebb2cbb Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 10 Nov 2019 02:47:24 +0100 Subject: avcodec/dvdec: Don't use restrict directly to fix build on MSVC 004ebd4b added a function with a parameter that was declared as restrict and not av_restrict. This is not supported by MSVC as several FATE-boxes that now fail to build show. So use av_restrict. Signed-off-by: Andreas Rheinhardt Tested-by: Matthias Troffaes Signed-off-by: Michael Niedermayer --- libavcodec/dvdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/dvdec.c') diff --git a/libavcodec/dvdec.c b/libavcodec/dvdec.c index cfa0fb9..578d7f5 100644 --- a/libavcodec/dvdec.c +++ b/libavcodec/dvdec.c @@ -269,7 +269,7 @@ static inline void bit_copy(PutBitContext *pb, GetBitContext *gb) put_bits(pb, bits_left, get_bits(gb, bits_left)); } -static av_always_inline void put_block_8x4(int16_t *block, uint8_t *restrict p, int stride) +static av_always_inline void put_block_8x4(int16_t *block, uint8_t *av_restrict p, int stride) { int i, j; const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP; -- cgit v1.1