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)) {