]> granicus.if.org Git - libvpx/commit
Giving consistent names to IDCT/IWHT functions.
authorDmitry Kovalev <dkovalev@google.com>
Fri, 4 Oct 2013 21:17:06 +0000 (14:17 -0700)
committerDmitry Kovalev <dkovalev@google.com>
Fri, 4 Oct 2013 21:17:06 +0000 (14:17 -0700)
commit3a0602578eb765e046ecb02f2118d0d4241b88d5
treef463bc48271a714c28d43fb80c375e56ec1e01a4
parent042c475a8f3ca660658c68a3fadb65cbfdf82495
Giving consistent names to IDCT/IWHT functions.

The idea is to have the following names for each transform size:

vp9_idct4x4_add
  vp9_idct4x4_1_add
  vp9_idct4x4_10_add
  vp9_idct4x4_16_add

vp9_idct8x8_add
  vp9_idct8x8_1_add
  vp9_idct8x8_10_add
  vp9_idct8x8_64_add

etc for 16x16, 32x32

The actual list of renames in this patch:

vp9_idct_add_lossless     -> vp9_iwht4x4_add
vp9_short_iwalsh4x4_add   -> vp9_iwht4x4_16_add
vp9_short_iwalsh4x4_1_add -> vp9_iwht4x4_1_add

vp9_idct_add            -> vp9_idct4x4_add
vp9_short_idct4x4_add   -> vp9_idct4x4_16_add
vp9_short_idct4x4_1_add -> vp9_idct4x4_1_add

Change-Id: I6f43f7437c68dd30cdd05d72e213765578ed30b1
test/fdct4x4_test.cc
vp9/common/arm/neon/vp9_short_idct4x4_1_add_neon.asm
vp9/common/arm/neon/vp9_short_idct4x4_add_neon.asm
vp9/common/vp9_idct.c
vp9/common/vp9_idct.h
vp9/common/vp9_rtcd_defs.sh
vp9/common/x86/vp9_idct_intrin_sse2.c
vp9/decoder/vp9_decodframe.c
vp9/encoder/vp9_encodeframe.c
vp9/encoder/vp9_onyx_if.c