summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-05-05 16:26:01 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-05-09 13:18:32 +0200
commitebe78e3ef0b07dbefe90c8709aef9611183c08ed (patch)
tree20f53716f5ff93eea57081f0e18818df05d165f3
parente8e84dc3252dfb9632380a2f02eb90be167c746f (diff)
downloadffmpeg-ebe78e3ef0b07dbefe90c8709aef9611183c08ed.tar.gz
avfilter/af_volume: Don't free options manually
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavfilter/af_volume.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/af_volume.c b/libavfilter/af_volume.c
index 5a3c9220f4..b3dd57c5e5 100644
--- a/libavfilter/af_volume.c
+++ b/libavfilter/af_volume.c
@@ -127,7 +127,6 @@ static av_cold void uninit(AVFilterContext *ctx)
{
VolumeContext *vol = ctx->priv;
av_expr_free(vol->volume_pexpr);
- av_opt_free(vol);
av_freep(&vol->fdsp);
}