From f3a411834e4e9bb91b36a8d8419b68ffd1ec395a Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Wed, 28 Nov 2012 20:49:18 +0000 Subject: [PATCH] lint fixes BUG=none TEST=lint Review URL: https://webrtc-codereview.appspot.com/964024 git-svn-id: http://libyuv.googlecode.com/svn/trunk@507 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/row.h | 1 - include/libyuv/version.h | 2 +- source/convert_from.cc | 4 ++-- 4 files changed, 4 insertions(+), 5 deletions(-) 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; }