mirror of https://git.ffmpeg.org/ffmpeg.git
correct type for h263_parse()
Originally committed as revision 9337 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e1659f0cc7
commit
e336139f0c
|
@ -63,7 +63,7 @@ int ff_h263_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size){
|
||||||
|
|
||||||
static int h263_parse(AVCodecParserContext *s,
|
static int h263_parse(AVCodecParserContext *s,
|
||||||
AVCodecContext *avctx,
|
AVCodecContext *avctx,
|
||||||
uint8_t **poutbuf, int *poutbuf_size,
|
const uint8_t **poutbuf, int *poutbuf_size,
|
||||||
const uint8_t *buf, int buf_size)
|
const uint8_t *buf, int buf_size)
|
||||||
{
|
{
|
||||||
ParseContext *pc = s->priv_data;
|
ParseContext *pc = s->priv_data;
|
||||||
|
|
Loading…
Reference in New Issue