]> granicus.if.org Git - libvpx/commitdiff
vp9: Fix the clang warning of unsigned int type.
authorjackychen <jackychen@google.com>
Wed, 20 Jul 2016 22:58:35 +0000 (15:58 -0700)
committerjackychen <jackychen@google.com>
Wed, 20 Jul 2016 22:58:35 +0000 (15:58 -0700)
Change-Id: I6308db16bd626fa5943925471e9171f567669350

vp9/encoder/vp9_ratectrl.c

index fbad7d20ebbb4944e7af11de6bacb8de57de32cf..939916fd0c3aa12ba7d59ffc2d6cc99d27ab711d 100644 (file)
@@ -2120,7 +2120,7 @@ void adjust_gf_boost_lag_one_pass_vbr(VP9_COMP *cpi, uint64_t avg_sad_current) {
   double rate_err = 1.0;
   // Get measure of complexity over the future frames, and get the first
   // future frame with high_source_sad/scene-change.
-  int tot_frames = vp9_lookahead_depth(cpi->lookahead) - 1;
+  int tot_frames = (int)vp9_lookahead_depth(cpi->lookahead) - 1;
   for (frame = tot_frames; frame >= 1; --frame) {
     const int lagframe_idx = tot_frames - frame + 1;
     uint64_t reference_sad = rc->avg_source_sad[0];
@@ -2254,8 +2254,8 @@ void vp9_avg_source_sad(VP9_COMP *cpi) {
     }
     if (cpi->oxcf.lag_in_frames > 0) {
       frames_to_buffer = (cm->current_video_frame == 1) ?
-          vp9_lookahead_depth(cpi->lookahead) - 1: 2;
-      start_frame = vp9_lookahead_depth(cpi->lookahead) - 1;
+          (int)vp9_lookahead_depth(cpi->lookahead) - 1: 2;
+      start_frame = (int)vp9_lookahead_depth(cpi->lookahead) - 1;
       for (frame = 0; frame < frames_to_buffer; ++frame) {
         const int lagframe_idx = start_frame - frame;
         if (lagframe_idx >= 0) {