From 6785cae35c4b5d407eac2d06d95e7049c191d1f3 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sun, 8 Jul 2007 23:15:08 +0000 Subject: trivial warning fixes Originally committed as revision 9551 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h263_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/h263_parser.c') diff --git a/libavcodec/h263_parser.c b/libavcodec/h263_parser.c index 53a26c05cd..c289ca3cc5 100644 --- a/libavcodec/h263_parser.c +++ b/libavcodec/h263_parser.c @@ -71,7 +71,7 @@ static int h263_parse(AVCodecParserContext *s, next= ff_h263_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; -- cgit v1.2.3