avconv: use the correct variable in comparison

pull/76/merge
Anton Khirnov 11 years ago
parent 83aa4fc3fe
commit 71d6551e67
  1. 2
      avconv.c

@ -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";
}

Loading…
Cancel
Save