From: James Zern Date: Fri, 24 Jun 2016 06:29:26 +0000 (-0700) Subject: datarate_test,DatarateTestLarge: normalize bits type X-Git-Tag: v1.6.0~5^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73b11ec8764090f26a341f290043048e82ce1e91;p=libvpx datarate_test,DatarateTestLarge: normalize bits type quiets a msvc warning: conversion from 'const int64_t' to 'size_t', possible loss of data Change-Id: I90a2ac6b040454dac7434fc9b63b98c42ea127b1 --- diff --git a/test/datarate_test.cc b/test/datarate_test.cc index 2f1db9c64..220cbf3a3 100644 --- a/test/datarate_test.cc +++ b/test/datarate_test.cc @@ -135,7 +135,7 @@ class DatarateTestLarge : public ::libvpx_test::EncoderTest, double duration_; double file_datarate_; double effective_datarate_; - size_t bits_in_last_frame_; + int64_t bits_in_last_frame_; int denoiser_on_; int denoiser_offon_test_; int denoiser_offon_period_;