diff --git a/README.chromium b/README.chromium index ea7b076b9..a0b7a73e5 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 506 +Version: 507 License: BSD License File: LICENSE diff --git a/include/libyuv/row.h b/include/libyuv/row.h index 2435138ec..3a9223e52 100644 --- a/include/libyuv/row.h +++ b/include/libyuv/row.h @@ -1271,4 +1271,3 @@ void ARGBInterpolateRow_NEON(uint8* dst_argb, const uint8* src_argb, #endif #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT - diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 90da7968c..9d9a1de6f 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 506 +#define LIBYUV_VERSION 507 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/convert_from.cc b/source/convert_from.cc index 549af8564..389b5394a 100644 --- a/source/convert_from.cc +++ b/source/convert_from.cc @@ -181,12 +181,12 @@ int I420ToI411(const uint8* src_y, int src_stride_y, // Resample U plane from 1/2 width, 1/2 height to 1/4 width, 1x height ScalePlane(src_u, src_stride_u, halfwidth, halfheight, - dst_u, dst_stride_u,quarterwidth, height, + dst_u, dst_stride_u, quarterwidth, height, kFilterNone); // Resample V plane. ScalePlane(src_v, src_stride_v, halfwidth, halfheight, - dst_v, dst_stride_v,quarterwidth, height, + dst_v, dst_stride_v, quarterwidth, height, kFilterNone); return 0; }