diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-04-08 08:53:34 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-04-08 09:02:03 +0000 |
commit | 1f97dfb77f27e8eb11b419eedf27016237401f90 (patch) | |
tree | 5deac44f044073a581a4693f0f3f65c60e04f77a | |
parent | e2946e5c3482ab78913bfa5527a6fa9ea4e70bb4 (diff) | |
download | ffmpeg-1f97dfb77f27e8eb11b419eedf27016237401f90.tar.gz |
lavfi/blend,noise: remove unedeed av_opt_free() call
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_blend.c | 1 | ||||
-rw-r--r-- | libavfilter/vf_noise.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c index 782bf4bf8f..434b470561 100644 --- a/libavfilter/vf_blend.c +++ b/libavfilter/vf_blend.c @@ -338,7 +338,6 @@ static av_cold void uninit(AVFilterContext *ctx) BlendContext *b = ctx->priv; int i; - av_opt_free(b); ff_bufqueue_discard_all(&b->queue_top); ff_bufqueue_discard_all(&b->queue_bottom); diff --git a/libavfilter/vf_noise.c b/libavfilter/vf_noise.c index e9a4aa3a29..a2079b8741 100644 --- a/libavfilter/vf_noise.c +++ b/libavfilter/vf_noise.c @@ -322,7 +322,6 @@ static av_cold void uninit(AVFilterContext *ctx) for (i = 0; i < 4; i++) av_freep(&n->param[i].noise); - av_opt_free(n); } static const AVFilterPad noise_inputs[] = { |