mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
h264: change MAX_DELAYED_PIC_COUNT check to av_assert0
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
76ba894eab
commit
b955ab2f49
@ -1379,7 +1379,7 @@ static void decode_postinit(H264Context *h, int setup_finished){
|
||||
pics = 0;
|
||||
while(h->delayed_pic[pics]) pics++;
|
||||
|
||||
assert(pics <= MAX_DELAYED_PIC_COUNT);
|
||||
av_assert0(pics <= MAX_DELAYED_PIC_COUNT);
|
||||
|
||||
h->delayed_pic[pics++] = cur;
|
||||
if (cur->f.reference == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user