From e336139f0c609c662d129a0a8a9acf91c1083e3d Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sat, 16 Jun 2007 15:15:16 +0000 Subject: [PATCH] correct type for h263_parse() Originally committed as revision 9337 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h263_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h263_parser.c b/libavcodec/h263_parser.c index 7031ad9..53a26c0 100644 --- a/libavcodec/h263_parser.c +++ b/libavcodec/h263_parser.c @@ -63,7 +63,7 @@ int ff_h263_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size){ static int h263_parse(AVCodecParserContext *s, AVCodecContext *avctx, - uint8_t **poutbuf, int *poutbuf_size, + const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) { ParseContext *pc = s->priv_data; -- 2.7.4