This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 89e128224e856591f61369fd5afc4989a5d95583 Author: Michael Niedermayer <[email protected]> AuthorDate: Fri May 1 17:23:15 2026 +0200 Commit: michaelni <[email protected]> CommitDate: Sun May 3 13:19:18 2026 +0000 fftools/ffmpeg_opt: fix mismatching negative maps Fixes: -f lavfi -i testsrc2=size=128x128:rate=1:d=1 -filter_complex '[0:v]scale=64:64[vout]' -map '[vout]' -map -0:v -f null - Previously -0:v matched [vout] apparently Signed-off-by: Michael Niedermayer <[email protected]> --- fftools/ffmpeg_opt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c index 55268cd0a5..28e6cee741 100644 --- a/fftools/ffmpeg_opt.c +++ b/fftools/ffmpeg_opt.c @@ -645,6 +645,7 @@ static int opt_map(void *optctx, const char *opt, const char *arg) for (i = 0; i < o->nb_stream_maps; i++) { m = &o->stream_maps[i]; if (file_idx == m->file_index && + !m->linklabel && m->stream_index >= 0 && m->stream_index < input_files[m->file_index]->nb_streams && stream_specifier_match(&ss, _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
