diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-04-18 14:45:42 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-04-24 16:56:06 +0200 |
commit | ea4c42779b42a27e088f060db1fd7d768f3ce598 (patch) | |
tree | f5bfc9ba33aef23185a9a325045ce797ee75112f | |
parent | 8b56480652c83603a877c8e72c20c30c7de5b9cf (diff) | |
download | ffmpeg-ea4c42779b42a27e088f060db1fd7d768f3ce598.tar.gz |
fftools/ffmpeg_mux_init: drop a redundant assignment
OutputFilter.format is initialized in ofilter_alloc().
-rw-r--r-- | fftools/ffmpeg_mux_init.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c index ad5a451581..1a63908074 100644 --- a/fftools/ffmpeg_mux_init.c +++ b/fftools/ffmpeg_mux_init.c @@ -1259,7 +1259,6 @@ static void init_output_filter(OutputFilter *ofilter, const OptionsContext *o, ost->filter = ofilter; ofilter->ost = ost; - ofilter->format = -1; if (!ost->enc_ctx) { av_log(ost, AV_LOG_ERROR, "Streamcopy requested for output stream fed " |