summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_dct.c
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-10-23 14:28:39 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-10-23 14:28:39 -0700
commitfd724f13b0cc3853995febecdcb7634559bb09d3 (patch)
tree33c11f7371e586e53296a61651d1cff0688814bf /vp9/encoder/vp9_dct.c
parentdea22b4bdade9a854cb3d395bc25551093aa42ef (diff)
downloadlibvpx-fd724f13b0cc3853995febecdcb7634559bb09d3.tar
libvpx-fd724f13b0cc3853995febecdcb7634559bb09d3.tar.gz
libvpx-fd724f13b0cc3853995febecdcb7634559bb09d3.tar.bz2
libvpx-fd724f13b0cc3853995febecdcb7634559bb09d3.zip
Renaming vp9_short_fdct4x4 and vp9_short_walsh4x4.
For consistency with idct function names. Renames: vp9_short_fdct4x4 -> vp9_fdct4x4 vp9_short_walsh4x4 -> vp9_fwht4x4 Change-Id: Id15497cc1270acca626447d846f0ce9199770f58
Diffstat (limited to 'vp9/encoder/vp9_dct.c')
-rw-r--r--vp9/encoder/vp9_dct.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_dct.c b/vp9/encoder/vp9_dct.c
index 0aae53502..94fcf9101 100644
--- a/vp9/encoder/vp9_dct.c
+++ b/vp9/encoder/vp9_dct.c
@@ -36,7 +36,7 @@ static void fdct4(const int16_t *input, int16_t *output) {
output[3] = dct_const_round_shift(temp2);
}
-void vp9_short_fdct4x4_c(int16_t *input, int16_t *output, int stride) {
+void vp9_fdct4x4_c(int16_t *input, int16_t *output, int stride) {
// The 2D transform is done with two passes which are actually pretty
// similar. In the first one, we transform the columns and transpose
// the results. In the second one, we transform the rows. To achieve that,
@@ -585,7 +585,7 @@ void vp9_short_fht8x8_c(int16_t *input, int16_t *output,
/* 4-point reversible, orthonormal Walsh-Hadamard in 3.5 adds, 0.5 shifts per
pixel. */
-void vp9_short_walsh4x4_c(int16_t *input, int16_t *output, int stride) {
+void vp9_fwht4x4_c(int16_t *input, int16_t *output, int stride) {
int i;
int a1, b1, c1, d1, e1;
int16_t *ip = input;