Commit efc5d9b9 authored by fbarchard@google.com's avatar fbarchard@google.com

Warning fix for implicite cast in scaling from int64 to int.

BUG=none
TESTED=local visual c build
R=tpsiaki@google.com

Review URL: https://webrtc-codereview.appspot.com/10169004

git-svn-id: http://libyuv.googlecode.com/svn/trunk@985 16f28f9a-4ce2-e073-06de-1de4eb20be90
parent 398de7d0
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 984
Version: 985
License: BSD
License File: LICENSE
......
......@@ -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
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment