mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
h264: set ref_count to 0 for intra slices.
CC:libav-stable@libav.org
This commit is contained in:
parent
668e16a0dd
commit
437211ae73
@ -3384,8 +3384,11 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
|
||||
h->list_count = 2;
|
||||
else
|
||||
h->list_count = 1;
|
||||
} else
|
||||
} else {
|
||||
h->list_count = 0;
|
||||
h->ref_count[0] = h->ref_count[1] = 0;
|
||||
}
|
||||
|
||||
|
||||
max_refs = h->picture_structure == PICT_FRAME ? 16 : 32;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user