From: Zhao Zhili <[email protected]>
Signed-off-by: Zhao Zhili <[email protected]>
---
libavfilter/dnn_filter_common.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/libavfilter/dnn_filter_common.c b/libavfilter/dnn_filter_common.c
index d175c91914..3b9182c1d1 100644
--- a/libavfilter/dnn_filter_common.c
+++ b/libavfilter/dnn_filter_common.c
@@ -159,4 +159,10 @@ void ff_dnn_uninit(DnnContext *ctx)
if (ctx->dnn_module) {
(ctx->dnn_module->free_model)(&ctx->model);
}
+ if (ctx->model_outputnames) {
+ for (int i = 0; i < ctx->nb_outputs; i++)
+ av_free(ctx->model_outputnames[i]);
+
+ av_freep(&ctx->model_outputnames);
+ }
}
--
2.34.1
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".