From 4e56af82533e0912dd7dce9b32e151b17d6eaf3f Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Fri, 1 Feb 2008 23:48:39 +0000 Subject: [PATCH] don't cast const away Originally committed as revision 11801 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 c289ca3cc5..bfef3b5bbd 100644 --- a/libavcodec/h263_parser.c +++ b/libavcodec/h263_parser.c @@ -77,7 +77,7 @@ static int h263_parse(AVCodecParserContext *s, return buf_size; } - *poutbuf = (uint8_t *)buf; + *poutbuf = buf; *poutbuf_size = buf_size; return next; }