diff --git a/README.chromium b/README.chromium index bffdf1693..2547b02a1 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 841 +Version: 842 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 6bee35257..0bda4467c 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 841 +#define LIBYUV_VERSION 842 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/convert.cc b/source/convert.cc index fd7b0c9b4..e79ff3c0a 100644 --- a/source/convert.cc +++ b/source/convert.cc @@ -381,8 +381,8 @@ static int X420ToI420(const uint8* src_y, } // Coalesce rows. if (src_stride_uv == halfwidth * 2 && - dst_stride_u * 2 == halfwidth && - dst_stride_v * 2 == halfwidth) { + dst_stride_u == halfwidth && + dst_stride_v == halfwidth) { halfwidth *= halfheight; halfheight = 1; src_stride_uv = dst_stride_u = dst_stride_v = 0;