AOMedia AV1 Codec
ratectrl.h
1/*
2 * Copyright (c) 2016, Alliance for Open Media. All rights reserved.
3 *
4 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10 */
11
12#ifndef AOM_AV1_ENCODER_RATECTRL_H_
13#define AOM_AV1_ENCODER_RATECTRL_H_
14
15#include "aom/aom_codec.h"
16#include "aom/aom_integer.h"
17
18#include "aom_ports/mem.h"
19
20#include "av1/common/av1_common_int.h"
21#include "av1/common/blockd.h"
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
29// Bits Per MB at different Q (Multiplied by 512)
30#define BPER_MB_NORMBITS 9
31
32// Use this macro to turn on/off use of alt-refs in one-pass mode.
33#define USE_ALTREF_FOR_ONE_PASS 1
34
35// Threshold used to define if a KF group is static (e.g. a slide show).
36// Essentially, this means that no frame in the group has more than 1% of MBs
37// that are not marked as coded with 0,0 motion in the first pass.
38#define STATIC_KF_GROUP_THRESH 99
39#define STATIC_KF_GROUP_FLOAT_THRESH 0.99
40
41// The maximum duration of a GF group that is static (e.g. a slide show).
42#define MAX_STATIC_GF_GROUP_LENGTH 250
43
44#define MIN_GF_INTERVAL 4
45#define MAX_GF_INTERVAL 32
46#define FIXED_GF_INTERVAL 16
47#define MAX_GF_LENGTH_LAP 16
48
49#define FIXED_GF_INTERVAL_RT 80
50#define MAX_GF_INTERVAL_RT 160
51
52#define MAX_NUM_GF_INTERVALS 15
53
54#define MAX_ARF_LAYERS 6
55// #define STRICT_RC
56
57#define DEFAULT_KF_BOOST_RT 2300
58#define DEFAULT_GF_BOOST_RT 2000
59
60// A passive rate control strategy for screen content type in real-time mode.
61// When it is turned on, the compression performance is improved by
62// 7.8% (overall_psnr), 5.0% (VMAF) on average. Some clips see gains
63// over 20% on metric.
64// The downside is that it does not guarantee frame size.
65// Since RT mode has a tight restriction on buffer overflow control, we
66// turn it off by default.
67#define RT_PASSIVE_STRATEGY 0
68#define MAX_Q_HISTORY 1000
69
70typedef struct {
71 int resize_width;
72 int resize_height;
73 uint8_t superres_denom;
74} size_params_type;
75
76enum {
77 INTER_NORMAL,
78 GF_ARF_LOW,
79 GF_ARF_STD,
80 KF_STD,
81 RATE_FACTOR_LEVELS
82} UENUM1BYTE(RATE_FACTOR_LEVEL);
83
84enum {
85 KF_UPDATE,
86 LF_UPDATE,
87 GF_UPDATE,
88 ARF_UPDATE,
89 OVERLAY_UPDATE,
90 INTNL_OVERLAY_UPDATE, // Internal Overlay Frame
91 INTNL_ARF_UPDATE, // Internal Altref Frame
92 FRAME_UPDATE_TYPES
93} UENUM1BYTE(FRAME_UPDATE_TYPE);
94
95enum {
96 REFBUF_RESET, // Clear reference frame buffer
97 REFBUF_UPDATE, // Refresh reference frame buffer
98 REFBUF_STATES
99} UENUM1BYTE(REFBUF_STATE);
100
101typedef enum {
102 NO_RESIZE = 0,
103 DOWN_THREEFOUR = 1, // From orig to 3/4.
104 DOWN_ONEHALF = 2, // From orig or 3/4 to 1/2.
105 UP_THREEFOUR = -1, // From 1/2 to 3/4.
106 UP_ORIG = -2, // From 1/2 or 3/4 to orig.
107} RESIZE_ACTION;
108
109typedef enum { ORIG = 0, THREE_QUARTER = 1, ONE_HALF = 2 } RESIZE_STATE;
110
111#define MAX_FIRSTPASS_ANALYSIS_FRAMES 150
112typedef enum region_types {
113 STABLE_REGION = 0,
114 HIGH_VAR_REGION = 1,
115 SCENECUT_REGION = 2,
116 BLENDING_REGION = 3,
117} REGION_TYPES;
118
119typedef struct regions {
120 int start;
121 int last;
122 double avg_noise_var;
123 double avg_cor_coeff;
124 double avg_sr_fr_ratio;
125 double avg_intra_err;
126 double avg_coded_err;
127 REGION_TYPES type;
128} REGIONS;
129
134typedef struct {
135 // Rate targetting variables
136
145 int this_frame_target; // Actual frame target after rc adjustment.
146
151
156
161
166
171
176
178 int min_gf_interval;
179 int max_gf_interval;
180 int static_scene_max_gf_interval;
187 int frames_since_key;
188 int frames_to_fwd_kf;
189 int is_src_frame_alt_ref;
190 int sframe_due;
191
192 int high_source_sad;
193 int high_motion_content_screen_rtc;
194 uint64_t avg_source_sad;
195 uint64_t prev_avg_source_sad;
196 uint64_t frame_source_sad;
197 uint64_t spatial_variance_keyframe;
198 int last_encoded_size_keyframe;
199 int last_target_size_keyframe;
200 int frames_since_scene_change;
201 int perc_flat_blocks_keyframe;
202
203 int avg_frame_bandwidth; // Average frame size target for clip
204 int min_frame_bandwidth; // Minimum allocation used for any frame
205 int max_frame_bandwidth; // Maximum burst rate allowed for a frame.
206 int prev_avg_frame_bandwidth;
207
208 int ni_av_qi;
209 int ni_tot_qi;
210
211 int decimation_factor;
212 int decimation_count;
213 int prev_frame_is_dropped;
214 int drop_count_consec;
215 int max_consec_drop;
216 int force_max_q;
217 int postencode_drop;
218
223 unsigned int frame_number_encoded;
224
234
237 // rate control history for last frame(1) and the frame before(2).
238 // -1: overshoot
239 // 1: undershoot
240 // 0: not initialized.
241 int rc_1_frame;
242 int rc_2_frame;
243 int q_1_frame;
244 int q_2_frame;
245
251
253 // Track amount of low motion in scene
254 int avg_frame_low_motion;
255 int cnt_zeromv;
256
257 // signals if number of blocks with motion is high
258 int percent_blocks_with_motion;
259
260 // signals percentage of 16x16 blocks that are inactive, via active_maps
261 int percent_blocks_inactive;
262
263 // Maximum value of source sad across all blocks of frame.
264 uint64_t max_block_source_sad;
265
266 // For dynamic resize, 1 pass cbr.
267 RESIZE_STATE resize_state;
268 int resize_avg_qp;
269 int resize_buffer_underflow;
270 int resize_count;
271
272 // Flag to disable content related qp adjustment.
273 int rtc_external_ratectrl;
274
275 // Stores fast_extra_bits of the current frame.
276 int frame_level_fast_extra_bits;
277
278 double frame_level_rate_correction_factors[RATE_FACTOR_LEVELS];
279
280 int frame_num_last_gf_refresh;
281
282 int prev_coded_width;
283 int prev_coded_height;
284
285 // The ratio used for inter frames in bit estimation.
286 // TODO(yunqing): if golden frame is treated differently (e.g. gf_cbr_boost_
287 // pct > THR), consider to add bit_est_ratio_g for golden frames.
288 int bit_est_ratio;
289
290 // Whether to use a fixed qp for the frame, bypassing internal rate control.
291 // This flag will reset to 0 after every frame.
292 int use_external_qp_one_pass;
295
299typedef struct {
300 // Sub-gop level Rate targetting variables
301
306
311
316
320 int gf_intervals[MAX_NUM_GF_INTERVALS];
321
326
328 int num_regions;
329
330 REGIONS regions[MAX_FIRSTPASS_ANALYSIS_FRAMES];
331 int regions_offset; // offset of regions from the last keyframe
332 int frames_till_regions_update;
333
334 int baseline_gf_interval;
335
336 int constrained_gf_group;
337
338 int this_key_frame_forced;
339
340 int next_key_frame_forced;
347
352
357
361 int arf_q;
362
364 float_t arf_boost_factor;
365
366 int base_layer_qp;
367
368 // Total number of stats used only for kf_boost calculation.
369 int num_stats_used_for_kf_boost;
370
371 // Total number of stats used only for gfu_boost calculation.
372 int num_stats_used_for_gfu_boost;
373
374 // Total number of stats required by gfu_boost calculation.
375 int num_stats_required_for_gfu_boost;
376
377 int enable_scenecut_detection;
378
379 int use_arf_in_this_kf_group;
380
381 int ni_frames;
382
383 double tot_q;
390
394 int avg_frame_qindex[FRAME_TYPES];
395
396#if CONFIG_FPMT_TEST
401 int temp_active_best_quality[MAX_ARF_LAYERS + 1];
402
407 int temp_last_boosted_qindex;
408
413 double temp_avg_q;
414
419 int temp_last_q[FRAME_TYPES];
420
425 int temp_projected_frame_size;
426
431 int64_t temp_total_actual_bits;
432
437 int64_t temp_buffer_level;
438
443 int64_t temp_vbr_bits_off_target;
444
449 int64_t temp_vbr_bits_off_target_fast;
450
455 double temp_rate_correction_factors[RATE_FACTOR_LEVELS];
456
461 int temp_rate_error_estimate;
462
467 int temp_rolling_arf_group_target_bits;
468
473 int temp_rolling_arf_group_actual_bits;
474
479 int64_t temp_bits_left;
480
485 int temp_extend_minq;
486
491 int temp_extend_maxq;
492
493#endif
497 int active_best_quality[MAX_ARF_LAYERS + 1];
498
503
507 double avg_q;
508
512 int last_q[FRAME_TYPES];
513
518 double rate_correction_factors[RATE_FACTOR_LEVELS];
519
524
529
534
539
544
549
555
560
566
571 int q_history[MAX_Q_HISTORY];
573
576struct AV1_COMP;
577struct AV1EncoderConfig;
578struct GF_GROUP;
579
580void av1_primary_rc_init(const struct AV1EncoderConfig *oxcf,
582
583void av1_rc_init(const struct AV1EncoderConfig *oxcf, RATE_CONTROL *rc);
584
585int av1_estimate_bits_at_q(const struct AV1_COMP *cpi, int q,
586 double correction_factor);
587
588double av1_convert_qindex_to_q(int qindex, aom_bit_depth_t bit_depth);
589
590void av1_rc_init_minq_luts(void);
591
592int av1_rc_get_default_min_gf_interval(int width, int height, double framerate);
593// Note av1_rc_get_default_max_gf_interval() requires the min_gf_interval to
594// be passed in to ensure that the max_gf_interval returned is at least as bis
595// as that.
596int av1_rc_get_default_max_gf_interval(double framerate, int min_gf_interval);
597
598// Generally at the high level, the following flow is expected
599// to be enforced for rate control:
600// First call per frame, one of:
601// av1_get_one_pass_rt_params()
602// av1_get_second_pass_params()
603// depending on the usage to set the rate control encode parameters desired.
604//
605// Then, call encode_frame_to_data_rate() to perform the
606// actual encode. This function will in turn call encode_frame()
607// one or more times, followed by:
608// av1_rc_postencode_update_drop_frame()
609//
610// The majority of rate control parameters are only expected
611// to be set in the av1_get_..._params() functions and
612// updated during the av1_rc_postencode_update...() functions.
613// The only exceptions are av1_rc_drop_frame() and
614// av1_rc_update_rate_correction_factors() functions.
615
616// Functions to set parameters for encoding before the actual
617// encode_frame_to_data_rate() function.
618struct EncodeFrameInput;
619
620// Post encode update of the rate control parameters based
621// on bytes used
622void av1_rc_postencode_update(struct AV1_COMP *cpi, uint64_t bytes_used);
623// Post encode update of the rate control parameters for dropped frames
624void av1_rc_postencode_update_drop_frame(struct AV1_COMP *cpi);
625
641 int is_encode_stage, int width,
642 int height);
645// Decide if we should drop this frame: For 1-pass CBR.
646// Changes only the decimation count in the rate control structure
647int av1_rc_drop_frame(struct AV1_COMP *cpi);
648
649// Computes frame size bounds.
650void av1_rc_compute_frame_size_bounds(const struct AV1_COMP *cpi,
651 int this_frame_target,
652 int *frame_under_shoot_limit,
653 int *frame_over_shoot_limit);
654
669int av1_rc_pick_q_and_bounds(struct AV1_COMP *cpi, int width, int height,
670 int gf_index, int *bottom_index, int *top_index);
671
684int av1_rc_regulate_q(const struct AV1_COMP *cpi, int target_bits_per_frame,
685 int active_best_quality, int active_worst_quality,
686 int width, int height);
687
689// Estimates bits per mb for a given qindex and correction factor.
690int av1_rc_bits_per_mb(const struct AV1_COMP *cpi, FRAME_TYPE frame_type,
691 int qindex, double correction_factor,
692 int accurate_estimate);
693
694// Clamping utilities for bitrate targets for iframes and pframes.
695int av1_rc_clamp_iframe_target_size(const struct AV1_COMP *const cpi,
696 int64_t target);
697int av1_rc_clamp_pframe_target_size(const struct AV1_COMP *const cpi,
698 int64_t target, uint8_t frame_update_type);
699
700// Find q_index corresponding to desired_q, within [best_qindex, worst_qindex].
701// To be precise, 'q_index' is the smallest integer, for which the corresponding
702// q >= desired_q.
703// If no such q index is found, returns 'worst_qindex'.
704int av1_find_qindex(double desired_q, aom_bit_depth_t bit_depth,
705 int best_qindex, int worst_qindex);
706
707// Computes a q delta (in "q index" terms) to get from a starting q value
708// to a target q value
709int av1_compute_qdelta(const RATE_CONTROL *rc, double qstart, double qtarget,
710 aom_bit_depth_t bit_depth);
711
712// Computes a q delta (in "q index" terms) to get from a starting q value
713// to a value that should equate to the given rate ratio.
714int av1_compute_qdelta_by_rate(const struct AV1_COMP *cpi,
715 FRAME_TYPE frame_type, int qindex,
716 double rate_target_ratio);
717
718void av1_rc_update_framerate(struct AV1_COMP *cpi, int width, int height);
719
720void av1_rc_set_gf_interval_range(const struct AV1_COMP *const cpi,
721 RATE_CONTROL *const rc);
722
723void av1_set_target_rate(struct AV1_COMP *cpi, int width, int height);
724
725int av1_resize_one_pass_cbr(struct AV1_COMP *cpi);
726
727void av1_rc_set_frame_target(struct AV1_COMP *cpi, int target, int width,
728 int height);
729
730void av1_adjust_gf_refresh_qp_one_pass_rt(struct AV1_COMP *cpi);
731
733 int gf_update);
734
748 const struct AV1_COMP *const cpi, FRAME_UPDATE_TYPE frame_update_type);
749
761
774 const struct AV1_COMP *cpi, FRAME_UPDATE_TYPE frame_update_type);
775
787
807 FRAME_TYPE *const frame_type,
808 const struct EncodeFrameInput *frame_input,
809 unsigned int frame_flags);
810
825int av1_encodedframe_overshoot_cbr(struct AV1_COMP *cpi, int *q);
826
838int av1_postencode_drop_cbr(struct AV1_COMP *cpi, size_t *size);
839
851int av1_q_mode_get_q_index(int base_q_index, int gf_update_type,
852 int gf_pyramid_level, int arf_q);
853
854#ifdef __cplusplus
855} // extern "C"
856#endif
857
858#endif // AOM_AV1_ENCODER_RATECTRL_H_
Describes the codec algorithm interface to applications.
enum aom_bit_depth aom_bit_depth_t
Bit depth for codecThis enumeration determines the bit depth of the codec.
int av1_calc_pframe_target_size_one_pass_vbr(const struct AV1_COMP *const cpi, FRAME_UPDATE_TYPE frame_update_type)
Calculates how many bits to use for a P frame in one pass vbr.
void av1_rc_update_rate_correction_factors(struct AV1_COMP *cpi, int is_encode_stage, int width, int height)
Updates the rate correction factor linking Q to output bits.
Definition ratectrl.c:858
int av1_encodedframe_overshoot_cbr(struct AV1_COMP *cpi, int *q)
Increase q on expected encoder overshoot, for CBR mode.
Definition ratectrl.c:3813
void av1_get_one_pass_rt_params(struct AV1_COMP *cpi, FRAME_TYPE *const frame_type, const struct EncodeFrameInput *frame_input, unsigned int frame_flags)
Setup the rate control parameters for 1 pass real-time mode.
int av1_calc_pframe_target_size_one_pass_cbr(const struct AV1_COMP *cpi, FRAME_UPDATE_TYPE frame_update_type)
Calculates how many bits to use for a P frame in one pass cbr.
int av1_postencode_drop_cbr(struct AV1_COMP *cpi, size_t *size)
Check if frame should be dropped, for RTC mode.
Definition ratectrl.c:3893
int av1_rc_pick_q_and_bounds(struct AV1_COMP *cpi, int width, int height, int gf_index, int *bottom_index, int *top_index)
Picks q and q bounds given the rate control parameters in cpi->rc.
Definition ratectrl.c:2220
int av1_calc_iframe_target_size_one_pass_cbr(const struct AV1_COMP *cpi)
Calculates how many bits to use for an i frame in one pass cbr.
int av1_calc_iframe_target_size_one_pass_vbr(const struct AV1_COMP *const cpi)
Calculates how many bits to use for an i frame in one pass vbr.
int av1_rc_regulate_q(const struct AV1_COMP *cpi, int target_bits_per_frame, int active_best_quality, int active_worst_quality, int width, int height)
Estimates q to achieve a target bits per frame.
void av1_set_rtc_reference_structure_one_layer(AV1_COMP *cpi, int gf_update)
Setup the reference prediction structure for 1 pass real-time.
Definition ratectrl.c:2952
Main encoder configuration data structure.
Definition encoder.h:923
Top level encoder structure.
Definition encoder.h:2873
Input frames and last input frame.
Definition encoder.h:3675
Data related to the current GF/ARF group and the individual frames within the group.
Definition firstpass.h:339
Primary Rate Control parameters and status.
Definition ratectrl.h:299
int64_t bits_off_target
Definition ratectrl.h:554
int rate_error_estimate
Definition ratectrl.h:538
double avg_q
Definition ratectrl.h:507
int64_t maximum_buffer_size
Definition ratectrl.h:356
int kf_boost
Definition ratectrl.h:310
int64_t starting_buffer_level
Definition ratectrl.h:346
int64_t total_actual_bits
Definition ratectrl.h:523
int64_t vbr_bits_off_target_fast
Definition ratectrl.h:548
int rolling_target_bits
Definition ratectrl.h:559
int64_t buffer_level
Definition ratectrl.h:533
int gfu_boost
Definition ratectrl.h:315
int64_t optimal_buffer_level
Definition ratectrl.h:351
int arf_q
Definition ratectrl.h:361
int rolling_actual_bits
Definition ratectrl.h:565
int last_boosted_qindex
Definition ratectrl.h:502
int cur_gf_index
Definition ratectrl.h:325
int64_t total_target_bits
Definition ratectrl.h:528
int last_kf_qindex
Definition ratectrl.h:389
int64_t gf_group_bits
Definition ratectrl.h:305
int64_t vbr_bits_off_target
Definition ratectrl.h:543
Rate Control parameters and status.
Definition ratectrl.h:134
int best_quality
Definition ratectrl.h:233
int intervals_till_gf_calculate_due
Definition ratectrl.h:175
int this_frame_target
Definition ratectrl.h:145
int frames_to_key
Definition ratectrl.h:185
int base_frame_target
Definition ratectrl.h:141
int projected_frame_size
Definition ratectrl.h:150
int worst_quality
Definition ratectrl.h:229
int sb64_target_rate
Definition ratectrl.h:160
int coefficient_size
Definition ratectrl.h:155
int active_worst_quality
Definition ratectrl.h:250
int frames_since_golden
Definition ratectrl.h:165
int frames_till_gf_update_due
Definition ratectrl.h:170