[FFmpeg-devel] [PATCH v2] libavfilter/vf_cover_rect.c: free the allocated frame
lance.lmwang at gmail.com
lance.lmwang at gmail.com
Sat Jun 8 01:32:38 EEST 2019
From: Limin Wang <lance.lmwang at gmail.com>
Signed-off-by: Limin Wang <lance.lmwang at gmail.com>
---
libavfilter/vf_cover_rect.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_cover_rect.c b/libavfilter/vf_cover_rect.c
index 41cd1a1..ac0f684 100644
--- a/libavfilter/vf_cover_rect.c
+++ b/libavfilter/vf_cover_rect.c
@@ -197,7 +197,7 @@ static av_cold void uninit(AVFilterContext *ctx)
CoverContext *cover = ctx->priv;
if (cover->cover_frame)
- av_freep(&cover->cover_frame->data[0]);
+ av_frame_free(&cover->cover_frame);
}
static av_cold int init(AVFilterContext *ctx)
--
2.6.4
More information about the ffmpeg-devel
mailing list