diff options
author | Lynne <dev@lynne.ee> | 2023-08-26 23:20:47 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-08-28 22:29:29 +0200 |
commit | 747871a42c0021fd82f0ca806b8419a29f627d7f (patch) | |
tree | b83fdda6bfc3e4861f5e95e8e641db180226c7ea /libavutil/vulkan.c | |
parent | b5273c619dc63ed4f4853aa4652097923e46a101 (diff) | |
download | ffmpeg-747871a42c0021fd82f0ca806b8419a29f627d7f.tar.gz |
vulkan: do not leak cooperative matrix properties
Diffstat (limited to 'libavutil/vulkan.c')
-rw-r--r-- | libavutil/vulkan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/vulkan.c b/libavutil/vulkan.c index 684b92de57..8e36ba508c 100644 --- a/libavutil/vulkan.c +++ b/libavutil/vulkan.c @@ -1893,6 +1893,7 @@ void ff_vk_uninit(FFVulkanContext *s) av_freep(&s->query_props); av_freep(&s->qf_props); av_freep(&s->video_props); + av_freep(&s->coop_mat_props); av_buffer_unref(&s->frames_ref); } |