diff --git a/README.chromium b/README.chromium index 98c9ec143..e28b5cf58 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 355 +Version: 356 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 49943598a..41bbe277d 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 355 +#define LIBYUV_VERSION 356 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_common.cc b/source/row_common.cc index 2c04bd3a9..e6b1204bf 100644 --- a/source/row_common.cc +++ b/source/row_common.cc @@ -575,7 +575,7 @@ void I422ToABGRRow_C(const uint8* y_buf, int width) { for (int x = 0; x < width - 1; x += 2) { YuvPixel(y_buf[0], u_buf[0], v_buf[0], rgb_buf + 0, 24, 0, 8, 16); - YuvPixel(y_buf[1], u_buf[0], v_buf[0], rgb_buf + 4, 0, 8, 16, 24); + YuvPixel(y_buf[1], u_buf[0], v_buf[0], rgb_buf + 4, 24, 0, 8, 16); y_buf += 2; u_buf += 1; v_buf += 1;