]> granicus.if.org Git - libvpx/commitdiff
Fix to Visual Studio build error.
authorMarco Paniconi <marpan@google.com>
Wed, 30 Jul 2014 16:13:11 +0000 (09:13 -0700)
committerMarco Paniconi <marpan@google.com>
Wed, 30 Jul 2014 16:14:56 +0000 (09:14 -0700)
signed/unsigned mismatch from commit: 918011.

Change-Id: I6b9bb3618f8e72ea4cc0e6ba8fb9b13676985ed0

vp8/encoder/onyx_if.c

index e81c05e6f9da097b21319c8b9b206249aa682cd5..298f50f65111e1cdd581897a28e28db9e3106eab 100644 (file)
@@ -616,7 +616,7 @@ static void cyclic_background_refresh(VP8_COMP *cpi, int Q, int lf_adjustment)
 
 #if CONFIG_TEMPORAL_DENOISING
         if (cpi->denoiser.aggressive_mode != 0 &&
-            Q < cpi->denoiser.denoise_pars.qp_thresh) {
+            Q < (int)cpi->denoiser.denoise_pars.qp_thresh) {
           // Under aggressive denoising mode, use segmentation to turn off loop
           // filter below some qp thresh. The loop filter is turned off for all
           // blocks that have been encoded as ZEROMV LAST x frames in a row,