Commit f3a41183 authored by fbarchard@google.com's avatar fbarchard@google.com

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
parent 1d160cb9
Name: libyuv Name: libyuv
URL: http://code.google.com/p/libyuv/ URL: http://code.google.com/p/libyuv/
Version: 506 Version: 507
License: BSD License: BSD
License File: LICENSE License File: LICENSE
......
...@@ -1271,4 +1271,3 @@ void ARGBInterpolateRow_NEON(uint8* dst_argb, const uint8* src_argb, ...@@ -1271,4 +1271,3 @@ void ARGBInterpolateRow_NEON(uint8* dst_argb, const uint8* src_argb,
#endif #endif
#endif // INCLUDE_LIBYUV_ROW_H_ NOLINT #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT
...@@ -11,6 +11,6 @@ ...@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_ #define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 506 #define LIBYUV_VERSION 507
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
...@@ -181,12 +181,12 @@ int I420ToI411(const uint8* src_y, int src_stride_y, ...@@ -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 // Resample U plane from 1/2 width, 1/2 height to 1/4 width, 1x height
ScalePlane(src_u, src_stride_u, halfwidth, halfheight, ScalePlane(src_u, src_stride_u, halfwidth, halfheight,
dst_u, dst_stride_u,quarterwidth, height, dst_u, dst_stride_u, quarterwidth, height,
kFilterNone); kFilterNone);
// Resample V plane. // Resample V plane.
ScalePlane(src_v, src_stride_v, halfwidth, halfheight, ScalePlane(src_v, src_stride_v, halfwidth, halfheight,
dst_v, dst_stride_v,quarterwidth, height, dst_v, dst_stride_v, quarterwidth, height,
kFilterNone); kFilterNone);
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment