diff --git a/DEPS b/DEPS index 5f51d176d..f33260bee 100644 --- a/DEPS +++ b/DEPS @@ -13,7 +13,7 @@ vars = { "googlecode_url": "http://%s.googlecode.com/svn", "chromium_trunk" : "http://src.chromium.org/svn/trunk", # chrome://version/ for revision of canary Chrome. - "chromium_revision": "195633", + "chromium_revision": "195751", } # NOTE: Prefer revision numbers to tags for svn deps. Use http rather than diff --git a/README.chromium b/README.chromium index 1839088af..fd0e2da95 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 676 +Version: 677 License File: LICENSE Description: diff --git a/include/libyuv/version.h b/include/libyuv/version.h index dba6f784c..8ccebf1a4 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 676 +#define LIBYUV_VERSION 677 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_common.cc b/source/row_common.cc index 9b37cb5f9..183555b6d 100644 --- a/source/row_common.cc +++ b/source/row_common.cc @@ -1122,7 +1122,7 @@ void I411ToARGBRow_C(const uint8* src_y, int width) { for (int x = 0; x < width - 3; x += 4) { YuvPixel(src_y[0], src_u[0], src_v[0], - rgb_buf + 0, rgb_buf + 1, rgb_buf + 2); + rgb_buf + 0, rgb_buf + 1, rgb_buf + 2); rgb_buf[3] = 255; YuvPixel(src_y[1], src_u[0], src_v[0], rgb_buf + 4, rgb_buf + 5, rgb_buf + 6);