[FFmpeg-cvslog] ffmpeg: make max frames work again, after merge
Michael Niedermayer
git at videolan.org
Tue Apr 17 04:51:59 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Apr 17 03:54:49 2012 +0200| [788a60d9d6ad2b1fb3b6f88baf668e65724a2d9f] | committer: Michael Niedermayer
ffmpeg: make max frames work again, after merge
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=788a60d9d6ad2b1fb3b6f88baf668e65724a2d9f
---
ffmpeg.c | 2 +-
tests/ref/fate/adpcm-ea-tqi | 1 -
2 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/ffmpeg.c b/ffmpeg.c
index 6413279..a92d534 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -3440,7 +3440,7 @@ static int transcode(void)
if (ost->is_past_recording_time ||
(os->pb && avio_tell(os->pb) >= of->limit_filesize))
continue;
- if (ost->frame_number > ost->max_frames) {
+ if (ost->frame_number >= ost->max_frames) {
int j;
for (j = 0; j < of->ctx->nb_streams; j++)
output_streams[of->ost_index + j]->is_past_recording_time = 1;
diff --git a/tests/ref/fate/adpcm-ea-tqi b/tests/ref/fate/adpcm-ea-tqi
index fc6fe14..5c64661 100644
--- a/tests/ref/fate/adpcm-ea-tqi
+++ b/tests/ref/fate/adpcm-ea-tqi
@@ -49,5 +49,4 @@
0, 23, 23, 1, 115200, 0xf89d56c3
1, 33824, 33824, 1456, 5824, 0xefe4c365
0, 24, 24, 1, 115200, 0x65fd5e60
-1, 35280, 35280, 1484, 5936, 0x2174304d
0, 25, 25, 1, 115200, 0x0c256424
More information about the ffmpeg-cvslog
mailing list