mirror of https://git.ffmpeg.org/ffmpeg.git
avconv: Report the codec and the encoder separately
Bug-Id: 694
This commit is contained in:
parent
95b7fa1729
commit
39ec5e1cf8
30
avconv.c
30
avconv.c
|
@ -2081,10 +2081,32 @@ static int transcode_init(void)
|
||||||
ost->sync_ist->st->index);
|
ost->sync_ist->st->index);
|
||||||
if (ost->stream_copy)
|
if (ost->stream_copy)
|
||||||
av_log(NULL, AV_LOG_INFO, " (copy)");
|
av_log(NULL, AV_LOG_INFO, " (copy)");
|
||||||
else
|
else {
|
||||||
av_log(NULL, AV_LOG_INFO, " (%s -> %s)", input_streams[ost->source_index]->dec ?
|
const AVCodec *in_codec = input_streams[ost->source_index]->dec;
|
||||||
input_streams[ost->source_index]->dec->name : "?",
|
const AVCodec *out_codec = ost->enc;
|
||||||
ost->enc ? ost->enc->name : "?");
|
const char *decoder_name = "?";
|
||||||
|
const char *in_codec_name = "?";
|
||||||
|
const char *encoder_name = "?";
|
||||||
|
const char *out_codec_name = "?";
|
||||||
|
|
||||||
|
if (in_codec) {
|
||||||
|
decoder_name = in_codec->name;
|
||||||
|
in_codec_name = avcodec_descriptor_get(in_codec->id)->name;
|
||||||
|
if (!strcmp(decoder_name, in_codec_name))
|
||||||
|
decoder_name = "native";
|
||||||
|
}
|
||||||
|
|
||||||
|
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))
|
||||||
|
encoder_name = "native";
|
||||||
|
}
|
||||||
|
|
||||||
|
av_log(NULL, AV_LOG_INFO, " (%s (%s) -> %s (%s))",
|
||||||
|
in_codec_name, decoder_name,
|
||||||
|
out_codec_name, encoder_name);
|
||||||
|
}
|
||||||
av_log(NULL, AV_LOG_INFO, "\n");
|
av_log(NULL, AV_LOG_INFO, "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue