From 73c87551e57d66da1ea6bfa2dfff45ca6cdda540 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Tue, 27 Jan 2009 00:23:27 +0000 Subject: vp5: don't try decoding a P frame before any I frame was parsed fix issue802 Originally committed as revision 16813 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp5.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/vp5.c') diff --git a/libavcodec/vp5.c b/libavcodec/vp5.c index e47db0d2c1..3eecb562e4 100644 --- a/libavcodec/vp5.c +++ b/libavcodec/vp5.c @@ -64,7 +64,8 @@ static int vp5_parse_header(VP56Context *s, const uint8_t *buf, int buf_size, avcodec_set_dimensions(s->avctx, 16*cols, 16*rows); return 2; } - } + } else if (!s->macroblocks) + return 0; return 1; } -- cgit v1.2.3