summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-01-26 10:54:06 -0800
committerYaowu Xu <yaowu@google.com>2015-01-26 10:54:06 -0800
commit6d16f6c14c3d162217e6d90caae26d7458fe1029 (patch)
treec1a55cab263fa45cc36f52619218bdb4927eab00 /vp9/encoder
parent643c75d90b71af8fc636367cb8552b3ae9ee141d (diff)
downloadlibvpx-6d16f6c14c3d162217e6d90caae26d7458fe1029.tar
libvpx-6d16f6c14c3d162217e6d90caae26d7458fe1029.tar.gz
libvpx-6d16f6c14c3d162217e6d90caae26d7458fe1029.tar.bz2
libvpx-6d16f6c14c3d162217e6d90caae26d7458fe1029.zip
Fix MSVC warnings on conversion from int64 to int
Change-Id: I7e96509ffa36899fcd2935749927a1e8aac8d025
Diffstat (limited to 'vp9/encoder')
-rw-r--r--vp9/encoder/vp9_encodeframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c
index e142a3181..4bcb65816 100644
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -402,7 +402,7 @@ static int set_vt_partitioning(VP9_COMP *cpi,
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;