From 99ddeddc7fc996c0c1e842112928490e78542bd5 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 31 Oct 2016 23:06:54 +0100 Subject: [PATCH] ituh263dec: Have function signature match across declaration and definition libavcodec/ituh263dec.c(215) : warning C4028: formal parameter 1 different from declaration libavcodec/ituh263dec.c(215) : warning C4028: formal parameter 2 different from declaration --- libavcodec/h263.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavcodec/h263.h b/libavcodec/h263.h index 42c78f4c0e..3e54204f0f 100644 --- a/libavcodec/h263.h +++ b/libavcodec/h263.h @@ -21,7 +21,11 @@ #define AVCODEC_H263_H #include + +#include "config.h" + #include "libavutil/rational.h" + #include "get_bits.h" #include "mpegvideo.h" #include "h263data.h" @@ -95,7 +99,7 @@ int av_const h263_get_picture_format(int width, int height); void ff_clean_h263_qscales(MpegEncContext *s); int ff_h263_resync(MpegEncContext *s); -const uint8_t *ff_h263_find_resync_marker(const uint8_t *p, const uint8_t *end); +const uint8_t *ff_h263_find_resync_marker(const uint8_t *restrict p, const uint8_t *restrict end); void ff_h263_encode_motion(MpegEncContext * s, int val, int f_code);