Commit bc8c5051 authored by Nicolas George's avatar Nicolas George Committed by Anton Khirnov

avconv: print the codecs names in the stream mapping.

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent c74b44de
......@@ -2194,6 +2194,10 @@ static int transcode_init(OutputFile *output_files,
ost->sync_ist->st->index);
if (ost->st->stream_copy)
fprintf(stderr, " (copy)");
else
fprintf(stderr, " (%s -> %s)", input_streams[ost->source_index].dec ?
input_streams[ost->source_index].dec->name : "?",
ost->enc ? ost->enc->name : "?");
fprintf(stderr, "\n");
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment