Commit 66f379da authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'b72727a5'

* commit 'b72727a5':
  lavc: mention that the parser callback never returns an error
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 03abf55f b72727a5
......@@ -4354,6 +4354,8 @@ typedef struct AVCodecParser {
int codec_ids[5]; /* several codec IDs are permitted */
int priv_data_size;
int (*parser_init)(AVCodecParserContext *s);
/* This callback never returns an error, a negative value means that
* the frame start was in a previous packet. */
int (*parser_parse)(AVCodecParserContext *s,
AVCodecContext *avctx,
const uint8_t **poutbuf, int *poutbuf_size,
......
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