1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

ffmpeg: switch stream mapping print code to qatars variant

Author of the lines of code is probably Nicolas and or Anton
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-08-30 16:33:20 +02:00
parent 10c3b03380
commit ef24426599

View File

@ -2241,13 +2241,12 @@ static int transcode_init(OutputFile *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) if (ost->st->stream_copy)
fprintf(stderr, ": %s -> %s", fprintf(stderr, " (copy)");
input_streams[ost->source_index].dec ?
input_streams[ost->source_index].dec->name : "?",
ost->enc ? ost->enc->name : "?");
else else
fprintf(stderr, ": copy"); 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"); fprintf(stderr, "\n");
} }
} }