[FFmpeg-cvslog] avconv: print the codecs names in the stream mapping.
Nicolas George
git at videolan.org
Tue Aug 23 18:44:28 CEST 2011
ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Sat Aug 20 12:40:26 2011 +0200| [bc8c50512fc8550ae80535390379e00937623e00] | committer: Anton Khirnov
avconv: print the codecs names in the stream mapping.
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bc8c50512fc8550ae80535390379e00937623e00
---
avconv.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/avconv.c b/avconv.c
index 3bad6e0..a86fa02 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");
}
}
More information about the ffmpeg-cvslog
mailing list