]> granicus.if.org Git - libvpx/commitdiff
vp9: Fix to pick_filter_level for highbitdepth build.
authorMarco <marpan@google.com>
Fri, 27 Jan 2017 18:42:29 +0000 (10:42 -0800)
committerMarco <marpan@google.com>
Fri, 27 Jan 2017 18:44:07 +0000 (10:44 -0800)
Change-Id: I53b3fa8bfc0a0717eb1b730c29f2b70060b1b1b7

vp9/encoder/vp9_picklpf.c

index 6fc7cd1e3cf3edd67a67850ee25a87c181728514..c7e0c9ad38ac73fb4c9f18691d13e46fe2279fc8 100644 (file)
@@ -180,11 +180,11 @@ void vp9_pick_filter_level(const YV12_BUFFER_CONFIG *sd, VP9_COMP *cpi,
     }
 #else
     int filt_guess = ROUND_POWER_OF_TWO(q * 20723 + 1015158, 18);
+#endif  // CONFIG_VP9_HIGHBITDEPTH
     if (cpi->oxcf.pass == 0 && cpi->oxcf.rc_mode == VPX_CBR &&
         cpi->oxcf.content != VP9E_CONTENT_SCREEN && cm->frame_type != KEY_FRAME)
       filt_guess = 5 * filt_guess >> 3;
 
-#endif  // CONFIG_VP9_HIGHBITDEPTH
     if (cm->frame_type == KEY_FRAME) filt_guess -= 4;
     lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level);
   } else {