diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2019-10-24 15:36:35 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-10-25 00:22:33 +0200 |
commit | 6f2a3958cfac135c60b509a61a4fd39432d8f9a9 (patch) | |
tree | 8eb51ded8c21bdd31153e320667f4a11a6d4ae20 | |
parent | 698e042c77ecb5b0d616de254adc783e8b61b9c4 (diff) | |
download | ffmpeg-streaming-6f2a3958cfac135c60b509a61a4fd39432d8f9a9.zip ffmpeg-streaming-6f2a3958cfac135c60b509a61a4fd39432d8f9a9.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>
-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 8e408c8..27f6893 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -567,6 +567,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); |