Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(734)

Side by Side Diff: source/libvpx/vp9/encoder/vp9_ratectrl.h

Issue 668403002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_quantize.c ('k') | source/libvpx/vp9/encoder/vp9_ratectrl.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_quantize.c ('k') | source/libvpx/vp9/encoder/vp9_ratectrl.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698