diff --git a/README.chromium b/README.chromium index b880dbbac..037cb37d1 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 678 +Version: 680 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index cec4bab4c..27bc54153 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 678 +#define LIBYUV_VERSION 680 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_common.cc b/source/row_common.cc index 183555b6d..43f79a329 100644 --- a/source/row_common.cc +++ b/source/row_common.cc @@ -909,7 +909,7 @@ void I444ToARGBRow_C(const uint8* src_y, uint8 v = (src_v[0] + src_v[1] + 1) >> 1; YuvPixel(src_y[0], u, v, rgb_buf + 0, rgb_buf + 1, rgb_buf + 2); rgb_buf[3] = 255; - YuvPixel(src_y[1], u, v, rgb_buf + 3, rgb_buf + 4, rgb_buf + 5); + YuvPixel(src_y[1], u, v, rgb_buf + 4, rgb_buf + 5, rgb_buf + 6); rgb_buf[7] = 255; src_y += 2; src_u += 2;