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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 | 125 |
126 struct TileInfo; | 126 struct TileInfo; |
127 struct TileDataEnc; | 127 struct TileDataEnc; |
128 struct VP9_COMP; | 128 struct VP9_COMP; |
129 struct macroblock; | 129 struct macroblock; |
130 | 130 |
131 int vp9_compute_rd_mult(const struct VP9_COMP *cpi, int qindex); | 131 int vp9_compute_rd_mult(const struct VP9_COMP *cpi, int qindex); |
132 | 132 |
133 void vp9_initialize_rd_consts(struct VP9_COMP *cpi); | 133 void vp9_initialize_rd_consts(struct VP9_COMP *cpi); |
134 | 134 |
135 void vp9_initialize_me_consts(struct VP9_COMP *cpi, int qindex); | 135 void vp9_initialize_me_consts(struct VP9_COMP *cpi, MACROBLOCK *x, int qindex); |
136 | 136 |
137 void vp9_model_rd_from_var_lapndz(unsigned int var, unsigned int n, | 137 void vp9_model_rd_from_var_lapndz(unsigned int var, unsigned int n, |
138 unsigned int qstep, int *rate, | 138 unsigned int qstep, int *rate, |
139 int64_t *dist); | 139 int64_t *dist); |
140 | 140 |
141 int vp9_get_switchable_rate(const struct VP9_COMP *cpi, | 141 int vp9_get_switchable_rate(const struct VP9_COMP *cpi, |
142 const MACROBLOCKD *const xd); | 142 const MACROBLOCKD *const xd); |
143 | 143 |
144 int vp9_raster_block_offset(BLOCK_SIZE plane_bsize, | 144 int vp9_raster_block_offset(BLOCK_SIZE plane_bsize, |
145 int raster_block, int stride); | 145 int raster_block, int stride); |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 const struct scale_factors *scale_uv); | 181 const struct scale_factors *scale_uv); |
182 | 182 |
183 int vp9_get_intra_cost_penalty(int qindex, int qdelta, | 183 int vp9_get_intra_cost_penalty(int qindex, int qdelta, |
184 vpx_bit_depth_t bit_depth); | 184 vpx_bit_depth_t bit_depth); |
185 | 185 |
186 #ifdef __cplusplus | 186 #ifdef __cplusplus |
187 } // extern "C" | 187 } // extern "C" |
188 #endif | 188 #endif |
189 | 189 |
190 #endif // VP9_ENCODER_VP9_RD_H_ | 190 #endif // VP9_ENCODER_VP9_RD_H_ |
OLD | NEW |