shithub: libvpx

Download patch

ref: 73b11ec8764090f26a341f290043048e82ce1e91
parent: 57adf3d57347e3d9f3cf8f9469228cf862a8b1f2
author: James Zern <jzern@google.com>
date: Thu Jun 23 19:29:26 EDT 2016

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

--- a/test/datarate_test.cc
+++ b/test/datarate_test.cc
@@ -135,7 +135,7 @@
   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_;