You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-14 22:15:12 +02:00
h264dec: make sure not to call finish_setup() more than once per frame
It does not break anything currently, but should not be done anyway.
This commit is contained in:
@ -550,7 +550,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
if (avctx->active_thread_type & FF_THREAD_FRAME && !h->avctx->hwaccel &&
|
if (avctx->active_thread_type & FF_THREAD_FRAME && !h->avctx->hwaccel &&
|
||||||
i >= nals_needed) {
|
i >= nals_needed && !h->setup_finished) {
|
||||||
ff_thread_finish_setup(avctx);
|
ff_thread_finish_setup(avctx);
|
||||||
h->setup_finished = 1;
|
h->setup_finished = 1;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user