From caba6c10fb89516f203ecf8a0bcfee38242d8671 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Sun, 16 Sep 2012 23:45:55 +0000 Subject: [PATCH] Small fix for ABGR BUG=78 TESTED=unittest Review URL: https://webrtc-codereview.appspot.com/798009 git-svn-id: http://libyuv.googlecode.com/svn/trunk@356 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- source/row_common.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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;