summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_dct.c
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2013-03-12 11:24:04 -0700
committerYaowu Xu <yaowu@google.com>2013-03-13 08:35:46 -0700
commit005552639b276709868a4a0f86f27a737c7c6917 (patch)
tree0430483c13b8d3cffaa6efeef734313f0faa17c9 /vp9/encoder/vp9_dct.c
parentbd9cd9a1859aa464b3092f2023b3a4040166572d (diff)
downloadlibvpx-005552639b276709868a4a0f86f27a737c7c6917.tar
libvpx-005552639b276709868a4a0f86f27a737c7c6917.tar.gz
libvpx-005552639b276709868a4a0f86f27a737c7c6917.tar.bz2
libvpx-005552639b276709868a4a0f86f27a737c7c6917.zip
removed reference to "LLM" and "x8"
The commit changed the name of files and function to remove obselete reference to LLM and x8. Change-Id: I973b20fc1a55149ed68b5408b3874768e6f88516
Diffstat (limited to 'vp9/encoder/vp9_dct.c')
-rw-r--r--vp9/encoder/vp9_dct.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/vp9/encoder/vp9_dct.c b/vp9/encoder/vp9_dct.c
index e4ac2ce36..6c0ab863a 100644
--- a/vp9/encoder/vp9_dct.c
+++ b/vp9/encoder/vp9_dct.c
@@ -374,7 +374,7 @@ void vp9_short_fht8x8_c(int16_t *input, int16_t *output,
}
}
-void vp9_short_walsh4x4_x8_c(short *input, short *output, int pitch) {
+void vp9_short_walsh4x4_c(short *input, short *output, int pitch) {
int i;
int a1, b1, c1, d1;
short *ip = input;
@@ -414,9 +414,9 @@ void vp9_short_walsh4x4_x8_c(short *input, short *output, int pitch) {
}
}
-void vp9_short_walsh8x4_x8_c(short *input, short *output, int pitch) {
- vp9_short_walsh4x4_x8_c(input, output, pitch);
- vp9_short_walsh4x4_x8_c(input + 4, output + 16, pitch);
+void vp9_short_walsh8x4_c(short *input, short *output, int pitch) {
+ vp9_short_walsh4x4_c(input, output, pitch);
+ vp9_short_walsh4x4_c(input + 4, output + 16, pitch);
}