Commit 0e066acb authored by Michael Niedermayer's avatar Michael Niedermayer
parent c33fc0a5
...@@ -3178,6 +3178,10 @@ static int mpeg_decode_frame(AVCodecContext *avctx, ...@@ -3178,6 +3178,10 @@ static int mpeg_decode_frame(AVCodecContext *avctx,
if(mpeg_field_start(s2) < 0) if(mpeg_field_start(s2) < 0)
return -1; return -1;
} }
if(!s2->current_picture_ptr){
av_log(avctx, AV_LOG_ERROR, "current_picture not initalized\n");
return -1;
}
if(avctx->thread_count > 1){ if(avctx->thread_count > 1){
int threshold= (s2->mb_height*s->slice_count + avctx->thread_count/2) / avctx->thread_count; int threshold= (s2->mb_height*s->slice_count + avctx->thread_count/2) / avctx->thread_count;
......
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