* fix for empty image queue

Originally committed as revision 1342 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Zdenek Kabelac 2002-12-19 18:59:45 +00:00
parent 8154d2e01a
commit f7696989d9
1 changed files with 1 additions and 1 deletions

View File

@ -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;