mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-28 12:32:17 +02:00
h264dec: do not call finish_setup() if we have not started a frame
Found-By: Jan Ruge <jan.s.ruge@gmail.com> Bug-Id: 952
This commit is contained in:
parent
76f7e70aa0
commit
e344e65109
@ -557,7 +557,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size)
|
||||
break;
|
||||
|
||||
if (avctx->active_thread_type & FF_THREAD_FRAME && !h->avctx->hwaccel &&
|
||||
i >= nals_needed && !h->setup_finished) {
|
||||
i >= nals_needed && !h->setup_finished && h->cur_pic_ptr) {
|
||||
ff_thread_finish_setup(avctx);
|
||||
h->setup_finished = 1;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user