diff --git a/README.chromium b/README.chromium index 114352369..5d58be08e 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 984 +Version: 985 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index ef9001336..720111a72 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 984 +#define LIBYUV_VERSION 985 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/scale_argb.cc b/source/scale_argb.cc index a248e2e1f..e339cd7c7 100644 --- a/source/scale_argb.cc +++ b/source/scale_argb.cc @@ -186,7 +186,7 @@ static void ScaleARGBBilinearDown(int src_width, int src_height, if (xr > src_width) { xr = src_width; } - clip_src_width = (xr - xl) * 4; // Width aligned to 4. + clip_src_width = (int)(xr - xl) * 4; // Width aligned to 4. src_argb += xl * 4; x -= (int)(xl << 16); #if defined(HAS_INTERPOLATEROW_SSE2)