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
This commit is contained in:
fbarchard@google.com 2012-11-28 20:49:18 +00:00
parent 1d160cb99f
commit f3a411834e
4 changed files with 4 additions and 5 deletions

View File

@ -1,6 +1,6 @@
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 506
Version: 507
License: BSD
License File: LICENSE

View File

@ -1271,4 +1271,3 @@ void ARGBInterpolateRow_NEON(uint8* dst_argb, const uint8* src_argb,
#endif
#endif // INCLUDE_LIBYUV_ROW_H_ NOLINT

View File

@ -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

View File

@ -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;
}