diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-01 05:09:20 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-02 09:02:11 +0200 |
commit | d9cd192dddb459e85a243dd0349f32e9a4f7a9d8 (patch) | |
tree | b05abc5a7015564973149d7575f497731d599b56 | |
parent | 771d8937afa226ec7a23a6f7ac23e65aa42507c9 (diff) | |
download | ffmpeg-d9cd192dddb459e85a243dd0349f32e9a4f7a9d8.tar.gz |
fftools/ffmpeg_opt: Fix copyinkf
Broken in 9c2b800203a5a8f3d83f3b8f28e8c50d28186b39.
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | fftools/ffmpeg_opt.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c index d7049069f4..a96bcf9b8a 100644 --- a/fftools/ffmpeg_opt.c +++ b/fftools/ffmpeg_opt.c @@ -1748,6 +1748,9 @@ static OutputStream *new_output_stream(OptionsContext *o, AVFormatContext *oc, e ost->last_mux_dts = AV_NOPTS_VALUE; ost->last_filter_pts = AV_NOPTS_VALUE; + MATCH_PER_STREAM_OPT(copy_initial_nonkeyframes, i, + ost->copy_initial_nonkeyframes, oc, st); + return ost; } |