mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffmpeg.c: allow using negative file indices to disable metadata copying
Originally committed as revision 25706 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1e80a0eaa4
commit
7b3937360e
2
ffmpeg.c
2
ffmpeg.c
@ -2346,6 +2346,8 @@ static int transcode(AVFormatContext **output_files,
|
||||
|
||||
int out_file_index = meta_data_maps[i][0].file;
|
||||
int in_file_index = meta_data_maps[i][1].file;
|
||||
if (in_file_index < 0 || out_file_index < 0)
|
||||
continue;
|
||||
METADATA_CHECK_INDEX(out_file_index, nb_output_files, "output file")
|
||||
METADATA_CHECK_INDEX(in_file_index, nb_input_files, "input file")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user