summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
authorJim Bankoski <jimbankoski@google.com>2013-10-04 13:47:59 -0700
committerJim Bankoski <jimbankoski@google.com>2013-10-04 13:47:59 -0700
commit424c74e736997011cbee5371ba2928870c95b5b5 (patch)
treeec9408f7dc9258faf193eefacf217619db620428 /vp9/encoder
parentc6960b60867f0ce25404c0bf4b96018e7d41bb08 (diff)
downloadlibvpx-424c74e736997011cbee5371ba2928870c95b5b5.tar
libvpx-424c74e736997011cbee5371ba2928870c95b5b5.tar.gz
libvpx-424c74e736997011cbee5371ba2928870c95b5b5.tar.bz2
libvpx-424c74e736997011cbee5371ba2928870c95b5b5.zip
cpplint vp9_dct.c issues resolved
Change-Id: Ia21653a447040f1b472d21ebd19103b0558c4b16
Diffstat (limited to 'vp9/encoder')
-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 b9c300033..27e4cd07f 100644
--- a/vp9/encoder/vp9_dct.c
+++ b/vp9/encoder/vp9_dct.c
@@ -593,11 +593,11 @@ 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(short *input, short *output, int pitch) {
+void vp9_short_walsh4x4_c(int16_t *input, int16_t *output, int pitch) {
int i;
int a1, b1, c1, d1, e1;
- short *ip = input;
- short *op = output;
+ int16_t *ip = input;
+ int16_t *op = output;
int pitch_short = pitch >> 1;
for (i = 0; i < 4; i++) {
@@ -647,7 +647,7 @@ void vp9_short_walsh4x4_c(short *input, short *output, int pitch) {
}
}
-void vp9_short_walsh8x4_c(short *input, short *output, int pitch) {
+void vp9_short_walsh8x4_c(int16_t *input, int16_t *output, int pitch) {
vp9_short_walsh4x4_c(input, output, pitch);
vp9_short_walsh4x4_c(input + 4, output + 16, pitch);
}