| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 int last_zbin_mode_boost; | 153 int last_zbin_mode_boost; |
| 154 | 154 |
| 155 int last_zbin_over_quant; | 155 int last_zbin_over_quant; |
| 156 int zbin_over_quant; | 156 int zbin_over_quant; |
| 157 int error_bins[MAX_ERROR_BINS]; | 157 int error_bins[MAX_ERROR_BINS]; |
| 158 | 158 |
| 159 void (*short_fdct4x4)(short *input, short *output, int pitch); | 159 void (*short_fdct4x4)(short *input, short *output, int pitch); |
| 160 void (*short_fdct8x4)(short *input, short *output, int pitch); | 160 void (*short_fdct8x4)(short *input, short *output, int pitch); |
| 161 void (*short_walsh4x4)(short *input, short *output, int pitch); | 161 void (*short_walsh4x4)(short *input, short *output, int pitch); |
| 162 void (*quantize_b)(BLOCK *b, BLOCKD *d); | 162 void (*quantize_b)(BLOCK *b, BLOCKD *d); |
| 163 void (*quantize_b_pair)(BLOCK *b1, BLOCK *b2, BLOCKD *d0, BLOCKD *d1); | |
| 164 | 163 |
| 165 } MACROBLOCK; | 164 } MACROBLOCK; |
| 166 | 165 |
| 167 | 166 |
| 168 #ifdef __cplusplus | 167 #ifdef __cplusplus |
| 169 } // extern "C" | 168 } // extern "C" |
| 170 #endif | 169 #endif |
| 171 | 170 |
| 172 #endif // VP8_ENCODER_BLOCK_H_ | 171 #endif // VP8_ENCODER_BLOCK_H_ |
| OLD | NEW |