From d27ae620bce34ebb4a78502ad7b10d14f491b216 Mon Sep 17 00:00:00 2001 From: Paul Wilkins Date: Fri, 11 Jan 2013 19:41:39 +0000 Subject: Remove INT64_MAX references. Replace INT64_MAX references with LLONG_MAX for windows build. Change-Id: Ib8b45c1e9c15c043b2f54c27ed83b8682b2be34f --- vp9/encoder/vp9_rdopt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vp9/encoder') diff --git a/vp9/encoder/vp9_rdopt.c b/vp9/encoder/vp9_rdopt.c index 7d2c489d5..a82670b6e 100644 --- a/vp9/encoder/vp9_rdopt.c +++ b/vp9/encoder/vp9_rdopt.c @@ -1362,7 +1362,7 @@ static int64_t rd_pick_intra_sb64y_mode(VP9_COMP *cpi, MB_PREDICTION_MODE UNINITIALIZED_IS_SAFE(mode_selected); int this_rate, this_rate_tokenonly; int this_distortion, s; - int64_t best_rd = INT64_MAX, this_rd; + int64_t best_rd = LLONG_MAX, this_rd; /* Y Search for 32x32 intra prediction mode */ for (mode = DC_PRED; mode <= TM_PRED; mode++) { @@ -2191,7 +2191,7 @@ static int64_t rd_pick_intra_sb64uv_mode(VP9_COMP *cpi, int *skippable) { MB_PREDICTION_MODE mode; MB_PREDICTION_MODE UNINITIALIZED_IS_SAFE(mode_selected); - int64_t best_rd = INT64_MAX, this_rd; + int64_t best_rd = LLONG_MAX, this_rd; int this_rate_tokenonly, this_rate; int this_distortion, s; -- cgit v1.2.3