summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_encodemb.c
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-09-26 14:01:25 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-09-26 14:01:25 -0700
commit15a36a0a0ddaa154c6ab3c3c32a86a71f07c640e (patch)
treee7fb0341c86d438f8b9f672b4acba0a6e70b7c0b /vp9/encoder/vp9_encodemb.c
parent831d72ac5f21ea53d4a466f411fd9b6a5af605fc (diff)
downloadlibvpx-15a36a0a0ddaa154c6ab3c3c32a86a71f07c640e.tar
libvpx-15a36a0a0ddaa154c6ab3c3c32a86a71f07c640e.tar.gz
libvpx-15a36a0a0ddaa154c6ab3c3c32a86a71f07c640e.tar.bz2
libvpx-15a36a0a0ddaa154c6ab3c3c32a86a71f07c640e.zip
Renaming vp9_short_idct10_16x16 to vp9_short_idct16x16_10.
Making function name consistent with vp9_short_idct16x16 and vp9_short_idct16x16_1. Change-Id: I70e54be9e6b9a1dddab0de470686591e96d05517
Diffstat (limited to 'vp9/encoder/vp9_encodemb.c')
-rw-r--r--vp9/encoder/vp9_encodemb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_encodemb.c b/vp9/encoder/vp9_encodemb.c
index 6b9109c94..058bde66f 100644
--- a/vp9/encoder/vp9_encodemb.c
+++ b/vp9/encoder/vp9_encodemb.c
@@ -64,7 +64,7 @@ static void inverse_transform_b_16x16_add(int eob,
if (eob <= 1)
vp9_short_idct16x16_1_add(dqcoeff, dest, stride);
else if (eob <= 10)
- vp9_short_idct10_16x16_add(dqcoeff, dest, stride);
+ vp9_short_idct16x16_10_add(dqcoeff, dest, stride);
else
vp9_short_idct16x16_add(dqcoeff, dest, stride);
}