diff --git a/README.chromium b/README.chromium index 4c60e7d8a..37bb847e5 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 897 +Version: 898 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 06836767a..d8037ff83 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 897 +#define LIBYUV_VERSION 898 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/scale_argb.cc b/source/scale_argb.cc index 8d051b333..c19b9e9be 100644 --- a/source/scale_argb.cc +++ b/source/scale_argb.cc @@ -589,12 +589,12 @@ static void ScaleARGB(const uint8* src, int src_stride, src_stride = -src_stride; } // Initial source x/y coordinate and step values as 16.16 fixed point. - int dx = 0; - int dy = 0; int x = 0; int y = 0; + int dx = 0; + int dy = 0; ScaleSlope(src_width, src_height, dst_width, dst_height, filtering, - &dx, &dy, &x, &y); + &x, &y, &dx, &dy); if (clip_x) { x += clip_x * dx; dst += clip_x * 4;