From 735f9921e912e3c19846f01143d3978b47b02aa6 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Sat, 23 Mar 2013 20:48:53 +0000 Subject: [PATCH] posix comment BUG=none TEST=none Review URL: https://webrtc-codereview.appspot.com/1241004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@618 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- source/convert_argb.cc | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.chromium b/README.chromium index 480e5dd21..a678b67f0 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 617 +Version: 618 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index a3708ac55..42062b779 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 617 +#define LIBYUV_VERSION 618 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/convert_argb.cc b/source/convert_argb.cc index 0e93abe2c..78b508a53 100644 --- a/source/convert_argb.cc +++ b/source/convert_argb.cc @@ -813,7 +813,7 @@ int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2, void (*YUY2ToARGBRow)(const uint8* src_yuy2, uint8* dst_argb, int pix) = YUY2ToARGBRow_C; #if defined(HAS_YUY2TOARGBROW_SSSE3) - // Posix it 16, Windows is 8. + // Posix is 16, Windows is 8. if (TestCpuFlag(kCpuHasSSSE3) && width >= 16 && width <= kMaxStride) { YUY2ToARGBRow = YUY2ToARGBRow_Any_SSSE3; if (IS_ALIGNED(width, 16)) { @@ -866,7 +866,7 @@ int UYVYToARGB(const uint8* src_uyvy, int src_stride_uyvy, void (*UYVYToARGBRow)(const uint8* src_uyvy, uint8* dst_argb, int pix) = UYVYToARGBRow_C; #if defined(HAS_UYVYTOARGBROW_SSSE3) - // Posix it 16, Windows is 8. + // Posix is 16, Windows is 8. if (TestCpuFlag(kCpuHasSSSE3) && width >= 16 && width <= kMaxStride) { UYVYToARGBRow = UYVYToARGBRow_Any_SSSE3; if (IS_ALIGNED(width, 16)) {