summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-08-30 16:33:20 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-08-30 18:08:35 +0200
commitef24426599525e8165249785ae93df6dbe2e06d9 (patch)
tree254c4ac79d3a1497f3a067bbd931a6a28830cb65 /ffmpeg.c
parent10c3b033806bfbbe35fe3d1606aaacf85f98596f (diff)
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>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 246f9485b7..24cff11ec0 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2241,13 +2241,12 @@ static int transcode_init(OutputFile *output_files,
fprintf(stderr, " [sync #%d.%d]",
ost->sync_ist->file_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 : "?");
+ if (ost->st->stream_copy)
+ fprintf(stderr, " (copy)");
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");
}
}