| 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 10 matching lines...) Expand all Loading... |
| 21 const int16_t *scan, const int16_t *iscan); | 21 const int16_t *scan, const int16_t *iscan); |
| 22 | 22 |
| 23 struct VP9_COMP; | 23 struct VP9_COMP; |
| 24 | 24 |
| 25 void vp9_set_quantizer(struct VP9_COMP *cpi, int q); | 25 void vp9_set_quantizer(struct VP9_COMP *cpi, int q); |
| 26 | 26 |
| 27 void vp9_frame_init_quantizer(struct VP9_COMP *cpi); | 27 void vp9_frame_init_quantizer(struct VP9_COMP *cpi); |
| 28 | 28 |
| 29 void vp9_update_zbin_extra(struct VP9_COMP *cpi, MACROBLOCK *x); | 29 void vp9_update_zbin_extra(struct VP9_COMP *cpi, MACROBLOCK *x); |
| 30 | 30 |
| 31 void vp9_mb_init_quantizer(struct VP9_COMP *cpi, MACROBLOCK *x); | 31 void vp9_init_plane_quantizers(struct VP9_COMP *cpi, MACROBLOCK *x); |
| 32 | 32 |
| 33 void vp9_init_quantizer(struct VP9_COMP *cpi); | 33 void vp9_init_quantizer(struct VP9_COMP *cpi); |
| 34 | 34 |
| 35 #ifdef __cplusplus | 35 #ifdef __cplusplus |
| 36 } // extern "C" | 36 } // extern "C" |
| 37 #endif | 37 #endif |
| 38 | 38 |
| 39 #endif // VP9_ENCODER_VP9_QUANTIZE_H_ | 39 #endif // VP9_ENCODER_VP9_QUANTIZE_H_ |
| OLD | NEW |