mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-16 03:50:05 +01:00
ffmpeg: print the codecs names in the stream mapping.
This commit is contained in:
7
ffmpeg.c
7
ffmpeg.c
@@ -2623,6 +2623,13 @@ static int transcode(AVFormatContext **output_files,
|
|||||||
fprintf(stderr, " [sync #%d.%d]",
|
fprintf(stderr, " [sync #%d.%d]",
|
||||||
ost->sync_ist->file_index,
|
ost->sync_ist->file_index,
|
||||||
ost->sync_ist->st->index);
|
ost->sync_ist->st->index);
|
||||||
|
if(ost->encoding_needed)
|
||||||
|
fprintf(stderr, ": %s -> %s",
|
||||||
|
input_streams[ost->source_index].dec ?
|
||||||
|
input_streams[ost->source_index].dec->name : "?",
|
||||||
|
ost->enc ? ost->enc->name : "?");
|
||||||
|
else
|
||||||
|
fprintf(stderr, ": copy");
|
||||||
fprintf(stderr, "\n");
|
fprintf(stderr, "\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user