You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avconv: make negative mappings disable only streams from the specified file
This commit is contained in:
3
avconv.c
3
avconv.c
@@ -2638,7 +2638,8 @@ static int opt_map(OptionsContext *o, const char *opt, const char *arg)
|
|||||||
/* disable some already defined maps */
|
/* disable some already defined maps */
|
||||||
for (i = 0; i < o->nb_stream_maps; i++) {
|
for (i = 0; i < o->nb_stream_maps; i++) {
|
||||||
m = &o->stream_maps[i];
|
m = &o->stream_maps[i];
|
||||||
if (check_stream_specifier(input_files[m->file_index].ctx,
|
if (file_idx == m->file_index &&
|
||||||
|
check_stream_specifier(input_files[m->file_index].ctx,
|
||||||
input_files[m->file_index].ctx->streams[m->stream_index],
|
input_files[m->file_index].ctx->streams[m->stream_index],
|
||||||
*p == ':' ? p + 1 : p) > 0)
|
*p == ':' ? p + 1 : p) > 0)
|
||||||
m->disabled = 1;
|
m->disabled = 1;
|
||||||
|
Reference in New Issue
Block a user