diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2019-10-24 15:36:35 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-07-03 00:03:45 +0200 |
commit | ec43a80774d2763228c4c0f1fc79e3ff7a8fc537 (patch) | |
tree | fdd865a6ec3e3650b2c9835631bc12455efae5fa | |
parent | 59b73dc1f386ac8f3582e0b7cbb91e22c41f9f24 (diff) | |
download | ffmpeg-ec43a80774d2763228c4c0f1fc79e3ff7a8fc537.tar.gz |
fftools/ffmpeg: Free swresample dictionary during cleanup
Freeing this was forgotten in ad899522.
Fixes #8315 and #8316.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 6f2a3958cfac135c60b509a61a4fd39432d8f9a9)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | fftools/ffmpeg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 1706fd0d75..b07c086aa2 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -553,6 +553,7 @@ static void ffmpeg_cleanup(int ret) ost->audio_channels_mapped = 0; av_dict_free(&ost->sws_dict); + av_dict_free(&ost->swr_opts); avcodec_free_context(&ost->enc_ctx); avcodec_parameters_free(&ost->ref_par); |