Browse Source

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>
tags/n0.9
Michael Niedermayer 14 years ago
parent
commit
ef24426599
1 changed files with 5 additions and 6 deletions
  1. +5
    -6
      ffmpeg.c

+ 5
- 6
ffmpeg.c View File

@@ -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");
}
}


Loading…
Cancel
Save