From f7696989d9efb71844830f32ea2f2248f0a85868 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Thu, 19 Dec 2002 18:59:45 +0000 Subject: * fix for empty image queue Originally committed as revision 1342 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpeg12.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 074e10d93a..17a9aec20a 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -1718,7 +1718,7 @@ eos: //end of slice s->picture_number++; /* latency of 1 frame for I and P frames */ /* XXX: use another variable than picture_number */ - if (s->picture_number == 1) { + if (s->last_picture.data[0] == NULL) { return DECODE_SLICE_OK; } else { *pict= *(AVFrame*)&s->last_picture; -- cgit v1.2.3