summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-12-07 00:47:37 +0000
committerMåns Rullgård <mans@mansr.com>2006-12-07 00:47:37 +0000
commitf27a726809bf8e5e1fa24638bbd6e04afa1fcd36 (patch)
tree36adc681d09ee88fcbade2209896ff0b61b0bce9 /ffmpeg.c
parent8da9266ceaeb233a757d5ad8772bdf93601eec33 (diff)
use standard INT64_MAX instead of MAXINT64 (and MIN)
Originally committed as revision 7241 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 6c3a65b61c..ae9af51588 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -881,7 +881,7 @@ static void do_video_stats(AVFormatContext *os, AVOutputStream *ost,
}
}
- ti = MAXINT64;
+ ti = INT64_MAX;
enc = ost->st->codec;
if (enc->codec_type == CODEC_TYPE_VIDEO) {
frame_number = ost->frame_number;