diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-04-06 07:28:51 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-05-03 21:44:10 +0200 |
commit | 01947f07b81a57fb1e15114b710f6d5ae4f70a11 (patch) | |
tree | 95a9dc0eea38e5f9e5ee37060ab44d46605fb153 | |
parent | 65ed9e7585e86e6c728bc762ac9944b157e39f8d (diff) | |
download | ffmpeg-01947f07b81a57fb1e15114b710f6d5ae4f70a11.tar.gz |
avconv: remove a useless line
Doing anything with that field when we are doing streamcopy (so the
encoder is not opened) should have absolutely no effect.
-rw-r--r-- | avconv.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1135,7 +1135,6 @@ static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *p } write_frame(of->ctx, &opkt, ost); - ost->st->codec->frame_number++; } int guess_input_channel_layout(InputStream *ist) |