Commit 4e56af82 authored by Aurelien Jacobs's avatar Aurelien Jacobs

don't cast const away

Originally committed as revision 11801 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 60b6dbe7
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment