From c53d2d90425e0abcca6ff96251bff84fc3993f80 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Mon, 7 May 2007 00:47:03 +0000 Subject: make some parser parameters const to avoid casting const to non-const Originally committed as revision 8921 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpeg4video_parser.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/mpeg4video_parser.c') diff --git a/libavcodec/mpeg4video_parser.c b/libavcodec/mpeg4video_parser.c index 59d25eac0c..4771ca0b44 100644 --- a/libavcodec/mpeg4video_parser.c +++ b/libavcodec/mpeg4video_parser.c @@ -65,7 +65,7 @@ static int mpeg4video_parse_init(AVCodecParserContext *s) static int mpeg4video_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; @@ -76,7 +76,7 @@ static int mpeg4video_parse(AVCodecParserContext *s, }else{ next= ff_mpeg4_find_frame_end(pc, buf, buf_size); - if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) { + if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { *poutbuf = NULL; *poutbuf_size = 0; return buf_size; @@ -84,7 +84,7 @@ static int mpeg4video_parse(AVCodecParserContext *s, } av_mpeg4_decode_header(s, avctx, buf, buf_size); - *poutbuf = (uint8_t *)buf; + *poutbuf = buf; *poutbuf_size = buf_size; return next; } -- cgit v1.2.3