[FFmpeg-cvslog] lavf: fix the comparison in an overflow check

Anton Khirnov git at videolan.org
Sun Sep 8 12:30:16 CEST 2013


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed Sep  4 08:55:08 2013 +0200| [26f027fba1c5ab482fa2488fbe0fa36c8bb33b69] | committer: Luca Barbato

lavf: fix the comparison in an overflow check

CC: libav-stable at libav.org

Signed-off-by: Luca Barbato <lu_zero at gentoo.org>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=26f027fba1c5ab482fa2488fbe0fa36c8bb33b69
---

 libavformat/utils.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index 3644bcd..3065c71 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1758,7 +1758,7 @@ static void estimate_timings_from_bit_rate(AVFormatContext *ic)
         for(i=0;i<ic->nb_streams;i++) {
             st = ic->streams[i];
             if (st->codec->bit_rate > 0) {
-                if (INT_MAX - st->codec->bit_rate > bit_rate) {
+                if (INT_MAX - st->codec->bit_rate < bit_rate) {
                     bit_rate = 0;
                     break;
                 }



More information about the ffmpeg-cvslog mailing list