mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
pthread: free progress if buffer allocation failed.
Else we run out of progress variables after a few failed buffer allocations. Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
bc1ef85520
commit
2ee01fbded
@ -951,6 +951,10 @@ int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f)
|
||||
ff_thread_finish_setup(avctx);
|
||||
}
|
||||
|
||||
if (err) {
|
||||
free_progress(f);
|
||||
f->thread_opaque = NULL;
|
||||
}
|
||||
pthread_mutex_unlock(&p->parent->buffer_mutex);
|
||||
|
||||
return err;
|
||||
|
Loading…
x
Reference in New Issue
Block a user