diff options
author | Andreas Rheinhardt <[email protected]> | 2019-10-24 15:36:35 +0200 |
---|---|---|
committer | Andreas Rheinhardt <[email protected]> | 2020-07-02 10:43:53 +0200 |
commit | 9d67954134deb5ca56c19abf07a3afc2a544d0b5 (patch) | |
tree | c9d730c60365080bfaa3b7f5a7eb3d3b965fe291 | |
parent | 0e877c8fdbc7280efb0237dfa588b8205791dc96 (diff) |
fftools/ffmpeg: Free swresample dictionary during cleanup
Freeing this was forgotten in ad899522.
Fixes #8315 and #8316.
Signed-off-by: Andreas Rheinhardt <[email protected]>
Reviewed-by: Paul B Mahol <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
(cherry picked from commit 6f2a3958cfac135c60b509a61a4fd39432d8f9a9)
Signed-off-by: Andreas Rheinhardt <[email protected]>
-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 00c80fdcbe..abbe8c21fb 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -561,6 +561,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); |