diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-04-02 13:58:59 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-04-09 10:34:18 +0200 |
commit | b8e6802023a5e687c40b6565745a225f8e069657 (patch) | |
tree | db30e5f1383bbb4d284bd17ca072937d0ca08c1a /fftools/ffmpeg_mux.c | |
parent | 23c23077fc79f27022f56855080debdba7a00274 (diff) | |
download | ffmpeg-b8e6802023a5e687c40b6565745a225f8e069657.tar.gz |
fftools/ffmpeg_filter: pass sws/swr opts through OutputFilterOptions
Do not read them from OutputStream directly.
Will allow decoupling filtering from encoding in future commits.
Diffstat (limited to 'fftools/ffmpeg_mux.c')
-rw-r--r-- | fftools/ffmpeg_mux.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fftools/ffmpeg_mux.c b/fftools/ffmpeg_mux.c index 253c2e58d4..557f08b3a5 100644 --- a/fftools/ffmpeg_mux.c +++ b/fftools/ffmpeg_mux.c @@ -819,9 +819,6 @@ static void ost_free(OutputStream **post) av_freep(&ost->attachment_filename); - av_dict_free(&ost->sws_dict); - av_dict_free(&ost->swr_opts); - if (ost->enc_ctx) av_freep(&ost->enc_ctx->stats_in); avcodec_free_context(&ost->enc_ctx); |