Mercurial > libavcodec.hg
changeset 3989:eddcc352c0dc libavcodec
doxy
author | michael |
---|---|
date | Wed, 11 Oct 2006 10:29:00 +0000 |
parents | 3041b7b5476c |
children | 746a60ba3177 |
files | parser.c |
diffstat | 1 files changed, 23 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/parser.c Wed Oct 11 08:30:13 2006 +0000 +++ b/parser.c Wed Oct 11 10:29:00 2006 +0000 @@ -71,8 +71,29 @@ return s; } -/* NOTE: buf_size == 0 is used to signal EOF so that the last frame - can be returned if necessary */ +/** + * + * @param buf input + * @param buf_size input length, to signal EOF, this should be 0 (so that the last frame can be output) + * @param pts input presentation timestamp + * @param dts input decoding timestamp + * @param poutbuf will contain a pointer to the first byte of the output frame + * @param poutbuf_size will contain the length of the output frame + * @return the number of bytes of the input bitstream used + * + * Example: + * @code + * while(in_len){ + * len = av_parser_parse(myparser, AVCodecContext, &data, &size, + * in_data, in_len, + * pts, dts); + * in_data += len; + * in_len -= len; + * + * decode_frame(data, size); + * } + * @endcode + */ int av_parser_parse(AVCodecParserContext *s, AVCodecContext *avctx, uint8_t **poutbuf, int *poutbuf_size,