diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-10-31 23:06:54 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-03 17:43:55 +0100 |
commit | 99ddeddc7fc996c0c1e842112928490e78542bd5 (patch) | |
tree | d8b070c69264fd17917c5686059e56ec597233e0 | |
parent | 67c65e461cb073d61ffbc78845d4a3d8f14bf481 (diff) | |
download | ffmpeg-99ddeddc7fc996c0c1e842112928490e78542bd5.tar.gz |
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
-rw-r--r-- | libavcodec/h263.h | 6 |
1 files changed, 5 insertions, 1 deletions
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 <stdint.h> + +#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); |