diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-06-14 21:43:36 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-06-17 09:01:26 +0200 |
commit | 71d6551e674c86d07c165439c2bf6613b3892307 (patch) | |
tree | d1489faed845bcfa710066913ad47df1a1054232 | |
parent | 83aa4fc3feec7389ac781fece1e994f2dfd7ebdb (diff) | |
download | ffmpeg-71d6551e674c86d07c165439c2bf6613b3892307.tar.gz |
avconv: use the correct variable in comparison
-rw-r--r-- | avconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2104,7 +2104,7 @@ static int transcode_init(void) if (out_codec) { encoder_name = out_codec->name; out_codec_name = avcodec_descriptor_get(out_codec->id)->name; - if (!strcmp(encoder_name, in_codec_name)) + if (!strcmp(encoder_name, out_codec_name)) encoder_name = "native"; } |