From 9ce2f2b133242a8e2291281bf5ffc63f43927a35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Fri, 8 Nov 2002 20:33:46 +0000 Subject: [PATCH] =?UTF-8?q?fixes=20the=20frame=20number=20counter=20for=20?= =?UTF-8?q?-vcodec=20copy=20patch=20by=20(mru=20at=20users=20dot=20sourcef?= =?UTF-8?q?orge.net=20(M=C3=A5ns=20Rullg=C3=A5rd))?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 1176 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ffmpeg.c b/ffmpeg.c index 59999b8c6f..af0a3cc78c 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1292,6 +1292,7 @@ static int av_encode(AVFormatContext **output_files, /* force the input stream PTS */ av_write_frame(os, ost->index, data_buf, data_size); ost->st->codec.frame_number++; + ost->frame_number++; } } }