[FFmpeg-devel] [PATCH] pthread_frame: uninit the hwaccel of each frame thread

Lynne dev at lynne.ee
Tue Jun 13 05:11:35 EEST 2023


The issue is that with a threadsafe hwaccel and multiple enabled
frame threads, hwaccel->uninit() is never called.
Previously, the function was guaranteed to never have any threads
with hwaccel contexts, so it never bothered to uninit it.

Patch attached.

---
diff --git a/libavcodec/pthread_frame.c b/libavcodec/pthread_frame.c
index 28335231fd..bdc1718ab3 100644
--- a/libavcodec/pthread_frame.c
+++ b/libavcodec/pthread_frame.c
@@ -751,6 +751,8 @@ void ff_frame_thread_free(AVCodecContext *avctx, int thread_count)
             if (codec->close && p->thread_init != UNINITIALIZED)
                 codec->close(ctx);
 
+            ff_hwaccel_uninit(ctx);
+
             if (ctx->priv_data) {
                 if (codec->p.priv_class)
                     av_opt_free(ctx->priv_data);
-- 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-pthread_frame-uninit-the-hwaccel-of-each-frame-threa.patch
Type: text/x-diff
Size: 1062 bytes
Desc: not available
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20230613/d2d9e6e3/attachment.patch>


More information about the ffmpeg-devel mailing list