From ea0cff0217de3d4a1d9d15062745f68f1d87f260 Mon Sep 17 00:00:00 2001 From: "mikhal@webrtc.org" Date: Tue, 11 Oct 2011 20:09:44 +0000 Subject: [PATCH] libyuv: changing assert call on scale.cc Review URL: http://webrtc-codereview.appspot.com/215004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@19 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- source/scale.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/scale.cc b/source/scale.cc index c7948606f..2efcb8579 100644 --- a/source/scale.cc +++ b/source/scale.cc @@ -1992,7 +1992,7 @@ static void ScaleRowDown34_1_Int_C(const uint8* iptr, int32 istride, #if defined(HAS_SCALEFILTERROWS_SSE2) // Filter row to 3/4 static void ScaleFilterCols34_C(uint8* optr, const uint8* iptr, int owidth) { - ASSERT((owidth % 3 == 0) && (owidth > 0)); + assert((owidth % 3 == 0) && (owidth > 0)); uint8* dend = optr + owidth; const uint8* s = iptr; do { @@ -2028,7 +2028,7 @@ static const int kMaxInputWidth = 2560; // Filter rows 0 and 1 together, 3 : 1 static void ScaleRowDown34_0_Int_SSE2(const uint8* iptr, int32 istride, uint8* d, int32 owidth) { - ASSERT((owidth % 3 == 0) && (owidth > 0)); + assert((owidth % 3 == 0) && (owidth > 0)); ALIGN16(uint8 row[kMaxInputWidth]); #ifdef TEST_RSTSC uint64 t1 = __rdtsc(); @@ -2049,7 +2049,7 @@ static void ScaleRowDown34_0_Int_SSE2(const uint8* iptr, int32 istride, // Filter rows 1 and 2 together, 1 : 1 static void ScaleRowDown34_1_Int_SSE2(const uint8* iptr, int32 istride, uint8* d, int32 owidth) { - ASSERT((owidth % 3 == 0) && (owidth > 0)); + assert((owidth % 3 == 0) && (owidth > 0)); ALIGN16(uint8 row[kMaxInputWidth]); #ifdef TEST_RSTSC uint64 t1 = __rdtsc();