diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-07-15 10:57:55 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-07-15 15:27:19 +0000 |
commit | 5999db97cf2607a1985ff6fd704d270291b31126 (patch) | |
tree | c03e91c957d81f930c92f9ccd469932f558a55d5 | |
parent | 6158a3bcdf52fafc1d9ae9eb358a56c614b23aa3 (diff) | |
download | ffmpeg-5999db97cf2607a1985ff6fd704d270291b31126.tar.gz |
lavfi/scale: remove av_opt_free()
Generic code calls it already.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_scale.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c index b1246fe343..056f54054a 100644 --- a/libavfilter/vf_scale.c +++ b/libavfilter/vf_scale.c @@ -147,7 +147,6 @@ static av_cold void uninit(AVFilterContext *ctx) sws_freeContext(scale->isws[0]); sws_freeContext(scale->isws[1]); scale->sws = NULL; - av_opt_free(scale); } static int query_formats(AVFilterContext *ctx) |