diff options
author | Måns Rullgård <mans@mansr.com> | 2006-12-07 00:47:37 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-12-07 00:47:37 +0000 |
commit | f27a726809bf8e5e1fa24638bbd6e04afa1fcd36 (patch) | |
tree | 36adc681d09ee88fcbade2209896ff0b61b0bce9 /ffmpeg.c | |
parent | 8da9266ceaeb233a757d5ad8772bdf93601eec33 (diff) | |
download | ffmpeg-f27a726809bf8e5e1fa24638bbd6e04afa1fcd36.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |