diff --git a/libavcodec/error_resilience.c b/libavcodec/error_resilience.c index fffe19cca3..a7ae0438cd 100644 --- a/libavcodec/error_resilience.c +++ b/libavcodec/error_resilience.c @@ -629,6 +629,12 @@ static int is_intra_more_likely(MpegEncContext *s){ undamaged_count++; } + if(s->codec_id == CODEC_ID_H264){ + H264Context *h= (void*)s; + if(h->ref_count[0] <= 0 || !h->ref_list[0][0].data[0]) + return 1; + } + if(undamaged_count < 5) return 0; //almost all MBs damaged -> use temporal prediction //prevent dsp.sad() check, that requires access to the image