ref: 424c74e736997011cbee5371ba2928870c95b5b5
parent: c6960b60867f0ce25404c0bf4b96018e7d41bb08
author: Jim Bankoski <[email protected]>
date: Fri Oct 4 09:47:59 EDT 2013
cpplint vp9_dct.c issues resolved Change-Id: Ia21653a447040f1b472d21ebd19103b0558c4b16
--- a/vp9/encoder/vp9_dct.c
+++ b/vp9/encoder/vp9_dct.c
@@ -593,11 +593,11 @@
/* 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_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);
}