diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-04-04 10:51:53 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-04-09 10:34:18 +0200 |
commit | a4c940c86a46e817eea16d8535db383f9e19c25c (patch) | |
tree | 34184aa49f274d906365e8afedff13db058858f8 /fftools/ffmpeg_mux.c | |
parent | a2892dbe06161452ec6592bcdddd0cbe8b0f6780 (diff) | |
download | ffmpeg-a4c940c86a46e817eea16d8535db383f9e19c25c.tar.gz |
fftools/ffmpeg_filter: move most of -apad logic to the muxer
The decision whether -apad actually does anything is made based on muxer
properties, and so more properly belongs there. Filtering code only
receives the result.
Diffstat (limited to 'fftools/ffmpeg_mux.c')
-rw-r--r-- | fftools/ffmpeg_mux.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fftools/ffmpeg_mux.c b/fftools/ffmpeg_mux.c index 557f08b3a5..6a64cba72d 100644 --- a/fftools/ffmpeg_mux.c +++ b/fftools/ffmpeg_mux.c @@ -815,7 +815,6 @@ static void ost_free(OutputStream **post) av_expr_free(ost->kf.pexpr); av_freep(&ost->logfile_prefix); - av_freep(&ost->apad); av_freep(&ost->attachment_filename); |