summaryrefslogtreecommitdiff
path: root/libavformat/utils.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 /libavformat/utils.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 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 55ed07414d..4c07a5389c 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1472,8 +1472,8 @@ static void av_update_stream_timings(AVFormatContext *ic)
int i;
AVStream *st;
- start_time = MAXINT64;
- end_time = MININT64;
+ start_time = INT64_MAX;
+ end_time = INT64_MIN;
for(i = 0;i < ic->nb_streams; i++) {
st = ic->streams[i];
if (st->start_time != AV_NOPTS_VALUE) {
@@ -1488,9 +1488,9 @@ static void av_update_stream_timings(AVFormatContext *ic)
}
}
}
- if (start_time != MAXINT64) {
+ if (start_time != INT64_MAX) {
ic->start_time = start_time;
- if (end_time != MININT64) {
+ if (end_time != INT64_MIN) {
ic->duration = end_time - start_time;
if (ic->file_size > 0) {
/* compute the bit rate */