mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-19 09:02:26 +02:00
h264: on reference overflow, reset the reference count to 0, not 1.
Since decode_slice_header() returns before the reference lists are constructed, there are zero valid references. CC:libav-stable@libav.org
This commit is contained in:
parent
e671d3ad6c
commit
668e16a0dd
@ -3391,7 +3391,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
|
|||||||
|
|
||||||
if (h->ref_count[0] > max_refs || h->ref_count[1] > max_refs) {
|
if (h->ref_count[0] > max_refs || h->ref_count[1] > max_refs) {
|
||||||
av_log(h->avctx, AV_LOG_ERROR, "reference overflow\n");
|
av_log(h->avctx, AV_LOG_ERROR, "reference overflow\n");
|
||||||
h->ref_count[0] = h->ref_count[1] = 1;
|
h->ref_count[0] = h->ref_count[1] = 0;
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user