| Index: source/libvpx/vp9/encoder/vp9_dct.c
|
| ===================================================================
|
| --- source/libvpx/vp9/encoder/vp9_dct.c (revision 293588)
|
| +++ source/libvpx/vp9/encoder/vp9_dct.c (working copy)
|
| @@ -170,7 +170,6 @@
|
| vp9_fdct4x4_c(input, output, stride);
|
| } else {
|
| tran_low_t out[4 * 4];
|
| - tran_low_t *outptr = &out[0];
|
| int i, j;
|
| tran_low_t temp_in[4], temp_out[4];
|
| const transform_2d ht = FHT_4[tx_type];
|
| @@ -183,7 +182,7 @@
|
| temp_in[0] += 1;
|
| ht.cols(temp_in, temp_out);
|
| for (j = 0; j < 4; ++j)
|
| - outptr[j * 4 + i] = temp_out[j];
|
| + out[j * 4 + i] = temp_out[j];
|
| }
|
|
|
| // Rows
|
| @@ -339,7 +338,7 @@
|
| const int16_t *quant_shift_ptr,
|
| tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
|
| const int16_t *dequant_ptr,
|
| - int zbin_oq_value, uint16_t *eob_ptr,
|
| + uint16_t *eob_ptr,
|
| const int16_t *scan, const int16_t *iscan) {
|
| int eob = -1;
|
|
|
| @@ -416,7 +415,6 @@
|
| // quantization process is completed.
|
| (void)zbin_ptr;
|
| (void)quant_shift_ptr;
|
| - (void)zbin_oq_value;
|
| (void)iscan;
|
|
|
| vpx_memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr));
|
| @@ -712,7 +710,6 @@
|
| vp9_fdct8x8_c(input, output, stride);
|
| } else {
|
| tran_low_t out[64];
|
| - tran_low_t *outptr = &out[0];
|
| int i, j;
|
| tran_low_t temp_in[8], temp_out[8];
|
| const transform_2d ht = FHT_8[tx_type];
|
| @@ -723,7 +720,7 @@
|
| temp_in[j] = input[j * stride + i] * 4;
|
| ht.cols(temp_in, temp_out);
|
| for (j = 0; j < 8; ++j)
|
| - outptr[j * 8 + i] = temp_out[j];
|
| + out[j * 8 + i] = temp_out[j];
|
| }
|
|
|
| // Rows
|
| @@ -1104,7 +1101,6 @@
|
| vp9_fdct16x16_c(input, output, stride);
|
| } else {
|
| tran_low_t out[256];
|
| - tran_low_t *outptr = &out[0];
|
| int i, j;
|
| tran_low_t temp_in[16], temp_out[16];
|
| const transform_2d ht = FHT_16[tx_type];
|
| @@ -1115,7 +1111,7 @@
|
| temp_in[j] = input[j * stride + i] * 4;
|
| ht.cols(temp_in, temp_out);
|
| for (j = 0; j < 16; ++j)
|
| - outptr[j * 16 + i] = (temp_out[j] + 1 + (temp_out[j] < 0)) >> 2;
|
| + out[j * 16 + i] = (temp_out[j] + 1 + (temp_out[j] < 0)) >> 2;
|
| }
|
|
|
| // Rows
|
|
|