shithub: libvpx

Download patch

ref: bd4501fe2815f790000bb3f5377fc251b191d6a8
parent: 4326cffa65065e30c36b26d8dc6b93237d45a08d
author: James Zern <jzern@google.com>
date: Thu Jan 21 09:07:33 EST 2016

vp9_aq_cyclicrefresh: fix double->float warning

Change-Id: I39d3a150de9a77967a4e25ca89d2eda51fd18d47

--- a/vp9/encoder/vp9_aq_cyclicrefresh.c
+++ b/vp9/encoder/vp9_aq_cyclicrefresh.c
@@ -69,7 +69,7 @@
   // with number of seg blocks, so compare available bits to number of blocks.
   // Average bits available per frame = avg_frame_bandwidth
   // Number of (8x8) blocks in frame = mi_rows * mi_cols;
-  const float factor = 0.15;
+  const float factor = 0.15f;
   const int number_blocks = cm->mi_rows  * cm->mi_cols;
   // The condition below corresponds to turning off at target bitrates:
   // (at 30fps), ~8kbps for CIF, 20kbps for VGA, 60kps for HD/720p.