diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2011-08-20 12:40:26 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-23 16:50:01 +0200 |
commit | bc8c50512fc8550ae80535390379e00937623e00 (patch) | |
tree | df2c38eeaa72c79eb91d1c888f3b78cfd2c4899c /avconv.c | |
parent | c74b44de08ffc2853f872c8a5d31526cdbacfc89 (diff) | |
download | ffmpeg-bc8c50512fc8550ae80535390379e00937623e00.tar.gz |
avconv: print the codecs names in the stream mapping.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'avconv.c')
-rw-r--r-- | avconv.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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"); } } |