From b4cf2228700dc34379d85f3261aac16fbc287142 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 23 Jul 2008 17:24:11 +0000 Subject: [PATCH] Better explanation for buf_size==0 code. Originally committed as revision 14353 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 0497624ba1..2bf0cc1a64 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -7730,7 +7730,7 @@ static int decode_frame(AVCodecContext *avctx, s->flags= avctx->flags; s->flags2= avctx->flags2; - /* no supplementary picture */ + /* end of stream, output whats still in the buffers */ if (buf_size == 0) { Picture *out; int i, out_idx;