diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-09-27 08:21:48 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-09 17:15:18 +0200 |
commit | 515901fad2ee0f2429d6b457bb4e4f6a5fd98028 (patch) | |
tree | dea9af55d129ba35bc30e17dd935aba2a8f17ce8 | |
parent | 11fdb7e197f0cb8016df9668fc2050bee25e4955 (diff) | |
download | ffmpeg-515901fad2ee0f2429d6b457bb4e4f6a5fd98028.tar.gz |
avconv: remove pointless always true condition
-rw-r--r-- | avconv.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2157,8 +2157,7 @@ static int transcode_init(OutputFile *output_files, break; } /* two pass mode */ - if (ost->encoding_needed && - (codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2))) { + if ((codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2))) { char logfilename[1024]; FILE *f; |