diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-16 06:58:52 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-16 20:24:20 +0200 |
commit | ad42126abcdee921fd7eaf0b8a83f18aa3dc1371 (patch) | |
tree | 8b400de02a655477ce518f9804fdc65220d6bf11 | |
parent | 4f4f33844a7369e5579912cc02f3c5376b1e6872 (diff) | |
download | ffmpeg-ad42126abcdee921fd7eaf0b8a83f18aa3dc1371.tar.gz |
avconv: print stream copy information.
-rw-r--r-- | avconv.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2189,6 +2189,8 @@ static int transcode(AVFormatContext **output_files, fprintf(stderr, " [sync #%d.%d]", ost->sync_ist->file_index, ost->sync_ist->st->index); + if (ost->st->stream_copy) + fprintf(stderr, " (copy)"); fprintf(stderr, "\n"); } } |