mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-03 14:32:16 +02:00
avcodec/h264_refs: Detect more random access points which are not marked
Fixes: nature_360-7501616eb5eafca5-1111.mp4 Reported-by: Thierry Foucu <tfoucu@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a73579c12d
commit
b544850a52
@ -815,6 +815,7 @@ int ff_h264_execute_ref_pic_marking(H264Context *h)
|
||||
if ( err >= 0
|
||||
&& h->long_ref_count==0
|
||||
&& ( h->short_ref_count<=2
|
||||
|| pps_ref_count[0] <= 2 && pps_ref_count[1] <= 1 && h->avctx->has_b_frames
|
||||
|| pps_ref_count[0] <= 1 + (h->picture_structure != PICT_FRAME) && pps_ref_count[1] <= 1)
|
||||
&& pps_ref_count[0]<=2 + (h->picture_structure != PICT_FRAME) + (2*!h->has_recovery_point)
|
||||
&& h->cur_pic_ptr->f->pict_type == AV_PICTURE_TYPE_I){
|
||||
|
Loading…
x
Reference in New Issue
Block a user