vc1: Do not assume seek happens after decoding
authorLuca Barbato <lu_zero@gentoo.org>
Sat, 4 Oct 2014 10:40:35 +0000 (12:40 +0200)
committerLuca Barbato <lu_zero@gentoo.org>
Fri, 19 Dec 2014 16:58:22 +0000 (17:58 +0100)
If a seek is requested before the decoding start there is no
current picture.

CC: libav-stable@libav.org
(cherry picked from commit 3e348ecfc6ab1830e43288a9e12e8f0a000afbcb)
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
libavcodec/vc1dec.c

index 8ad4f0f..4c9ff03 100644 (file)
@@ -5503,7 +5503,7 @@ static void vc1_sprite_flush(AVCodecContext *avctx)
        Since we can't enforce it, clear to black the missing sprite. This is
        wrong but it looks better than doing nothing. */
 
-    if (f->data[0])
+    if (f && f->data[0])
         for (plane = 0; plane < (s->flags&CODEC_FLAG_GRAY ? 1 : 3); plane++)
             for (i = 0; i < v->sprite_height>>!!plane; i++)
                 memset(f->data[plane] + i * f->linesize[plane],