summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Paniconi <marpan@google.com>2014-07-30 10:33:35 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-07-30 10:33:35 -0700
commit347c8cf68f32c02ce48ce14ed24a08a596550712 (patch)
tree89a462e04b19b66bddc3914f9b81539c85542a08
parente9935a4ca070c6c7182a44b5807312de1ba6b8a1 (diff)
parentfbaa4b84afeecc6b443f47d329348685e0017d27 (diff)
downloadlibvpx-347c8cf68f32c02ce48ce14ed24a08a596550712.tar
libvpx-347c8cf68f32c02ce48ce14ed24a08a596550712.tar.gz
libvpx-347c8cf68f32c02ce48ce14ed24a08a596550712.tar.bz2
libvpx-347c8cf68f32c02ce48ce14ed24a08a596550712.zip
Merge "Fix to Visual Studio build error."
-rw-r--r--vp8/encoder/onyx_if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index e81c05e6f..298f50f65 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -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,