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
pull/126/head
Aurelien Jacobs 16 years ago
parent 7a42067176
commit 73c87551e5
  1. 3
      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;
}

Loading…
Cancel
Save