From 6e45e928562810f40811e30b1dc0a485cb8257ef Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Mon, 15 Dec 2003 14:40:37 +0000 Subject: [PATCH] added End Of File handling to return last picture for MPEG1/2/4 Originally committed as revision 2614 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/parser.c | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/libavcodec/parser.c b/libavcodec/parser.c index 3c9cc7e..211e72e 100644 --- a/libavcodec/parser.c +++ b/libavcodec/parser.c @@ -63,12 +63,22 @@ AVCodecParserContext *av_parser_init(int codec_id) return s; } +/* NOTE: buf_size == 0 is used to signal EOF so that the last frame + can be returned if necessary */ int av_parser_parse(AVCodecParserContext *s, AVCodecContext *avctx, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) { int index; + uint8_t dummy_buf[FF_INPUT_BUFFER_PADDING_SIZE]; + + if (buf_size == 0) { + /* padding is always necessary even if EOF, so we add it here */ + memset(dummy_buf, 0, sizeof(dummy_buf)); + buf = dummy_buf; + } + /* WARNING: the returned index can be negative */ index = s->parser->parser_parse(s, avctx, poutbuf, poutbuf_size, buf, buf_size); /* update the file pointer */ @@ -201,6 +211,9 @@ static int mpeg1_find_frame_end(ParseContext1 *pc, const uint8_t *buf, int buf_s } if(pc->frame_start_found){ + /* EOF considered as end of frame */ + if (buf_size == 0) + return 0; for(; iframe_start_found=0; - pc->state=-1; - return i-3; + /* EOF considered as end of frame */ + if (buf_size == 0) + return 0; + for(; iframe_start_found=0; + pc->state=-1; + return i-3; + } } - } } pc->frame_start_found= vop_found; pc->state= state; -- 2.7.4