Commit d340f387 authored by michael's avatar michael

fix segfault on broken streams


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4966 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fdfa5762
......@@ -959,11 +959,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8
p->pict_type= FF_I_TYPE; //FIXME I vs. P
if(get_rac(c, &keystate)){
p->key_frame= 1;
read_header(f);
if(read_header(f) < 0)
return -1;
clear_state(f);
}else{
p->key_frame= 0;
}
if(!f->plane[0].state && !f->plane[0].vlc_state)
return -1;
p->reference= 0;
if(avctx->get_buffer(avctx, p) < 0){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment