From bc8c50512fc8550ae80535390379e00937623e00 Mon Sep 17 00:00:00 2001 From: Nicolas George <nicolas.george@normalesup.org> Date: Sat, 20 Aug 2011 12:40:26 +0200 Subject: avconv: print the codecs names in the stream mapping. Signed-off-by: Anton Khirnov <anton@khirnov.net> --- avconv.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'avconv.c') diff --git a/avconv.c b/avconv.c index 3bad6e0a91..a86fa02eb7 100644 --- a/avconv.c +++ b/avconv.c @@ -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"); } } -- cgit v1.2.3