shithub: libvpx

Download patch

ref: d987dc4fdb0507903f7b58a879ac32645c6513d1
parent: e7ef8ecefd4c7747be7d61ddc6c86633e5e47bc0
parent: 6d16f6c14c3d162217e6d90caae26d7458fe1029
author: Yaowu Xu <yaowu@google.com>
date: Mon Jan 26 11:52:30 EST 2015

Merge "Fix MSVC warnings on conversion from int64 to int"

--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -402,7 +402,7 @@
                                BLOCK_SIZE bsize,
                                int mi_row,
                                int mi_col,
-                               int threshold,
+                               int64_t threshold,
                                BLOCK_SIZE bsize_min) {
   VP9_COMMON * const cm = &cpi->common;
   variance_node vt;
--