From: Yaowu Xu Date: Tue, 18 Feb 2014 03:03:01 +0000 (-0800) Subject: Removed unnecessary type cast X-Git-Tag: v1.4.0~2339 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4ce20c53010df9d4393f0d5251f939519b9dedf;p=libvpx Removed unnecessary type cast Change-Id: I0f2d5155ec042e9b5cbe9a9d6b186b121ed7737f --- diff --git a/vp9/encoder/vp9_onyx_if.c b/vp9/encoder/vp9_onyx_if.c index 23274fc8a..887480a93 100644 --- a/vp9/encoder/vp9_onyx_if.c +++ b/vp9/encoder/vp9_onyx_if.c @@ -2221,7 +2221,7 @@ static void calc_psnr(const YV12_BUFFER_CONFIG *a, const YV12_BUFFER_CONFIG *b, psnr->samples[1 + i] = samples; psnr->psnr[1 + i] = vp9_mse2psnr(samples, 255.0, (double) sse); - total_sse += (uint64_t)sse; + total_sse += sse; total_samples += samples; }