mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-16 04:15:05 +00:00
avconv: print the codecs names in the stream mapping.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
c74b44de08
commit
bc8c50512f
4
avconv.c
4
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");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user