mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-07 17:26:49 +08:00
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:
parent
50c33eb601
commit
77b0af36e4
2
DEPS
2
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
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
Name: libyuv
|
||||
URL: http://code.google.com/p/libyuv/
|
||||
Version: 676
|
||||
Version: 677
|
||||
License File: LICENSE
|
||||
|
||||
Description:
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user