| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 int decimation_factor; | 81 int decimation_factor; |
| 82 int decimation_count; | 82 int decimation_count; |
| 83 | 83 |
| 84 int rolling_target_bits; | 84 int rolling_target_bits; |
| 85 int rolling_actual_bits; | 85 int rolling_actual_bits; |
| 86 | 86 |
| 87 int long_rolling_target_bits; | 87 int long_rolling_target_bits; |
| 88 int long_rolling_actual_bits; | 88 int long_rolling_actual_bits; |
| 89 | 89 |
| 90 int rate_error_estimate; |
| 91 |
| 90 int64_t total_actual_bits; | 92 int64_t total_actual_bits; |
| 91 int64_t total_target_bits; | 93 int64_t total_target_bits; |
| 92 int64_t total_target_vs_actual; | 94 int64_t total_target_vs_actual; |
| 93 | 95 |
| 94 int worst_quality; | 96 int worst_quality; |
| 95 int best_quality; | 97 int best_quality; |
| 96 | 98 |
| 97 int64_t starting_buffer_level; | 99 int64_t starting_buffer_level; |
| 98 int64_t optimal_buffer_level; | 100 int64_t optimal_buffer_level; |
| 99 int64_t maximum_buffer_size; | 101 int64_t maximum_buffer_size; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 void vp9_rc_update_framerate(struct VP9_COMP *cpi); | 196 void vp9_rc_update_framerate(struct VP9_COMP *cpi); |
| 195 | 197 |
| 196 void vp9_rc_set_gf_max_interval(const struct VP9_COMP *const cpi, | 198 void vp9_rc_set_gf_max_interval(const struct VP9_COMP *const cpi, |
| 197 RATE_CONTROL *const rc); | 199 RATE_CONTROL *const rc); |
| 198 | 200 |
| 199 #ifdef __cplusplus | 201 #ifdef __cplusplus |
| 200 } // extern "C" | 202 } // extern "C" |
| 201 #endif | 203 #endif |
| 202 | 204 |
| 203 #endif // VP9_ENCODER_VP9_RATECTRL_H_ | 205 #endif // VP9_ENCODER_VP9_RATECTRL_H_ |
| OLD | NEW |