Switch I4xxToI420 to point sample to pass drmemory.

BUG=289
TESTED=drmemory
R=ryanpetrie@google.com

Review URL: https://webrtc-codereview.appspot.com/4809004

git-svn-id: http://libyuv.googlecode.com/svn/trunk@886 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
fbarchard@google.com 2013-12-03 07:00:11 +00:00
parent 04f40278df
commit d0a4b4ac01
6 changed files with 8 additions and 12 deletions

View File

@ -43,7 +43,6 @@ ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
source/compare_neon.cc.neon \ source/compare_neon.cc.neon \
source/rotate_neon.cc.neon \ source/rotate_neon.cc.neon \
source/row_neon.cc.neon \ source/row_neon.cc.neon \
source/scale_argb_neon.cc.neon \
source/scale_neon.cc.neon source/scale_neon.cc.neon
endif endif

View File

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

View File

@ -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 885 #define LIBYUV_VERSION 886
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT

View File

@ -108,7 +108,6 @@
'source/row_win.cc', 'source/row_win.cc',
'source/scale.cc', 'source/scale.cc',
'source/scale_argb.cc', 'source/scale_argb.cc',
'source/scale_argb_neon.cc', # Deprecated.
'source/scale_common.cc', 'source/scale_common.cc',
'source/scale_mips.cc', 'source/scale_mips.cc',
'source/scale_neon.cc', 'source/scale_neon.cc',

View File

@ -95,12 +95,12 @@ int I422ToI420(const uint8* src_y, int src_stride_y,
// Resample U plane. // Resample U plane.
ScalePlane(src_u, src_stride_u, halfwidth, height, ScalePlane(src_u, src_stride_u, halfwidth, height,
dst_u, dst_stride_u, halfwidth, halfheight, dst_u, dst_stride_u, halfwidth, halfheight,
kFilterBilinear); kFilterNone);
// Resample V plane. // Resample V plane.
ScalePlane(src_v, src_stride_v, halfwidth, height, ScalePlane(src_v, src_stride_v, halfwidth, height,
dst_v, dst_stride_v, halfwidth, halfheight, dst_v, dst_stride_v, halfwidth, halfheight,
kFilterBilinear); kFilterNone);
return 0; return 0;
} }
@ -141,12 +141,12 @@ int I444ToI420(const uint8* src_y, int src_stride_y,
// Resample U plane. // Resample U plane.
ScalePlane(src_u, src_stride_u, width, height, ScalePlane(src_u, src_stride_u, width, height,
dst_u, dst_stride_u, halfwidth, halfheight, dst_u, dst_stride_u, halfwidth, halfheight,
kFilterBilinear); kFilterNone);
// Resample V plane. // Resample V plane.
ScalePlane(src_v, src_stride_v, width, height, ScalePlane(src_v, src_stride_v, width, height,
dst_v, dst_stride_v, halfwidth, halfheight, dst_v, dst_stride_v, halfwidth, halfheight,
kFilterBilinear); kFilterNone);
return 0; return 0;
} }
@ -188,12 +188,12 @@ int I411ToI420(const uint8* src_y, int src_stride_y,
// Resample U plane. // Resample U plane.
ScalePlane(src_u, src_stride_u, quarterwidth, height, ScalePlane(src_u, src_stride_u, quarterwidth, height,
dst_u, dst_stride_u, halfwidth, halfheight, dst_u, dst_stride_u, halfwidth, halfheight,
kFilterBilinear); kFilterNone);
// Resample V plane. // Resample V plane.
ScalePlane(src_v, src_stride_v, quarterwidth, height, ScalePlane(src_v, src_stride_v, quarterwidth, height,
dst_v, dst_stride_v, halfwidth, halfheight, dst_v, dst_stride_v, halfwidth, halfheight,
kFilterBilinear); kFilterNone);
return 0; return 0;
} }

View File

@ -1,2 +0,0 @@
// This file is deprecated.