roll chromium deps to a known good release (lkgr) and fix indent lint issue.

BUG=none
TEST=none
Review URL: https://webrtc-codereview.appspot.com/1321008

git-svn-id: http://libyuv.googlecode.com/svn/trunk@677 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
fbarchard@google.com 2013-04-23 21:35:07 +00:00
parent 50c33eb601
commit 77b0af36e4
4 changed files with 4 additions and 4 deletions

2
DEPS
View File

@ -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

View File

@ -1,6 +1,6 @@
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 676
Version: 677
License File: LICENSE
Description:

View File

@ -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

View File

@ -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);