From e05412fc23830d1af6560e5906884fa12184ce82 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalev Date: Thu, 17 Oct 2013 13:02:28 -0700 Subject: Using stride (# of elements) instead of pitch (bytes) in fdct32x32. Just making fdct consistent with iht/idct/fht functions which all use stride (# of elements) as input argument. Change-Id: Id623c5113262655fa50f7c9d6cec9a91fcb20bb4 --- vp9/common/vp9_rtcd_defs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vp9/common') diff --git a/vp9/common/vp9_rtcd_defs.sh b/vp9/common/vp9_rtcd_defs.sh index 526be87df..af96bb314 100644 --- a/vp9/common/vp9_rtcd_defs.sh +++ b/vp9/common/vp9_rtcd_defs.sh @@ -701,10 +701,10 @@ specialize vp9_short_fdct8x8 sse2 prototype void vp9_short_fdct4x4 "int16_t *InputData, int16_t *OutputData, int pitch" specialize vp9_short_fdct4x4 sse2 -prototype void vp9_short_fdct32x32 "int16_t *InputData, int16_t *OutputData, int pitch" +prototype void vp9_short_fdct32x32 "int16_t *InputData, int16_t *OutputData, int stride" specialize vp9_short_fdct32x32 sse2 -prototype void vp9_short_fdct32x32_rd "int16_t *InputData, int16_t *OutputData, int pitch" +prototype void vp9_short_fdct32x32_rd "int16_t *InputData, int16_t *OutputData, int stride" specialize vp9_short_fdct32x32_rd sse2 prototype void vp9_short_fdct16x16 "int16_t *InputData, int16_t *OutputData, int pitch" -- cgit v1.2.3