Commit 64302654 authored by aurel's avatar aurel

don't cast const away

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11801 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9bbd890e
...@@ -77,7 +77,7 @@ static int h263_parse(AVCodecParserContext *s, ...@@ -77,7 +77,7 @@ static int h263_parse(AVCodecParserContext *s,
return buf_size; return buf_size;
} }
*poutbuf = (uint8_t *)buf; *poutbuf = buf;
*poutbuf_size = buf_size; *poutbuf_size = buf_size;
return next; 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