diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-09-05 14:11:13 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-11 17:30:05 +0200 |
commit | f39ecc79aa769677777fc3d6b8de6440bcda3c3f (patch) | |
tree | 9ff731042cc3b46ff88ff5bce0d23600e650536a /avconv.c | |
parent | 172efad7c7eb6f2ca94d258bc2f0a6c52d3b5ef4 (diff) | |
download | ffmpeg-f39ecc79aa769677777fc3d6b8de6440bcda3c3f.tar.gz |
avconv: fix inverted variable
Diffstat (limited to 'avconv.c')
-rw-r--r-- | avconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3489,7 +3489,7 @@ static void opt_output_file(void *optctx, const char *filename) } if (o->chapters_input_file >= 0) copy_chapters(&input_files[o->chapters_input_file], &output_files[nb_output_files - 1], - o->metadata_chapters_manual); + !o->metadata_chapters_manual); /* copy metadata */ for (i = 0; i < o->nb_meta_data_maps; i++) { |