shithub: libvpx

Download patch

ref: fbaa4b84afeecc6b443f47d329348685e0017d27
parent: d6cf6eb570e8c458d89b5be728d35135dc6e2e08
author: Marco Paniconi <[email protected]>
date: Wed Jul 30 05:13:11 EDT 2014

Fix to Visual Studio build error.

signed/unsigned mismatch from commit: 918011.

Change-Id: I6b9bb3618f8e72ea4cc0e6ba8fb9b13676985ed0

--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -616,7 +616,7 @@
 
 #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,