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

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
parent 04f40278
...@@ -43,7 +43,6 @@ ifeq ($(TARGET_ARCH_ABI),armeabi-v7a) ...@@ -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
......
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
......
...@@ -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 885 #define LIBYUV_VERSION 886
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
...@@ -108,7 +108,6 @@ ...@@ -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',
......
...@@ -95,12 +95,12 @@ int I422ToI420(const uint8* src_y, int src_stride_y, ...@@ -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, ...@@ -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, ...@@ -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;
} }
......
// This file is deprecated.
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