Coverage Report

Created: 2026-04-01 07:49

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aom/av1/encoder/ratectrl.c
Line
Count
Source
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
#include <assert.h>
13
#include <limits.h>
14
#include <math.h>
15
#include <stdint.h>
16
#include <stdio.h>
17
#include <stdlib.h>
18
#include <string.h>
19
20
#include "aom_dsp/aom_dsp_common.h"
21
#include "aom_mem/aom_mem.h"
22
#include "aom_ports/mem.h"
23
#include "aom_ports/aom_once.h"
24
25
#include "av1/common/alloccommon.h"
26
#include "av1/encoder/aq_cyclicrefresh.h"
27
#include "av1/common/common.h"
28
#include "av1/common/entropymode.h"
29
#include "av1/common/quant_common.h"
30
#include "av1/common/seg_common.h"
31
32
#include "av1/encoder/encodemv.h"
33
#include "av1/encoder/encoder_utils.h"
34
#include "av1/encoder/encode_strategy.h"
35
#include "av1/encoder/gop_structure.h"
36
#include "av1/encoder/mcomp.h"
37
#include "av1/encoder/random.h"
38
#include "av1/encoder/ratectrl.h"
39
40
#include "config/aom_dsp_rtcd.h"
41
42
#define USE_UNRESTRICTED_Q_IN_CQ_MODE 0
43
44
0
#define RES_NUM 2
45
0
#define MODE_NUM 2
46
47
// Max rate target for 1080P and below encodes under normal circumstances
48
// (1920 * 1080 / (16 * 16)) * MAX_MB_RATE bits per MB
49
#define MAX_MB_RATE 250
50
#define MAXRATE_1080P 2025000
51
52
0
#define MIN_BPB_FACTOR 0.005
53
0
#define MAX_BPB_FACTOR 50
54
55
0
#define SUPERRES_QADJ_PER_DENOM_KEYFRAME_SOLO 0
56
0
#define SUPERRES_QADJ_PER_DENOM_KEYFRAME 2
57
0
#define SUPERRES_QADJ_PER_DENOM_ARFFRAME 0
58
59
0
#define FRAME_OVERHEAD_BITS 200
60
#define ASSIGN_MINQ_TABLE(bit_depth, name)                   \
61
0
  do {                                                       \
62
0
    switch (bit_depth) {                                     \
63
0
      case AOM_BITS_8: name = name##_8; break;               \
64
0
      case AOM_BITS_10: name = name##_10; break;             \
65
0
      case AOM_BITS_12: name = name##_12; break;             \
66
0
      default:                                               \
67
0
        assert(0 &&                                          \
68
0
               "bit_depth should be AOM_BITS_8, AOM_BITS_10" \
69
0
               " or AOM_BITS_12");                           \
70
0
        name = NULL;                                         \
71
0
    }                                                        \
72
0
  } while (0)
73
74
#define ASSIGN_MINQ_TABLE_2(bit_depth, name, res_idx, mode_idx)     \
75
0
  do {                                                              \
76
0
    switch (bit_depth) {                                            \
77
0
      case AOM_BITS_8: name = name##_8[mode_idx][res_idx]; break;   \
78
0
      case AOM_BITS_10: name = name##_10[mode_idx][res_idx]; break; \
79
0
      case AOM_BITS_12: name = name##_12[mode_idx][res_idx]; break; \
80
0
      default:                                                      \
81
0
        assert(0 &&                                                 \
82
0
               "bit_depth should be AOM_BITS_8, AOM_BITS_10"        \
83
0
               " or AOM_BITS_12");                                  \
84
0
        name = NULL;                                                \
85
0
    }                                                               \
86
0
  } while (0)
87
88
// Tables relating active max Q to active min Q
89
static int kf_low_motion_minq_8[MODE_NUM][RES_NUM][QINDEX_RANGE];
90
static int kf_high_motion_minq_8[MODE_NUM][RES_NUM][QINDEX_RANGE];
91
static int arfgf_low_motion_minq_8[MODE_NUM][RES_NUM][QINDEX_RANGE];
92
static int arfgf_high_motion_minq_8[MODE_NUM][RES_NUM][QINDEX_RANGE];
93
static int inter_minq_8[MODE_NUM][RES_NUM][QINDEX_RANGE];
94
static int rtc_minq_8[QINDEX_RANGE];
95
96
static int kf_low_motion_minq_10[MODE_NUM][RES_NUM][QINDEX_RANGE];
97
static int kf_high_motion_minq_10[MODE_NUM][RES_NUM][QINDEX_RANGE];
98
static int arfgf_low_motion_minq_10[MODE_NUM][RES_NUM][QINDEX_RANGE];
99
static int arfgf_high_motion_minq_10[MODE_NUM][RES_NUM][QINDEX_RANGE];
100
static int inter_minq_10[MODE_NUM][RES_NUM][QINDEX_RANGE];
101
static int rtc_minq_10[QINDEX_RANGE];
102
static int kf_low_motion_minq_12[MODE_NUM][RES_NUM][QINDEX_RANGE];
103
static int kf_high_motion_minq_12[MODE_NUM][RES_NUM][QINDEX_RANGE];
104
static int arfgf_low_motion_minq_12[MODE_NUM][RES_NUM][QINDEX_RANGE];
105
static int arfgf_high_motion_minq_12[MODE_NUM][RES_NUM][QINDEX_RANGE];
106
static int inter_minq_12[MODE_NUM][RES_NUM][QINDEX_RANGE];
107
static int rtc_minq_12[QINDEX_RANGE];
108
109
static int gf_high_1 = 2875;
110
static int gf_low_1 = 562;
111
static int gf_high_2 = 4994;
112
static int gf_low_2 = 100;
113
114
static int kf_high = 8000;
115
static int kf_low = 553;
116
117
static int gf_high_rtc = 2400;
118
static int gf_low_rtc = 300;
119
static int kf_high_rtc = 5000;
120
static int kf_low_rtc = 400;
121
122
// How many times less pixels there are to encode given the current scaling.
123
// Temporary replacement for rcf_mult and rate_thresh_mult.
124
static double resize_rate_factor(const FrameDimensionCfg *const frm_dim_cfg,
125
0
                                 int width, int height) {
126
0
  return (double)(frm_dim_cfg->width * frm_dim_cfg->height) / (width * height);
127
0
}
128
129
// Functions to compute the active minq lookup table entries based on a
130
// formulaic approach to facilitate easier adjustment of the Q tables.
131
// The formulae were derived from computing a 3rd order polynomial best
132
// fit to the original data (after plotting real maxq vs minq (not q index))
133
static int get_minq_index(double maxq, double x3, double x2, double x1,
134
0
                          aom_bit_depth_t bit_depth) {
135
0
  const double minqtarget = AOMMIN(((x3 * maxq + x2) * maxq + x1) * maxq, maxq);
136
137
  // Special case handling to deal with the step from q2.0
138
  // down to lossless mode represented by q 1.0.
139
0
  if (minqtarget <= 2.0) return 0;
140
141
0
  return av1_find_qindex(minqtarget, bit_depth, 0, QINDEX_RANGE - 1);
142
0
}
143
144
static double x1[MODE_NUM][RES_NUM][5] = {
145
  {
146
      { 0.1771, 0.379, 0.3279, 0.6634, 1.385 },
147
      { 0.1917, 0.3760, 0.34570, 0.6916, 1.14820 },
148
  },
149
  {
150
      { 0.15, 0.45, 0.30, 0.55, 0.90 },
151
      { 0.15, 0.45, 0.30, 0.55, 0.90 },
152
  },
153
};
154
155
static void init_minq_luts(int kf_low_m[MODE_NUM][RES_NUM][QINDEX_RANGE],
156
                           int kf_high_m[MODE_NUM][RES_NUM][QINDEX_RANGE],
157
                           int arfgf_low[MODE_NUM][RES_NUM][QINDEX_RANGE],
158
                           int arfgf_high[MODE_NUM][RES_NUM][QINDEX_RANGE],
159
                           int inter[MODE_NUM][RES_NUM][QINDEX_RANGE], int *rtc,
160
0
                           aom_bit_depth_t bit_depth) {
161
0
  int i;
162
0
  for (int mode = 0; mode < MODE_NUM; mode++) {
163
0
    for (int res = 0; res < RES_NUM; res++) {
164
0
      for (i = 0; i < QINDEX_RANGE; i++) {
165
0
        const double maxq = av1_convert_qindex_to_q(i, bit_depth);
166
0
        kf_low_m[mode][res][i] = get_minq_index(maxq, 0.000001, -0.0004,
167
0
                                                x1[mode][res][0], bit_depth);
168
0
        kf_high_m[mode][res][i] = get_minq_index(maxq, 0.0000021, -0.00125,
169
0
                                                 x1[mode][res][1], bit_depth);
170
0
        arfgf_low[mode][res][i] = get_minq_index(maxq, 0.0000015, -0.0009,
171
0
                                                 x1[mode][res][2], bit_depth);
172
0
        arfgf_high[mode][res][i] = get_minq_index(maxq, 0.0000021, -0.00125,
173
0
                                                  x1[mode][res][3], bit_depth);
174
0
        inter[mode][res][i] = get_minq_index(maxq, 0.00000271, -0.00113,
175
0
                                             x1[mode][res][4], bit_depth);
176
0
        rtc[i] = get_minq_index(maxq, 0.00000271, -0.00113, 0.70, bit_depth);
177
0
      }
178
0
    }
179
0
  }
180
0
}
181
182
0
static void rc_init_minq_luts(void) {
183
0
  init_minq_luts(kf_low_motion_minq_8, kf_high_motion_minq_8,
184
0
                 arfgf_low_motion_minq_8, arfgf_high_motion_minq_8,
185
0
                 inter_minq_8, rtc_minq_8, AOM_BITS_8);
186
0
  init_minq_luts(kf_low_motion_minq_10, kf_high_motion_minq_10,
187
0
                 arfgf_low_motion_minq_10, arfgf_high_motion_minq_10,
188
0
                 inter_minq_10, rtc_minq_10, AOM_BITS_10);
189
0
  init_minq_luts(kf_low_motion_minq_12, kf_high_motion_minq_12,
190
0
                 arfgf_low_motion_minq_12, arfgf_high_motion_minq_12,
191
0
                 inter_minq_12, rtc_minq_12, AOM_BITS_12);
192
0
}
193
194
0
void av1_rc_init_minq_luts(void) { aom_once(rc_init_minq_luts); }
195
196
// These functions use formulaic calculations to make playing with the
197
// quantizer tables easier. If necessary they can be replaced by lookup
198
// tables if and when things settle down in the experimental bitstream
199
0
double av1_convert_qindex_to_q(int qindex, aom_bit_depth_t bit_depth) {
200
  // Convert the index to a real Q value (scaled down to match old Q values)
201
0
  switch (bit_depth) {
202
0
    case AOM_BITS_8: return av1_ac_quant_QTX(qindex, 0, bit_depth) / 4.0;
203
0
    case AOM_BITS_10: return av1_ac_quant_QTX(qindex, 0, bit_depth) / 16.0;
204
0
    case AOM_BITS_12: return av1_ac_quant_QTX(qindex, 0, bit_depth) / 64.0;
205
0
    default:
206
0
      assert(0 && "bit_depth should be AOM_BITS_8, AOM_BITS_10 or AOM_BITS_12");
207
0
      return -1.0;
208
0
  }
209
0
}
210
211
0
int av1_convert_q_to_qindex(double q, aom_bit_depth_t bit_depth) {
212
0
  int qindex = MINQ;
213
214
  // Find the first qindex that matches or exceeds q.
215
  // Note: this operation can also be done with a binary search, as
216
  // av1_convert_qindex_to_q() is monotonically increasing with respect to
217
  // increasing qindex.
218
0
  while (qindex < MAXQ && av1_convert_qindex_to_q(qindex, bit_depth) < q) {
219
0
    qindex++;
220
0
  }
221
222
0
  return qindex;
223
0
}
224
225
// Gets the appropriate bpmb enumerator based on the frame and content type
226
static int get_bpmb_enumerator(FRAME_TYPE frame_type,
227
0
                               const int is_screen_content_type) {
228
0
  int enumerator;
229
230
0
  if (is_screen_content_type) {
231
0
    enumerator = (frame_type == KEY_FRAME) ? 1000000 : 750000;
232
0
  } else {
233
0
    enumerator = (frame_type == KEY_FRAME) ? 2000000 : 1500000;
234
0
  }
235
236
0
  return enumerator;
237
0
}
238
239
0
static int get_init_ratio(double sse) { return (int)(300000 / sse); }
240
241
// Adjustment based on spatial content and last encoded keyframe.
242
// Allow for increase in enumerator to reduce overshoot.
243
0
static int adjust_rtc_keyframe(const RATE_CONTROL *rc, int enumerator) {
244
  // Don't adjust if most of the image is flat.
245
0
  if (rc->perc_spatial_flat_blocks > 70) return enumerator;
246
0
  if (rc->last_encoded_size_keyframe == 0 ||
247
0
      rc->frames_since_scene_change < rc->frames_since_key) {
248
    // Very first frame, or if scene change happened after last keyframe.
249
0
    if (rc->frame_spatial_variance > 1000 ||
250
0
        (rc->frame_spatial_variance > 500 && rc->perc_spatial_flat_blocks == 0))
251
0
      return enumerator << 3;
252
0
    else if (rc->frame_spatial_variance > 500 &&
253
0
             rc->perc_spatial_flat_blocks < 10)
254
0
      return enumerator << 2;
255
0
    else if (rc->frame_spatial_variance > 400)
256
0
      return enumerator << 1;
257
0
  } else if (rc->frames_since_scene_change >= rc->frames_since_key) {
258
    // There was no scene change before previous encoded keyframe, so
259
    // use the last_encoded/target_size_keyframe.
260
0
    if (rc->last_encoded_size_keyframe > 4 * rc->last_target_size_keyframe &&
261
0
        rc->frame_spatial_variance > 500)
262
0
      return enumerator << 3;
263
0
    else if (rc->last_encoded_size_keyframe >
264
0
                 2 * rc->last_target_size_keyframe &&
265
0
             rc->frame_spatial_variance > 200)
266
0
      return enumerator << 2;
267
0
    else if (rc->last_encoded_size_keyframe > rc->last_target_size_keyframe)
268
0
      return enumerator << 1;
269
0
  }
270
0
  return enumerator;
271
0
}
272
273
int av1_rc_bits_per_mb(const AV1_COMP *cpi, FRAME_TYPE frame_type, int qindex,
274
0
                       double correction_factor, int accurate_estimate) {
275
0
  const AV1_COMMON *const cm = &cpi->common;
276
0
  const int is_screen_content_type = cpi->is_screen_content_type;
277
0
  const aom_bit_depth_t bit_depth = cm->seq_params->bit_depth;
278
0
  const double q = av1_convert_qindex_to_q(qindex, bit_depth);
279
0
  int enumerator = get_bpmb_enumerator(frame_type, is_screen_content_type);
280
281
0
  assert(correction_factor <= MAX_BPB_FACTOR &&
282
0
         correction_factor >= MIN_BPB_FACTOR);
283
284
0
  if (cpi->oxcf.rc_cfg.mode == AOM_CBR && frame_type != KEY_FRAME &&
285
0
      accurate_estimate && cpi->rec_sse != UINT64_MAX) {
286
0
    const int mbs = cm->mi_params.MBs;
287
0
    const double sse_sqrt =
288
0
        (double)((int)sqrt((double)(cpi->rec_sse)) << BPER_MB_NORMBITS) /
289
0
        (double)mbs;
290
0
    const int ratio = (cpi->rc.bit_est_ratio == 0) ? get_init_ratio(sse_sqrt)
291
0
                                                   : cpi->rc.bit_est_ratio;
292
    // Clamp the enumerator to lower the q fluctuations.
293
0
    enumerator = clamp((int)(ratio * sse_sqrt), 20000, 170000);
294
0
  } else if (cpi->oxcf.rc_cfg.mode == AOM_CBR && frame_type == KEY_FRAME &&
295
0
             cpi->sf.rt_sf.rc_adjust_keyframe && bit_depth == 8 &&
296
0
             cpi->oxcf.rc_cfg.max_intra_bitrate_pct > 0 &&
297
0
             cpi->svc.spatial_layer_id == 0) {
298
0
    enumerator = adjust_rtc_keyframe(&cpi->rc, enumerator);
299
0
  }
300
  // q based adjustment to baseline enumerator
301
0
  return (int)(enumerator * correction_factor / q);
302
0
}
303
304
int av1_estimate_bits_at_q(const AV1_COMP *cpi, int q,
305
0
                           double correction_factor) {
306
0
  const AV1_COMMON *const cm = &cpi->common;
307
0
  const FRAME_TYPE frame_type = cm->current_frame.frame_type;
308
0
  const int mbs = cm->mi_params.MBs;
309
0
  const int bpm =
310
0
      (int)(av1_rc_bits_per_mb(cpi, frame_type, q, correction_factor,
311
0
                               cpi->sf.hl_sf.accurate_bit_estimate));
312
0
  return AOMMAX(FRAME_OVERHEAD_BITS,
313
0
                (int)((uint64_t)bpm * mbs) >> BPER_MB_NORMBITS);
314
0
}
315
316
static int clamp_pframe_target_size(const AV1_COMP *const cpi, int64_t target,
317
0
                                    FRAME_UPDATE_TYPE frame_update_type) {
318
0
  const RATE_CONTROL *rc = &cpi->rc;
319
0
  const RateControlCfg *const rc_cfg = &cpi->oxcf.rc_cfg;
320
0
  const int min_frame_target =
321
0
      AOMMAX(rc->min_frame_bandwidth, rc->avg_frame_bandwidth >> 5);
322
  // Clip the frame target to the minimum setup value.
323
0
  if (frame_update_type == OVERLAY_UPDATE ||
324
0
      frame_update_type == INTNL_OVERLAY_UPDATE) {
325
    // If there is an active ARF at this location use the minimum
326
    // bits on this frame even if it is a constructed arf.
327
    // The active maximum quantizer insures that an appropriate
328
    // number of bits will be spent if needed for constructed ARFs.
329
0
    target = min_frame_target;
330
0
  } else if (target < min_frame_target) {
331
0
    target = min_frame_target;
332
0
  }
333
334
  // Clip the frame target to the maximum allowed value.
335
0
  if (target > rc->max_frame_bandwidth) target = rc->max_frame_bandwidth;
336
0
  if (rc_cfg->max_inter_bitrate_pct) {
337
0
    const int64_t max_rate =
338
0
        (int64_t)rc->avg_frame_bandwidth * rc_cfg->max_inter_bitrate_pct / 100;
339
0
    target = AOMMIN(target, max_rate);
340
0
  }
341
342
0
  return (int)target;
343
0
}
344
345
0
static int clamp_iframe_target_size(const AV1_COMP *const cpi, int64_t target) {
346
0
  const RATE_CONTROL *rc = &cpi->rc;
347
0
  const RateControlCfg *const rc_cfg = &cpi->oxcf.rc_cfg;
348
0
  if (rc_cfg->max_intra_bitrate_pct) {
349
0
    const int64_t max_rate =
350
0
        (int64_t)rc->avg_frame_bandwidth * rc_cfg->max_intra_bitrate_pct / 100;
351
0
    target = AOMMIN(target, max_rate);
352
0
  }
353
0
  if (target > rc->max_frame_bandwidth) target = rc->max_frame_bandwidth;
354
0
  return (int)target;
355
0
}
356
357
// Update the buffer level for higher temporal layers, given the encoded current
358
// temporal layer.
359
static void update_layer_buffer_level(SVC *svc, int encoded_frame_size,
360
0
                                      bool is_screen) {
361
0
  const int current_temporal_layer = svc->temporal_layer_id;
362
0
  for (int i = current_temporal_layer + 1; i < svc->number_temporal_layers;
363
0
       ++i) {
364
0
    const int layer =
365
0
        LAYER_IDS_TO_IDX(svc->spatial_layer_id, i, svc->number_temporal_layers);
366
0
    LAYER_CONTEXT *lc = &svc->layer_context[layer];
367
0
    PRIMARY_RATE_CONTROL *lp_rc = &lc->p_rc;
368
0
    lp_rc->bits_off_target +=
369
0
        (int)round(lc->target_bandwidth / lc->framerate) - encoded_frame_size;
370
    // Clip buffer level to maximum buffer size for the layer.
371
0
    lp_rc->bits_off_target =
372
0
        AOMMIN(lp_rc->bits_off_target, lp_rc->maximum_buffer_size);
373
0
    lp_rc->buffer_level = lp_rc->bits_off_target;
374
375
    // For screen-content mode: don't let buffer level go below threshold,
376
    // given here as -rc->maximum_ buffer_size, to allow buffer to come back
377
    // up sooner after slide change with big overshoot.
378
0
    if (is_screen) {
379
0
      lp_rc->bits_off_target =
380
0
          AOMMAX(lp_rc->bits_off_target, -lp_rc->maximum_buffer_size);
381
0
      lp_rc->buffer_level = lp_rc->bits_off_target;
382
0
    }
383
0
  }
384
0
}
385
// Update the buffer level: leaky bucket model.
386
0
static void update_buffer_level(AV1_COMP *cpi, int encoded_frame_size) {
387
0
  const AV1_COMMON *const cm = &cpi->common;
388
0
  RATE_CONTROL *const rc = &cpi->rc;
389
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
390
391
  // Non-viewable frames are a special case and are treated as pure overhead.
392
0
  if (!cm->show_frame)
393
0
    p_rc->bits_off_target -= encoded_frame_size;
394
0
  else
395
0
    p_rc->bits_off_target += rc->avg_frame_bandwidth - encoded_frame_size;
396
397
  // Clip the buffer level to the maximum specified buffer size.
398
0
  p_rc->bits_off_target =
399
0
      AOMMIN(p_rc->bits_off_target, p_rc->maximum_buffer_size);
400
  // For screen-content mode: don't let buffer level go below threshold,
401
  // given here as -rc->maximum_ buffer_size, to allow buffer to come back
402
  // up sooner after slide change with big overshoot.
403
0
  if (cpi->oxcf.tune_cfg.content == AOM_CONTENT_SCREEN)
404
0
    p_rc->bits_off_target =
405
0
        AOMMAX(p_rc->bits_off_target, -p_rc->maximum_buffer_size);
406
0
  p_rc->buffer_level = p_rc->bits_off_target;
407
408
0
  if (cpi->ppi->use_svc)
409
0
    update_layer_buffer_level(&cpi->svc, encoded_frame_size,
410
0
                              cpi->oxcf.tune_cfg.content == AOM_CONTENT_SCREEN);
411
412
#if CONFIG_FPMT_TEST
413
  /* The variable temp_buffer_level is introduced for quality
414
   * simulation purpose, it retains the value previous to the parallel
415
   * encode frames. The variable is updated based on the update flag.
416
   *
417
   * If there exist show_existing_frames between parallel frames, then to
418
   * retain the temp state do not update it. */
419
  int show_existing_between_parallel_frames =
420
      (cpi->ppi->gf_group.update_type[cpi->gf_frame_index] ==
421
           INTNL_OVERLAY_UPDATE &&
422
       cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index + 1] == 2);
423
424
  if (cpi->do_frame_data_update && !show_existing_between_parallel_frames &&
425
      cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE) {
426
    p_rc->temp_buffer_level = p_rc->buffer_level;
427
  }
428
#endif
429
0
}
430
431
int av1_rc_get_default_min_gf_interval(int width, int height,
432
0
                                       double framerate) {
433
  // Assume we do not need any constraint lower than 4K 20 fps
434
0
  static const double factor_safe = 3840 * 2160 * 20.0;
435
0
  const double factor = (double)width * height * framerate;
436
0
  const int default_interval =
437
0
      clamp((int)(framerate * 0.125), MIN_GF_INTERVAL, MAX_GF_INTERVAL);
438
439
0
  if (factor <= factor_safe)
440
0
    return default_interval;
441
0
  else
442
0
    return AOMMAX(default_interval,
443
0
                  (int)(MIN_GF_INTERVAL * factor / factor_safe + 0.5));
444
  // Note this logic makes:
445
  // 4K24: 5
446
  // 4K30: 6
447
  // 4K60: 12
448
0
}
449
450
// Note get_default_max_gf_interval() requires the min_gf_interval to
451
// be passed in to ensure that the max_gf_interval returned is at least as big
452
// as that.
453
0
static int get_default_max_gf_interval(double framerate, int min_gf_interval) {
454
0
  int interval = AOMMIN(MAX_GF_INTERVAL, (int)(framerate * 0.75));
455
0
  interval += (interval & 0x01);  // Round to even value
456
0
  interval = AOMMAX(MAX_GF_INTERVAL, interval);
457
0
  return AOMMAX(interval, min_gf_interval);
458
0
}
459
460
void av1_primary_rc_init(const AV1EncoderConfig *oxcf,
461
0
                         PRIMARY_RATE_CONTROL *p_rc) {
462
0
  const RateControlCfg *const rc_cfg = &oxcf->rc_cfg;
463
464
0
  int worst_allowed_q = rc_cfg->worst_allowed_q;
465
466
0
  int min_gf_interval = oxcf->gf_cfg.min_gf_interval;
467
0
  int max_gf_interval = oxcf->gf_cfg.max_gf_interval;
468
0
  if (min_gf_interval == 0)
469
0
    min_gf_interval = av1_rc_get_default_min_gf_interval(
470
0
        oxcf->frm_dim_cfg.width, oxcf->frm_dim_cfg.height,
471
0
        oxcf->input_cfg.init_framerate);
472
0
  if (max_gf_interval == 0)
473
0
    max_gf_interval = get_default_max_gf_interval(
474
0
        oxcf->input_cfg.init_framerate, min_gf_interval);
475
0
  p_rc->baseline_gf_interval = (min_gf_interval + max_gf_interval) / 2;
476
0
  p_rc->this_key_frame_forced = 0;
477
0
  p_rc->next_key_frame_forced = 0;
478
0
  p_rc->ni_frames = 0;
479
480
0
  p_rc->tot_q = 0.0;
481
0
  p_rc->total_actual_bits = 0;
482
0
  p_rc->total_target_bits = 0;
483
0
  p_rc->buffer_level = p_rc->starting_buffer_level;
484
485
0
  if (oxcf->target_seq_level_idx[0] < SEQ_LEVELS) {
486
0
    worst_allowed_q = 255;
487
0
  }
488
0
  if (oxcf->pass == AOM_RC_ONE_PASS && rc_cfg->mode == AOM_CBR) {
489
0
    p_rc->avg_frame_qindex[KEY_FRAME] = worst_allowed_q;
490
0
    p_rc->avg_frame_qindex[INTER_FRAME] = worst_allowed_q;
491
0
  } else {
492
0
    p_rc->avg_frame_qindex[KEY_FRAME] =
493
0
        (worst_allowed_q + rc_cfg->best_allowed_q) / 2;
494
0
    p_rc->avg_frame_qindex[INTER_FRAME] =
495
0
        (worst_allowed_q + rc_cfg->best_allowed_q) / 2;
496
0
  }
497
0
  p_rc->avg_q = av1_convert_qindex_to_q(rc_cfg->worst_allowed_q,
498
0
                                        oxcf->tool_cfg.bit_depth);
499
0
  p_rc->last_q[KEY_FRAME] = rc_cfg->best_allowed_q;
500
0
  p_rc->last_q[INTER_FRAME] = rc_cfg->worst_allowed_q;
501
502
0
  for (int i = 0; i < RATE_FACTOR_LEVELS; ++i) {
503
0
    p_rc->rate_correction_factors[i] = 0.7;
504
0
  }
505
0
  p_rc->rate_correction_factors[KF_STD] = 1.0;
506
0
  p_rc->bits_off_target = p_rc->starting_buffer_level;
507
508
0
  p_rc->rolling_target_bits = AOMMAX(
509
0
      1, (int)(oxcf->rc_cfg.target_bandwidth / oxcf->input_cfg.init_framerate));
510
0
  p_rc->rolling_actual_bits = AOMMAX(
511
0
      1, (int)(oxcf->rc_cfg.target_bandwidth / oxcf->input_cfg.init_framerate));
512
0
}
513
514
0
void av1_rc_init(const AV1EncoderConfig *oxcf, RATE_CONTROL *rc) {
515
0
  const RateControlCfg *const rc_cfg = &oxcf->rc_cfg;
516
517
0
  rc->frames_since_key = 8;  // Sensible default for first frame.
518
0
  rc->frames_to_fwd_kf = oxcf->kf_cfg.fwd_kf_dist;
519
520
0
  rc->frames_till_gf_update_due = 0;
521
0
  rc->ni_av_qi = rc_cfg->worst_allowed_q;
522
0
  rc->ni_tot_qi = 0;
523
524
0
  rc->min_gf_interval = oxcf->gf_cfg.min_gf_interval;
525
0
  rc->max_gf_interval = oxcf->gf_cfg.max_gf_interval;
526
0
  if (rc->min_gf_interval == 0)
527
0
    rc->min_gf_interval = av1_rc_get_default_min_gf_interval(
528
0
        oxcf->frm_dim_cfg.width, oxcf->frm_dim_cfg.height,
529
0
        oxcf->input_cfg.init_framerate);
530
0
  if (rc->max_gf_interval == 0)
531
0
    rc->max_gf_interval = get_default_max_gf_interval(
532
0
        oxcf->input_cfg.init_framerate, rc->min_gf_interval);
533
0
  rc->avg_frame_low_motion = 0;
534
535
0
  rc->resize_state = ORIG;
536
0
  rc->resize_avg_qp = 0;
537
0
  rc->resize_buffer_underflow = 0;
538
0
  rc->resize_count = 0;
539
0
  rc->rtc_external_ratectrl = 0;
540
0
  rc->frame_level_fast_extra_bits = 0;
541
0
  rc->use_external_qp_one_pass = 0;
542
0
  rc->percent_blocks_inactive = 0;
543
0
  rc->force_max_q = 0;
544
0
  rc->postencode_drop = 0;
545
0
  rc->frames_since_scene_change = 0;
546
0
  rc->last_frame_low_source_sad = 0;
547
0
}
548
549
static bool check_buffer_below_thresh(AV1_COMP *cpi, int64_t buffer_level,
550
0
                                      int drop_mark) {
551
0
  SVC *svc = &cpi->svc;
552
0
  if (!cpi->ppi->use_svc || cpi->svc.number_spatial_layers == 1 ||
553
0
      cpi->svc.framedrop_mode == AOM_LAYER_DROP) {
554
0
    return (buffer_level <= drop_mark);
555
0
  } else {
556
    // For SVC in the AOM_FULL_SUPERFRAME_DROP): the condition on
557
    // buffer is checked on current and upper spatial layers.
558
0
    for (int i = svc->spatial_layer_id; i < svc->number_spatial_layers; ++i) {
559
0
      const int layer = LAYER_IDS_TO_IDX(i, svc->temporal_layer_id,
560
0
                                         svc->number_temporal_layers);
561
0
      LAYER_CONTEXT *lc = &svc->layer_context[layer];
562
0
      PRIMARY_RATE_CONTROL *lrc = &lc->p_rc;
563
      // Exclude check for layer whose bitrate is 0.
564
0
      if (lc->target_bandwidth > 0) {
565
0
        const int drop_thresh = cpi->oxcf.rc_cfg.drop_frames_water_mark;
566
0
        const int drop_mark_layer =
567
0
            (int)(drop_thresh * lrc->optimal_buffer_level / 100);
568
0
        if (lrc->buffer_level <= drop_mark_layer) return true;
569
0
      }
570
0
    }
571
0
    return false;
572
0
  }
573
0
}
574
575
0
int av1_rc_drop_frame(AV1_COMP *cpi) {
576
0
  const AV1EncoderConfig *oxcf = &cpi->oxcf;
577
0
  RATE_CONTROL *const rc = &cpi->rc;
578
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
579
#if CONFIG_FPMT_TEST
580
  const int simulate_parallel_frame =
581
      cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0 &&
582
      cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE;
583
  int64_t buffer_level =
584
      simulate_parallel_frame ? p_rc->temp_buffer_level : p_rc->buffer_level;
585
#else
586
0
  int64_t buffer_level = p_rc->buffer_level;
587
0
#endif
588
  // Never drop on key frame, or for frame whose base layer is key.
589
  // If drop_count_consec hits or exceeds max_consec_drop then don't drop.
590
0
  if (cpi->common.current_frame.frame_type == KEY_FRAME ||
591
0
      (cpi->ppi->use_svc &&
592
0
       cpi->svc.layer_context[cpi->svc.temporal_layer_id].is_key_frame) ||
593
0
      !oxcf->rc_cfg.drop_frames_water_mark ||
594
0
      (rc->max_consec_drop > 0 &&
595
0
       rc->drop_count_consec >= rc->max_consec_drop)) {
596
0
    return 0;
597
0
  } else {
598
0
    SVC *svc = &cpi->svc;
599
    // In the full_superframe framedrop mode for svc, if the previous spatial
600
    // layer was dropped, drop the current spatial layer.
601
0
    if (cpi->ppi->use_svc && svc->spatial_layer_id > 0 &&
602
0
        svc->drop_spatial_layer[svc->spatial_layer_id - 1] &&
603
0
        svc->framedrop_mode == AOM_FULL_SUPERFRAME_DROP)
604
0
      return 1;
605
    // -1 is passed here for drop_mark since we are checking if
606
    // buffer goes below 0 (<= -1).
607
0
    if (check_buffer_below_thresh(cpi, buffer_level, -1)) {
608
      // Always drop if buffer is below 0.
609
0
      rc->drop_count_consec++;
610
0
      return 1;
611
0
    } else {
612
      // If buffer is below drop_mark, for now just drop every other frame
613
      // (starting with the next frame) until it increases back over drop_mark.
614
0
      const int drop_mark = (int)(oxcf->rc_cfg.drop_frames_water_mark *
615
0
                                  p_rc->optimal_buffer_level / 100);
616
0
      const bool buffer_below_thresh =
617
0
          check_buffer_below_thresh(cpi, buffer_level, drop_mark);
618
0
      if (!buffer_below_thresh && rc->decimation_factor > 0) {
619
0
        --rc->decimation_factor;
620
0
      } else if (buffer_below_thresh && rc->decimation_factor == 0) {
621
0
        rc->decimation_factor = 1;
622
0
      }
623
0
      if (rc->decimation_factor > 0) {
624
0
        if (rc->decimation_count > 0) {
625
0
          --rc->decimation_count;
626
0
          rc->drop_count_consec++;
627
0
          return 1;
628
0
        } else {
629
0
          rc->decimation_count = rc->decimation_factor;
630
0
          return 0;
631
0
        }
632
0
      } else {
633
0
        rc->decimation_count = 0;
634
0
        return 0;
635
0
      }
636
0
    }
637
0
  }
638
0
}
639
640
static int adjust_q_cbr(const AV1_COMP *cpi, int q, int active_worst_quality,
641
0
                        int width, int height) {
642
0
  const RATE_CONTROL *const rc = &cpi->rc;
643
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
644
0
  const AV1_COMMON *const cm = &cpi->common;
645
0
  const SVC *const svc = &cpi->svc;
646
0
  const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
647
  // Flag to indicate previous frame has overshoot, and buffer level
648
  // for current frame is low (less than ~half of optimal). For such
649
  // (inter) frames, if the source_sad is non-zero, relax the max_delta_up
650
  // and clamp applied below.
651
0
  const bool overshoot_buffer_low =
652
0
      cpi->rc.rc_1_frame == -1 && rc->frame_source_sad > 1000 &&
653
0
      p_rc->buffer_level < (p_rc->optimal_buffer_level >> 1) &&
654
0
      rc->frames_since_key > 4;
655
0
  int max_delta_down;
656
0
  int max_delta_up = overshoot_buffer_low ? 120 : 20;
657
0
  const int change_avg_frame_bandwidth =
658
0
      abs(rc->avg_frame_bandwidth - rc->prev_avg_frame_bandwidth) >
659
0
      0.1 * (rc->avg_frame_bandwidth);
660
661
  // Set the maximum adjustment down for Q for this frame.
662
0
  if (cpi->oxcf.q_cfg.aq_mode == CYCLIC_REFRESH_AQ &&
663
0
      cpi->cyclic_refresh->apply_cyclic_refresh) {
664
    // For static screen type content limit the Q drop till the start of the
665
    // next refresh cycle.
666
0
    if (cpi->is_screen_content_type &&
667
0
        (cpi->cyclic_refresh->sb_index > cpi->cyclic_refresh->last_sb_index)) {
668
0
      max_delta_down = clamp(rc->q_1_frame / 32, 1, 8);
669
0
    } else {
670
0
      max_delta_down = clamp(rc->q_1_frame / 8, 1, 16);
671
0
    }
672
0
    if (!cpi->ppi->use_svc && cpi->is_screen_content_type) {
673
      // Link max_delta_up to max_delta_down and buffer status.
674
0
      if (p_rc->buffer_level > p_rc->optimal_buffer_level) {
675
0
        max_delta_up = AOMMAX(4, max_delta_down);
676
0
      } else if (!overshoot_buffer_low) {
677
0
        max_delta_up = AOMMAX(8, max_delta_down);
678
0
      }
679
0
    }
680
0
  } else {
681
0
    max_delta_down = cpi->is_screen_content_type
682
0
                         ? clamp(rc->q_1_frame / 16, 1, 8)
683
0
                         : clamp(rc->q_1_frame / 8, 1, 16);
684
0
  }
685
  // For screen static content with stable buffer level: relax the
686
  // limit on max_delta_down and apply bias qp, based on buffer fullness.
687
  // Only for high speeds levels for now to avoid bdrate regression.
688
0
  if (cpi->sf.rt_sf.rc_faster_convergence_static == 1 &&
689
0
      cpi->sf.rt_sf.check_scene_detection && rc->frame_source_sad == 0 &&
690
0
      rc->static_since_last_scene_change &&
691
0
      p_rc->buffer_level > (p_rc->optimal_buffer_level >> 1) &&
692
0
      cpi->oxcf.q_cfg.aq_mode == CYCLIC_REFRESH_AQ &&
693
0
      cpi->cyclic_refresh->counter_encode_maxq_scene_change > 4) {
694
0
    int qp_delta = 32;
695
0
    int qp_bias = 16;
696
0
    if (p_rc->buffer_level > p_rc->optimal_buffer_level) {
697
0
      qp_delta = 60;
698
0
      qp_bias = 32;
699
0
    }
700
0
    if (cpi->rc.rc_1_frame == 1) q = q - qp_bias;
701
0
    max_delta_down = AOMMAX(max_delta_down, qp_delta);
702
0
    max_delta_up = AOMMIN(max_delta_up, 4);
703
0
  }
704
705
  // If resolution changes or avg_frame_bandwidth significantly changed,
706
  // then set this flag to indicate change in target bits per macroblock.
707
0
  const int change_target_bits_mb =
708
0
      cm->prev_frame &&
709
0
      (width != cm->prev_frame->width || height != cm->prev_frame->height ||
710
0
       change_avg_frame_bandwidth);
711
  // Apply some control/clamp to QP under certain conditions.
712
  // Delay the use of the clamping for svc until after num_temporal_layers,
713
  // to make they have been set for each temporal layer.
714
  // Check for rc->q_1/2_frame > 0 in case they have not been set due to
715
  // dropped frames.
716
0
  if (!frame_is_intra_only(cm) && rc->frames_since_key > 1 &&
717
0
      rc->q_1_frame > 0 && rc->q_2_frame > 0 &&
718
0
      (!cpi->ppi->use_svc ||
719
0
       svc->current_superframe > (unsigned int)svc->number_temporal_layers) &&
720
0
      !change_target_bits_mb && !cpi->rc.rtc_external_ratectrl &&
721
0
      (!cpi->oxcf.rc_cfg.gf_cbr_boost_pct ||
722
0
       !(refresh_frame->alt_ref_frame || refresh_frame->golden_frame))) {
723
    // If in the previous two frames we have seen both overshoot and undershoot
724
    // clamp Q between the two.
725
0
    if (rc->rc_1_frame * rc->rc_2_frame == -1 &&
726
0
        rc->q_1_frame != rc->q_2_frame && !overshoot_buffer_low) {
727
0
      int qclamp = clamp(q, AOMMIN(rc->q_1_frame, rc->q_2_frame),
728
0
                         AOMMAX(rc->q_1_frame, rc->q_2_frame));
729
      // If the previous frame had overshoot and the current q needs to
730
      // increase above the clamped value, reduce the clamp for faster reaction
731
      // to overshoot.
732
0
      if (cpi->rc.rc_1_frame == -1 && q > qclamp && rc->frames_since_key > 10)
733
0
        q = (q + qclamp) >> 1;
734
0
      else
735
0
        q = qclamp;
736
0
    }
737
    // Adjust Q base on source content change from scene detection.
738
0
    if (cpi->sf.rt_sf.check_scene_detection && rc->prev_avg_source_sad > 0 &&
739
0
        rc->frames_since_key > 10 && rc->frame_source_sad > 0 &&
740
0
        !cpi->rc.rtc_external_ratectrl) {
741
0
      const int bit_depth = cm->seq_params->bit_depth;
742
0
      double delta =
743
0
          (double)rc->avg_source_sad / (double)rc->prev_avg_source_sad - 1.0;
744
      // Push Q downwards if content change is decreasing and buffer level
745
      // is stable (at least 1/4-optimal level), so not overshooting. Do so
746
      // only for high Q to avoid excess overshoot.
747
      // Else reduce decrease in Q from previous frame if content change is
748
      // increasing and buffer is below max (so not undershooting).
749
0
      if (delta < 0.0 &&
750
0
          p_rc->buffer_level > (p_rc->optimal_buffer_level >> 2) &&
751
0
          q > (rc->worst_quality >> 1)) {
752
0
        double q_adj_factor = 1.0 + 0.5 * tanh(4.0 * delta);
753
0
        double q_val = av1_convert_qindex_to_q(q, bit_depth);
754
0
        q += av1_compute_qdelta(rc, q_val, q_val * q_adj_factor, bit_depth);
755
0
      } else if (rc->q_1_frame - q > 0 && delta > 0.1 &&
756
0
                 p_rc->buffer_level < AOMMIN(p_rc->maximum_buffer_size,
757
0
                                             p_rc->optimal_buffer_level << 1)) {
758
0
        q = (3 * q + rc->q_1_frame) >> 2;
759
0
      }
760
0
    }
761
    // Limit the decrease in Q from previous frame.
762
0
    if (rc->q_1_frame - q > max_delta_down) q = rc->q_1_frame - max_delta_down;
763
    // Limit the increase in Q from previous frame.
764
0
    else if (q - rc->q_1_frame > max_delta_up)
765
0
      q = rc->q_1_frame + max_delta_up;
766
0
  }
767
  // Adjustment for temporal layers.
768
0
  if (svc->number_temporal_layers > 1 && svc->spatial_layer_id == 0 &&
769
0
      !change_target_bits_mb && !cpi->rc.rtc_external_ratectrl &&
770
0
      cpi->oxcf.resize_cfg.resize_mode != RESIZE_DYNAMIC) {
771
0
    if (svc->temporal_layer_id > 0) {
772
      // Constrain enhancement relative to the previous base TL0.
773
      // Get base temporal layer TL0.
774
0
      const int layer = LAYER_IDS_TO_IDX(0, 0, svc->number_temporal_layers);
775
0
      LAYER_CONTEXT *lc = &svc->layer_context[layer];
776
      // lc->rc.avg_frame_bandwidth and lc->p_rc.last_q correspond to the
777
      // last TL0 frame.
778
0
      const int last_qindex_tl0 =
779
0
          rc->frames_since_key < svc->number_temporal_layers
780
0
              ? lc->p_rc.last_q[KEY_FRAME]
781
0
              : lc->p_rc.last_q[INTER_FRAME];
782
0
      if (rc->avg_frame_bandwidth < lc->rc.avg_frame_bandwidth &&
783
0
          q < last_qindex_tl0 - 4)
784
0
        q = last_qindex_tl0 - 4;
785
0
    } else if (cpi->svc.temporal_layer_id == 0 && !frame_is_intra_only(cm) &&
786
0
               p_rc->buffer_level > (p_rc->optimal_buffer_level >> 2) &&
787
0
               rc->frame_source_sad < 100000) {
788
      // Push base TL0 Q down if buffer is stable and frame_source_sad
789
      // is below threshold.
790
0
      int delta = (svc->number_temporal_layers == 2) ? 4 : 10;
791
0
      q = q - delta;
792
0
    }
793
0
  }
794
  // For non-svc (single layer): if resolution has increased push q closer
795
  // to the active_worst to avoid excess overshoot.
796
0
  if (!cpi->ppi->use_svc && cm->prev_frame &&
797
0
      (width * height > 1.5 * cm->prev_frame->width * cm->prev_frame->height))
798
0
    q = (q + active_worst_quality) >> 1;
799
  // For single layer RPS: Bias Q based on distance of closest reference.
800
0
  if (cpi->ppi->rtc_ref.bias_recovery_frame) {
801
0
    const int min_dist = av1_svc_get_min_ref_dist(cpi);
802
0
    q = q - AOMMIN(min_dist, 20);
803
0
  }
804
0
  return clamp(q, cpi->rc.best_quality, cpi->rc.worst_quality);
805
0
}
806
807
static const RATE_FACTOR_LEVEL rate_factor_levels[FRAME_UPDATE_TYPES] = {
808
  KF_STD,        // KF_UPDATE
809
  INTER_NORMAL,  // LF_UPDATE
810
  GF_ARF_STD,    // GF_UPDATE
811
  GF_ARF_STD,    // ARF_UPDATE
812
  INTER_NORMAL,  // OVERLAY_UPDATE
813
  INTER_NORMAL,  // INTNL_OVERLAY_UPDATE
814
  GF_ARF_LOW,    // INTNL_ARF_UPDATE
815
};
816
817
static RATE_FACTOR_LEVEL get_rate_factor_level(const GF_GROUP *const gf_group,
818
0
                                               int gf_frame_index) {
819
0
  const FRAME_UPDATE_TYPE update_type = gf_group->update_type[gf_frame_index];
820
0
  assert(update_type < FRAME_UPDATE_TYPES);
821
0
  return rate_factor_levels[update_type];
822
0
}
823
824
/*!\brief Gets a rate vs Q correction factor
825
 *
826
 * This function returns the current value of a correction factor used to
827
 * dynamically adjust the relationship between Q and the expected number
828
 * of bits for the frame.
829
 *
830
 * \ingroup rate_control
831
 * \param[in]   cpi                   Top level encoder instance structure
832
 * \param[in]   width                 Frame width
833
 * \param[in]   height                Frame height
834
 *
835
 * \return Returns a correction factor for the current frame
836
 */
837
static double get_rate_correction_factor(const AV1_COMP *cpi, int width,
838
0
                                         int height) {
839
0
  const RATE_CONTROL *const rc = &cpi->rc;
840
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
841
0
  const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
842
0
  double rcf;
843
0
  double rate_correction_factors_kfstd;
844
0
  double rate_correction_factors_gfarfstd;
845
0
  double rate_correction_factors_internormal;
846
847
0
  rate_correction_factors_kfstd =
848
0
      (cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0)
849
0
          ? rc->frame_level_rate_correction_factors[KF_STD]
850
0
          : p_rc->rate_correction_factors[KF_STD];
851
0
  rate_correction_factors_gfarfstd =
852
0
      (cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0)
853
0
          ? rc->frame_level_rate_correction_factors[GF_ARF_STD]
854
0
          : p_rc->rate_correction_factors[GF_ARF_STD];
855
0
  rate_correction_factors_internormal =
856
0
      (cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0)
857
0
          ? rc->frame_level_rate_correction_factors[INTER_NORMAL]
858
0
          : p_rc->rate_correction_factors[INTER_NORMAL];
859
860
0
  if (cpi->common.current_frame.frame_type == KEY_FRAME) {
861
0
    rcf = rate_correction_factors_kfstd;
862
0
  } else if (is_stat_consumption_stage(cpi)) {
863
0
    const RATE_FACTOR_LEVEL rf_lvl =
864
0
        get_rate_factor_level(&cpi->ppi->gf_group, cpi->gf_frame_index);
865
0
    double rate_correction_factors_rflvl =
866
0
        (cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0)
867
0
            ? rc->frame_level_rate_correction_factors[rf_lvl]
868
0
            : p_rc->rate_correction_factors[rf_lvl];
869
0
    rcf = rate_correction_factors_rflvl;
870
0
  } else {
871
0
    if ((refresh_frame->alt_ref_frame || refresh_frame->golden_frame) &&
872
0
        !rc->is_src_frame_alt_ref && !cpi->ppi->use_svc &&
873
0
        (cpi->oxcf.rc_cfg.mode != AOM_CBR ||
874
0
         cpi->oxcf.rc_cfg.gf_cbr_boost_pct > 20))
875
0
      rcf = rate_correction_factors_gfarfstd;
876
0
    else
877
0
      rcf = rate_correction_factors_internormal;
878
0
  }
879
0
  rcf *= resize_rate_factor(&cpi->oxcf.frm_dim_cfg, width, height);
880
0
  return fclamp(rcf, MIN_BPB_FACTOR, MAX_BPB_FACTOR);
881
0
}
882
883
/*!\brief Sets a rate vs Q correction factor
884
 *
885
 * This function updates the current value of a correction factor used to
886
 * dynamically adjust the relationship between Q and the expected number
887
 * of bits for the frame.
888
 *
889
 * \ingroup rate_control
890
 * \param[in]   cpi                   Top level encoder instance structure
891
 * \param[in]   is_encode_stage       Indicates if recode loop or post-encode
892
 * \param[in]   factor                New correction factor
893
 * \param[in]   width                 Frame width
894
 * \param[in]   height                Frame height
895
 *
896
 * \remark Updates the rate correction factor for the
897
 *         current frame type in cpi->rc.
898
 */
899
static void set_rate_correction_factor(AV1_COMP *cpi, int is_encode_stage,
900
0
                                       double factor, int width, int height) {
901
0
  RATE_CONTROL *const rc = &cpi->rc;
902
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
903
0
  const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
904
0
  int update_default_rcf = 1;
905
  // Normalize RCF to account for the size-dependent scaling factor.
906
0
  factor /= resize_rate_factor(&cpi->oxcf.frm_dim_cfg, width, height);
907
908
0
  factor = fclamp(factor, MIN_BPB_FACTOR, MAX_BPB_FACTOR);
909
910
0
  if (cpi->common.current_frame.frame_type == KEY_FRAME) {
911
0
    p_rc->rate_correction_factors[KF_STD] = factor;
912
0
  } else if (is_stat_consumption_stage(cpi)) {
913
0
    const RATE_FACTOR_LEVEL rf_lvl =
914
0
        get_rate_factor_level(&cpi->ppi->gf_group, cpi->gf_frame_index);
915
0
    if (is_encode_stage &&
916
0
        cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0) {
917
0
      rc->frame_level_rate_correction_factors[rf_lvl] = factor;
918
0
      update_default_rcf = 0;
919
0
    }
920
0
    if (update_default_rcf) p_rc->rate_correction_factors[rf_lvl] = factor;
921
0
  } else {
922
0
    if ((refresh_frame->alt_ref_frame || refresh_frame->golden_frame) &&
923
0
        !rc->is_src_frame_alt_ref && !cpi->ppi->use_svc &&
924
0
        (cpi->oxcf.rc_cfg.mode != AOM_CBR ||
925
0
         cpi->oxcf.rc_cfg.gf_cbr_boost_pct > 20)) {
926
0
      p_rc->rate_correction_factors[GF_ARF_STD] = factor;
927
0
    } else {
928
0
      if (is_encode_stage &&
929
0
          cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0) {
930
0
        rc->frame_level_rate_correction_factors[INTER_NORMAL] = factor;
931
0
        update_default_rcf = 0;
932
0
      }
933
0
      if (update_default_rcf)
934
0
        p_rc->rate_correction_factors[INTER_NORMAL] = factor;
935
0
    }
936
0
  }
937
0
}
938
939
void av1_rc_update_rate_correction_factors(AV1_COMP *cpi, int is_encode_stage,
940
0
                                           int width, int height) {
941
0
  const AV1_COMMON *const cm = &cpi->common;
942
0
  double correction_factor = 1.0;
943
0
  double rate_correction_factor =
944
0
      get_rate_correction_factor(cpi, width, height);
945
0
  double adjustment_limit;
946
0
  int projected_size_based_on_q = 0;
947
0
  int cyclic_refresh_active =
948
0
      cpi->oxcf.q_cfg.aq_mode == CYCLIC_REFRESH_AQ && cpi->common.seg.enabled;
949
950
  // Do not update the rate factors for arf overlay frames.
951
0
  if (cpi->rc.is_src_frame_alt_ref) return;
952
953
  // Don't update rate correction factors here on scene changes as
954
  // it is already reset in av1_encodedframe_overshoot_cbr(),
955
  // but reset variables related to previous frame q and size.
956
  // Note that the counter of frames since the last scene change
957
  // is only valid when cyclic refresh mode is enabled and that
958
  // this break out only applies to scene changes that are not
959
  // recorded as INTRA only key frames.
960
  // Note that av1_encodedframe_overshoot_cbr() is only entered
961
  // if cpi->sf.rt_sf.overshoot_detection_cbr == FAST_DETECTION_MAXQ
962
  // and cpi->rc.high_source_sad = 1.
963
0
  if ((cpi->oxcf.q_cfg.aq_mode == CYCLIC_REFRESH_AQ) &&
964
0
      (cpi->sf.rt_sf.overshoot_detection_cbr == FAST_DETECTION_MAXQ) &&
965
0
      cpi->rc.high_source_sad &&
966
0
      (cpi->cyclic_refresh->counter_encode_maxq_scene_change == 0) &&
967
0
      !frame_is_intra_only(cm) && !cpi->ppi->use_svc) {
968
0
    cpi->rc.q_2_frame = cm->quant_params.base_qindex;
969
0
    cpi->rc.q_1_frame = cm->quant_params.base_qindex;
970
0
    cpi->rc.rc_2_frame = 0;
971
0
    cpi->rc.rc_1_frame = 0;
972
0
    return;
973
0
  }
974
975
  // Clear down mmx registers to allow floating point in what follows
976
977
  // Work out how big we would have expected the frame to be at this Q given
978
  // the current correction factor.
979
  // Stay in double to avoid int overflow when values are large
980
0
  if (cyclic_refresh_active) {
981
0
    projected_size_based_on_q =
982
0
        av1_cyclic_refresh_estimate_bits_at_q(cpi, rate_correction_factor);
983
0
  } else {
984
0
    projected_size_based_on_q = av1_estimate_bits_at_q(
985
0
        cpi, cm->quant_params.base_qindex, rate_correction_factor);
986
0
  }
987
  // Work out a size correction factor.
988
0
  if (projected_size_based_on_q > FRAME_OVERHEAD_BITS)
989
0
    correction_factor = (double)cpi->rc.projected_frame_size /
990
0
                        (double)projected_size_based_on_q;
991
992
  // Clamp correction factor to prevent anything too extreme
993
0
  correction_factor = AOMMAX(correction_factor, 0.25);
994
995
0
  cpi->rc.q_2_frame = cpi->rc.q_1_frame;
996
0
  cpi->rc.q_1_frame = cm->quant_params.base_qindex;
997
0
  cpi->rc.rc_2_frame = cpi->rc.rc_1_frame;
998
0
  if (correction_factor > 1.1)
999
0
    cpi->rc.rc_1_frame = -1;
1000
0
  else if (correction_factor < 0.9)
1001
0
    cpi->rc.rc_1_frame = 1;
1002
0
  else
1003
0
    cpi->rc.rc_1_frame = 0;
1004
1005
  // Decide how heavily to dampen the adjustment
1006
0
  if (correction_factor > 0.0) {
1007
0
    if (cpi->is_screen_content_type) {
1008
0
      adjustment_limit =
1009
0
          0.25 + 0.5 * AOMMIN(0.5, fabs(log10(correction_factor)));
1010
0
    } else {
1011
0
      adjustment_limit =
1012
0
          0.25 + 0.75 * AOMMIN(0.5, fabs(log10(correction_factor)));
1013
0
    }
1014
0
  } else {
1015
0
    adjustment_limit = 0.75;
1016
0
  }
1017
1018
  // Adjustment to delta Q and number of blocks updated in cyclic refresh
1019
  // based on over or under shoot of target in current frame.
1020
0
  if (cyclic_refresh_active && cpi->rc.this_frame_target > 0) {
1021
0
    CYCLIC_REFRESH *const cr = cpi->cyclic_refresh;
1022
0
    if (correction_factor > 1.25) {
1023
0
      cr->percent_refresh_adjustment =
1024
0
          AOMMAX(cr->percent_refresh_adjustment - 1, -5);
1025
0
      cr->rate_ratio_qdelta_adjustment =
1026
0
          AOMMAX(cr->rate_ratio_qdelta_adjustment - 0.05, -0.0);
1027
0
    } else if (correction_factor < 0.5) {
1028
0
      cr->percent_refresh_adjustment =
1029
0
          AOMMIN(cr->percent_refresh_adjustment + 1, 5);
1030
0
      cr->rate_ratio_qdelta_adjustment =
1031
0
          AOMMIN(cr->rate_ratio_qdelta_adjustment + 0.05, 0.25);
1032
0
    }
1033
0
  }
1034
1035
0
  if (correction_factor > 1.01) {
1036
    // We are not already at the worst allowable quality
1037
0
    correction_factor = (1.0 + ((correction_factor - 1.0) * adjustment_limit));
1038
0
    rate_correction_factor = rate_correction_factor * correction_factor;
1039
    // Keep rate_correction_factor within limits
1040
0
    if (rate_correction_factor > MAX_BPB_FACTOR)
1041
0
      rate_correction_factor = MAX_BPB_FACTOR;
1042
0
  } else if (correction_factor < 0.99) {
1043
    // We are not already at the best allowable quality
1044
0
    correction_factor = 1.0 / correction_factor;
1045
0
    correction_factor = (1.0 + ((correction_factor - 1.0) * adjustment_limit));
1046
0
    correction_factor = 1.0 / correction_factor;
1047
1048
0
    rate_correction_factor = rate_correction_factor * correction_factor;
1049
1050
    // Keep rate_correction_factor within limits
1051
0
    if (rate_correction_factor < MIN_BPB_FACTOR)
1052
0
      rate_correction_factor = MIN_BPB_FACTOR;
1053
0
  }
1054
1055
0
  set_rate_correction_factor(cpi, is_encode_stage, rate_correction_factor,
1056
0
                             width, height);
1057
0
}
1058
1059
// Calculate rate for the given 'q'.
1060
static int get_bits_per_mb(const AV1_COMP *cpi, int use_cyclic_refresh,
1061
0
                           double correction_factor, int q) {
1062
0
  const AV1_COMMON *const cm = &cpi->common;
1063
0
  return use_cyclic_refresh
1064
0
             ? av1_cyclic_refresh_rc_bits_per_mb(cpi, q, correction_factor)
1065
0
             : av1_rc_bits_per_mb(cpi, cm->current_frame.frame_type, q,
1066
0
                                  correction_factor,
1067
0
                                  cpi->sf.hl_sf.accurate_bit_estimate);
1068
0
}
1069
1070
/*!\brief Searches for a Q index value predicted to give an average macro
1071
 * block rate closest to the target value.
1072
 *
1073
 * Similar to find_qindex_by_rate() function, but returns a q index with a
1074
 * rate just above or below the desired rate, depending on which of the two
1075
 * rates is closer to the desired rate.
1076
 * Also, respects the selected aq_mode when computing the rate.
1077
 *
1078
 * \ingroup rate_control
1079
 * \param[in]   desired_bits_per_mb   Target bits per mb
1080
 * \param[in]   cpi                   Top level encoder instance structure
1081
 * \param[in]   correction_factor     Current Q to rate correction factor
1082
 * \param[in]   best_qindex           Min allowed Q value.
1083
 * \param[in]   worst_qindex          Max allowed Q value.
1084
 *
1085
 * \return Returns a correction factor for the current frame
1086
 */
1087
static int find_closest_qindex_by_rate(int desired_bits_per_mb,
1088
                                       const AV1_COMP *cpi,
1089
                                       double correction_factor,
1090
0
                                       int best_qindex, int worst_qindex) {
1091
0
  const int use_cyclic_refresh = cpi->oxcf.q_cfg.aq_mode == CYCLIC_REFRESH_AQ &&
1092
0
                                 cpi->cyclic_refresh->apply_cyclic_refresh;
1093
1094
  // Find 'qindex' based on 'desired_bits_per_mb'.
1095
0
  assert(best_qindex <= worst_qindex);
1096
0
  int low = best_qindex;
1097
0
  int high = worst_qindex;
1098
0
  while (low < high) {
1099
0
    const int mid = (low + high) >> 1;
1100
0
    const int mid_bits_per_mb =
1101
0
        get_bits_per_mb(cpi, use_cyclic_refresh, correction_factor, mid);
1102
0
    if (mid_bits_per_mb > desired_bits_per_mb) {
1103
0
      low = mid + 1;
1104
0
    } else {
1105
0
      high = mid;
1106
0
    }
1107
0
  }
1108
0
  assert(low == high);
1109
1110
  // Calculate rate difference of this q index from the desired rate.
1111
0
  const int curr_q = low;
1112
0
  const int curr_bits_per_mb =
1113
0
      get_bits_per_mb(cpi, use_cyclic_refresh, correction_factor, curr_q);
1114
0
  const int curr_bit_diff = (curr_bits_per_mb <= desired_bits_per_mb)
1115
0
                                ? desired_bits_per_mb - curr_bits_per_mb
1116
0
                                : INT_MAX;
1117
0
  assert((curr_bit_diff != INT_MAX && curr_bit_diff >= 0) ||
1118
0
         curr_q == worst_qindex);
1119
1120
  // Calculate rate difference for previous q index too.
1121
0
  const int prev_q = curr_q - 1;
1122
0
  int prev_bit_diff;
1123
0
  if (curr_bit_diff == INT_MAX || curr_q == best_qindex) {
1124
0
    prev_bit_diff = INT_MAX;
1125
0
  } else {
1126
0
    const int prev_bits_per_mb =
1127
0
        get_bits_per_mb(cpi, use_cyclic_refresh, correction_factor, prev_q);
1128
0
    assert(prev_bits_per_mb > desired_bits_per_mb);
1129
0
    prev_bit_diff = prev_bits_per_mb - desired_bits_per_mb;
1130
0
  }
1131
1132
  // Pick one of the two q indices, depending on which one has rate closer to
1133
  // the desired rate.
1134
0
  return (curr_bit_diff <= prev_bit_diff) ? curr_q : prev_q;
1135
0
}
1136
1137
int av1_rc_regulate_q(const AV1_COMP *cpi, int target_bits_per_frame,
1138
                      int active_best_quality, int active_worst_quality,
1139
0
                      int width, int height) {
1140
0
  const int MBs = av1_get_MBs(width, height);
1141
0
  const double correction_factor =
1142
0
      get_rate_correction_factor(cpi, width, height);
1143
0
  const int target_bits_per_mb =
1144
0
      (int)(((uint64_t)target_bits_per_frame << BPER_MB_NORMBITS) / MBs);
1145
1146
0
  int q =
1147
0
      find_closest_qindex_by_rate(target_bits_per_mb, cpi, correction_factor,
1148
0
                                  active_best_quality, active_worst_quality);
1149
0
  if (cpi->oxcf.rc_cfg.mode == AOM_CBR && has_no_stats_stage(cpi))
1150
0
    return adjust_q_cbr(cpi, q, active_worst_quality, width, height);
1151
1152
0
  return q;
1153
0
}
1154
1155
static int get_active_quality(int q, int gfu_boost, int low, int high,
1156
0
                              int *low_motion_minq, int *high_motion_minq) {
1157
0
  if (gfu_boost > high) {
1158
0
    return low_motion_minq[q];
1159
0
  } else if (gfu_boost < low) {
1160
0
    return high_motion_minq[q];
1161
0
  } else {
1162
0
    const int gap = high - low;
1163
0
    const int offset = high - gfu_boost;
1164
0
    const int qdiff = high_motion_minq[q] - low_motion_minq[q];
1165
0
    const int adjustment = ((offset * qdiff) + (gap >> 1)) / gap;
1166
0
    return low_motion_minq[q] + adjustment;
1167
0
  }
1168
0
}
1169
1170
static int gfboost_thresh[3] = { 4000, 4000, 3000 };
1171
1172
static int get_kf_active_quality(const PRIMARY_RATE_CONTROL *const p_rc, int q,
1173
                                 aom_bit_depth_t bit_depth, const int res_idx,
1174
0
                                 const bool rtc_mode) {
1175
0
  int *kf_low_motion_minq;
1176
0
  int *kf_high_motion_minq;
1177
0
  ASSIGN_MINQ_TABLE_2(bit_depth, kf_low_motion_minq, res_idx > 1, rtc_mode);
1178
0
  ASSIGN_MINQ_TABLE_2(bit_depth, kf_high_motion_minq, res_idx > 1, rtc_mode);
1179
1180
0
  int kf_low_local = rtc_mode ? kf_low_rtc : kf_low;
1181
0
  int kf_high_local = rtc_mode ? kf_high_rtc : kf_high;
1182
1183
0
  return get_active_quality(q, p_rc->kf_boost, kf_low_local, kf_high_local,
1184
0
                            kf_low_motion_minq, kf_high_motion_minq);
1185
0
}
1186
1187
static int get_gf_active_quality_no_rc(const PRIMARY_RATE_CONTROL *const p_rc,
1188
                                       int q, aom_bit_depth_t bit_depth,
1189
0
                                       const int res_idx, const bool rtc_mode) {
1190
0
  int *arfgf_low_motion_minq;
1191
0
  int *arfgf_high_motion_minq;
1192
0
  ASSIGN_MINQ_TABLE_2(bit_depth, arfgf_low_motion_minq, res_idx > 1, rtc_mode);
1193
0
  ASSIGN_MINQ_TABLE_2(bit_depth, arfgf_high_motion_minq, res_idx > 1, rtc_mode);
1194
0
  int gf_low_local, gf_high_local;
1195
1196
0
  if (!rtc_mode) {
1197
0
    gf_low_local = (p_rc->gfu_boost_average < gfboost_thresh[res_idx])
1198
0
                       ? gf_low_1
1199
0
                       : gf_low_2;
1200
0
    gf_high_local = (p_rc->gfu_boost_average < gfboost_thresh[res_idx])
1201
0
                        ? gf_high_1
1202
0
                        : gf_high_2;
1203
0
  } else {
1204
0
    gf_low_local = gf_low_rtc;
1205
0
    gf_high_local = gf_high_rtc;
1206
0
  }
1207
1208
0
  return get_active_quality(q, p_rc->gfu_boost, gf_low_local, gf_high_local,
1209
0
                            arfgf_low_motion_minq, arfgf_high_motion_minq);
1210
0
}
1211
1212
static int get_gf_active_quality(const PRIMARY_RATE_CONTROL *const p_rc, int q,
1213
                                 aom_bit_depth_t bit_depth, const int res_idx,
1214
0
                                 const bool rtc_mode) {
1215
0
  return get_gf_active_quality_no_rc(p_rc, q, bit_depth, res_idx, rtc_mode);
1216
0
}
1217
1218
static int get_gf_high_motion_quality(int q, aom_bit_depth_t bit_depth,
1219
0
                                      const int res_idx, const bool rtc_mode) {
1220
0
  int *arfgf_high_motion_minq;
1221
0
  ASSIGN_MINQ_TABLE_2(bit_depth, arfgf_high_motion_minq, res_idx > 1, rtc_mode);
1222
0
  return arfgf_high_motion_minq[q];
1223
0
}
1224
1225
0
static int calc_active_worst_quality_no_stats_vbr(const AV1_COMP *cpi) {
1226
0
  const RATE_CONTROL *const rc = &cpi->rc;
1227
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
1228
0
  const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
1229
0
  const unsigned int curr_frame = cpi->common.current_frame.frame_number;
1230
0
  int active_worst_quality;
1231
0
  int last_q_key_frame;
1232
0
  int last_q_inter_frame;
1233
#if CONFIG_FPMT_TEST
1234
  const int simulate_parallel_frame =
1235
      cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0 &&
1236
      cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE;
1237
  last_q_key_frame = simulate_parallel_frame ? p_rc->temp_last_q[KEY_FRAME]
1238
                                             : p_rc->last_q[KEY_FRAME];
1239
  last_q_inter_frame = simulate_parallel_frame ? p_rc->temp_last_q[INTER_FRAME]
1240
                                               : p_rc->last_q[INTER_FRAME];
1241
#else
1242
0
  last_q_key_frame = p_rc->last_q[KEY_FRAME];
1243
0
  last_q_inter_frame = p_rc->last_q[INTER_FRAME];
1244
0
#endif
1245
1246
0
  if (cpi->common.current_frame.frame_type == KEY_FRAME) {
1247
0
    active_worst_quality =
1248
0
        curr_frame == 0 ? rc->worst_quality : last_q_key_frame * 2;
1249
0
  } else {
1250
0
    if (!rc->is_src_frame_alt_ref &&
1251
0
        (refresh_frame->golden_frame || refresh_frame->bwd_ref_frame ||
1252
0
         refresh_frame->alt_ref_frame)) {
1253
0
      active_worst_quality =
1254
0
          curr_frame == 1 ? last_q_key_frame * 5 / 4 : last_q_inter_frame;
1255
0
    } else {
1256
0
      active_worst_quality =
1257
0
          curr_frame == 1 ? last_q_key_frame * 2 : last_q_inter_frame * 2;
1258
0
    }
1259
0
  }
1260
0
  return AOMMIN(active_worst_quality, rc->worst_quality);
1261
0
}
1262
1263
// Adjust active_worst_quality level based on buffer level.
1264
0
static int calc_active_worst_quality_no_stats_cbr(const AV1_COMP *cpi) {
1265
  // Adjust active_worst_quality: If buffer is above the optimal/target level,
1266
  // bring active_worst_quality down depending on fullness of buffer.
1267
  // If buffer is below the optimal level, let the active_worst_quality go from
1268
  // ambient Q (at buffer = optimal level) to worst_quality level
1269
  // (at buffer = critical level).
1270
0
  const AV1_COMMON *const cm = &cpi->common;
1271
0
  const RATE_CONTROL *rc = &cpi->rc;
1272
0
  const PRIMARY_RATE_CONTROL *p_rc = &cpi->ppi->p_rc;
1273
0
  const SVC *const svc = &cpi->svc;
1274
0
  unsigned int num_frames_weight_key = 5 * cpi->svc.number_temporal_layers;
1275
  // Buffer level below which we push active_worst to worst_quality.
1276
0
  int64_t critical_level = p_rc->optimal_buffer_level >> 3;
1277
0
  int64_t buff_lvl_step = 0;
1278
0
  int adjustment = 0;
1279
0
  int active_worst_quality;
1280
0
  int ambient_qp;
1281
0
  if (frame_is_intra_only(cm)) {
1282
    // Allow for active_worst_quality to go lower than rc->worst_quality (max)
1283
    // under certain conditions: that the frame spatial variance is below
1284
    // threshold and the buffer is full/stable. Also check the encoded vs target
1285
    // size for the last keyframe.
1286
0
    if (cpi->sf.rt_sf.rc_compute_spatial_var_sc_kf &&
1287
0
        svc->number_spatial_layers == 1 && rc->frame_spatial_variance < 1000 &&
1288
0
        p_rc->buffer_level > p_rc->optimal_buffer_level &&
1289
0
        p_rc->optimal_buffer_level > (rc->avg_frame_bandwidth << 3) &&
1290
0
        rc->last_encoded_size_keyframe < (rc->last_target_size_keyframe << 3)) {
1291
0
      if (p_rc->buffer_level > ((9 * p_rc->optimal_buffer_level) >> 3))
1292
0
        ambient_qp = p_rc->avg_frame_qindex[INTER_FRAME];
1293
0
      else
1294
0
        ambient_qp =
1295
0
            (rc->worst_quality + p_rc->avg_frame_qindex[INTER_FRAME]) >> 1;
1296
0
      return AOMMIN(rc->worst_quality, AOMMAX(ambient_qp, rc->best_quality));
1297
0
    } else {
1298
0
      return rc->worst_quality;
1299
0
    }
1300
0
  }
1301
  // For ambient_qp we use minimum of avg_frame_qindex[KEY_FRAME/INTER_FRAME]
1302
  // for the first few frames following key frame. These are both initialized
1303
  // to worst_quality and updated with (3/4, 1/4) average in postencode_update.
1304
  // So for first few frames following key, the qp of that key frame is weighted
1305
  // into the active_worst_quality setting. For SVC the key frame should
1306
  // correspond to layer (0, 0), so use that for layer context.
1307
0
  int avg_qindex_key = p_rc->avg_frame_qindex[KEY_FRAME];
1308
0
  if (svc->number_temporal_layers > 1) {
1309
0
    int layer = LAYER_IDS_TO_IDX(0, 0, svc->number_temporal_layers);
1310
0
    const LAYER_CONTEXT *lc = &svc->layer_context[layer];
1311
0
    const PRIMARY_RATE_CONTROL *const lp_rc = &lc->p_rc;
1312
0
    avg_qindex_key =
1313
0
        AOMMIN(lp_rc->avg_frame_qindex[KEY_FRAME], lp_rc->last_q[KEY_FRAME]);
1314
0
  }
1315
0
  if (svc->temporal_layer_id > 0 &&
1316
0
      rc->frames_since_key < 2 * svc->number_temporal_layers) {
1317
0
    ambient_qp = avg_qindex_key;
1318
0
  } else {
1319
0
    ambient_qp =
1320
0
        (cm->current_frame.frame_number < num_frames_weight_key)
1321
0
            ? AOMMIN(p_rc->avg_frame_qindex[INTER_FRAME], avg_qindex_key)
1322
0
            : p_rc->avg_frame_qindex[INTER_FRAME];
1323
0
  }
1324
0
  ambient_qp = AOMMIN(rc->worst_quality, ambient_qp);
1325
1326
0
  if (p_rc->buffer_level > p_rc->optimal_buffer_level) {
1327
    // Adjust down.
1328
0
    int max_adjustment_down;  // Maximum adjustment down for Q
1329
1330
0
    if (cpi->oxcf.q_cfg.aq_mode == CYCLIC_REFRESH_AQ && !cpi->ppi->use_svc &&
1331
0
        (cpi->oxcf.tune_cfg.content == AOM_CONTENT_SCREEN)) {
1332
0
      active_worst_quality = AOMMIN(rc->worst_quality, ambient_qp);
1333
0
      max_adjustment_down = AOMMIN(4, active_worst_quality / 16);
1334
0
    } else {
1335
0
      active_worst_quality = AOMMIN(rc->worst_quality, ambient_qp * 5 / 4);
1336
0
      max_adjustment_down = active_worst_quality / 3;
1337
0
    }
1338
1339
0
    if (max_adjustment_down) {
1340
0
      buff_lvl_step =
1341
0
          ((p_rc->maximum_buffer_size - p_rc->optimal_buffer_level) /
1342
0
           max_adjustment_down);
1343
0
      if (buff_lvl_step)
1344
0
        adjustment = (int)((p_rc->buffer_level - p_rc->optimal_buffer_level) /
1345
0
                           buff_lvl_step);
1346
0
      active_worst_quality -= adjustment;
1347
0
    }
1348
0
  } else if (p_rc->buffer_level > critical_level) {
1349
    // Adjust up from ambient Q.
1350
0
    active_worst_quality = AOMMIN(rc->worst_quality, ambient_qp);
1351
0
    if (critical_level) {
1352
0
      buff_lvl_step = (p_rc->optimal_buffer_level - critical_level);
1353
0
      if (buff_lvl_step) {
1354
0
        adjustment = (int)((rc->worst_quality - ambient_qp) *
1355
0
                           (p_rc->optimal_buffer_level - p_rc->buffer_level) /
1356
0
                           buff_lvl_step);
1357
0
      }
1358
0
      active_worst_quality += adjustment;
1359
0
    }
1360
0
  } else {
1361
    // Set to worst_quality if buffer is below critical level.
1362
0
    active_worst_quality = rc->worst_quality;
1363
0
  }
1364
0
  return active_worst_quality;
1365
0
}
1366
1367
// Calculate the active_best_quality level.
1368
static int calc_active_best_quality_no_stats_cbr(const AV1_COMP *cpi,
1369
                                                 int active_worst_quality,
1370
0
                                                 int width, int height) {
1371
0
  const AV1_COMMON *const cm = &cpi->common;
1372
0
  const RATE_CONTROL *const rc = &cpi->rc;
1373
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
1374
0
  const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
1375
0
  const CurrentFrame *const current_frame = &cm->current_frame;
1376
0
  int *rtc_minq;
1377
0
  const int bit_depth = cm->seq_params->bit_depth;
1378
0
  int active_best_quality = rc->best_quality;
1379
0
  ASSIGN_MINQ_TABLE(bit_depth, rtc_minq);
1380
1381
0
  const int is_608p_or_larger = AOMMIN(cm->width, cm->height) >= 608;
1382
0
  const int is_480p_or_larger = AOMMIN(cm->width, cm->height) >= 480;
1383
  // res_idx is 0 for res < 480p, 1 for 480p, 2 for 608p+
1384
0
  const int res_idx = is_480p_or_larger + is_608p_or_larger;
1385
0
  const bool rtc_mode = (cpi->oxcf.mode == REALTIME);
1386
1387
0
  if (frame_is_intra_only(cm)) {
1388
    // Handle the special case for key frames forced when we have reached
1389
    // the maximum key frame interval. Here force the Q to a range
1390
    // based on the ambient Q to reduce the risk of popping.
1391
0
    if (p_rc->this_key_frame_forced) {
1392
0
      int qindex = p_rc->last_boosted_qindex;
1393
0
      double last_boosted_q = av1_convert_qindex_to_q(qindex, bit_depth);
1394
0
      int delta_qindex = av1_compute_qdelta(rc, last_boosted_q,
1395
0
                                            (last_boosted_q * 0.75), bit_depth);
1396
0
      active_best_quality = AOMMAX(qindex + delta_qindex, rc->best_quality);
1397
0
    } else if (current_frame->frame_number > 0) {
1398
      // not first frame of one pass and kf_boost is set
1399
0
      double q_adj_factor = 1.0;
1400
0
      double q_val;
1401
0
      active_best_quality =
1402
0
          get_kf_active_quality(p_rc, p_rc->avg_frame_qindex[KEY_FRAME],
1403
0
                                bit_depth, res_idx, rtc_mode);
1404
      // Allow somewhat lower kf minq with small image formats.
1405
0
      if ((width * height) <= (352 * 288)) {
1406
0
        q_adj_factor -= 0.25;
1407
0
      }
1408
      // Convert the adjustment factor to a qindex delta
1409
      // on active_best_quality.
1410
0
      q_val = av1_convert_qindex_to_q(active_best_quality, bit_depth);
1411
0
      active_best_quality +=
1412
0
          av1_compute_qdelta(rc, q_val, q_val * q_adj_factor, bit_depth);
1413
0
    }
1414
0
  } else if (!rc->is_src_frame_alt_ref && !cpi->ppi->use_svc &&
1415
0
             cpi->oxcf.rc_cfg.gf_cbr_boost_pct &&
1416
0
             (refresh_frame->golden_frame || refresh_frame->alt_ref_frame)) {
1417
    // Use the lower of active_worst_quality and recent
1418
    // average Q as basis for GF/ARF best Q limit unless last frame was
1419
    // a key frame.
1420
0
    int q = active_worst_quality;
1421
0
    if (rc->frames_since_key > 1 &&
1422
0
        p_rc->avg_frame_qindex[INTER_FRAME] < active_worst_quality) {
1423
0
      q = p_rc->avg_frame_qindex[INTER_FRAME];
1424
0
    }
1425
0
    active_best_quality =
1426
0
        get_gf_active_quality(p_rc, q, bit_depth, res_idx, rtc_mode);
1427
0
  } else {
1428
    // Use the lower of active_worst_quality and recent/average Q.
1429
0
    FRAME_TYPE frame_type =
1430
0
        (current_frame->frame_number > 1) ? INTER_FRAME : KEY_FRAME;
1431
0
    if (p_rc->avg_frame_qindex[frame_type] < active_worst_quality)
1432
0
      active_best_quality = rtc_minq[p_rc->avg_frame_qindex[frame_type]];
1433
0
    else
1434
0
      active_best_quality = rtc_minq[active_worst_quality];
1435
0
  }
1436
0
  return active_best_quality;
1437
0
}
1438
1439
#if RT_PASSIVE_STRATEGY
1440
static int get_q_passive_strategy(const AV1_COMP *const cpi,
1441
                                  const int q_candidate, const int threshold) {
1442
  const AV1_COMMON *const cm = &cpi->common;
1443
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
1444
  const CurrentFrame *const current_frame = &cm->current_frame;
1445
  int sum = 0;
1446
  int count = 0;
1447
  int i = 1;
1448
  while (i < MAX_Q_HISTORY) {
1449
    int frame_id = current_frame->frame_number - i;
1450
    if (frame_id <= 0) break;
1451
    sum += p_rc->q_history[frame_id % MAX_Q_HISTORY];
1452
    ++count;
1453
    ++i;
1454
  }
1455
  if (count > 0) {
1456
    const int avg_q = sum / count;
1457
    if (abs(avg_q - q_candidate) <= threshold) return avg_q;
1458
  }
1459
  return q_candidate;
1460
}
1461
#endif  // RT_PASSIVE_STRATEGY
1462
1463
/*!\brief Picks q and q bounds given CBR rate control parameters in \c cpi->rc.
1464
 *
1465
 * Handles the special case when using:
1466
 * - Constant bit-rate mode: \c cpi->oxcf.rc_cfg.mode == \ref AOM_CBR, and
1467
 * - 1-pass encoding without LAP (look-ahead processing), so 1st pass stats are
1468
 * NOT available.
1469
 *
1470
 * \ingroup rate_control
1471
 * \param[in]       cpi          Top level encoder structure
1472
 * \param[in]       width        Coded frame width
1473
 * \param[in]       height       Coded frame height
1474
 * \param[out]      bottom_index Bottom bound for q index (best quality)
1475
 * \param[out]      top_index    Top bound for q index (worst quality)
1476
 * \return Returns selected q index to be used for encoding this frame.
1477
 */
1478
static int rc_pick_q_and_bounds_no_stats_cbr(const AV1_COMP *cpi, int width,
1479
                                             int height, int *bottom_index,
1480
0
                                             int *top_index) {
1481
0
  const AV1_COMMON *const cm = &cpi->common;
1482
0
  const RATE_CONTROL *const rc = &cpi->rc;
1483
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
1484
0
  const CurrentFrame *const current_frame = &cm->current_frame;
1485
0
  int q;
1486
0
  int active_worst_quality = calc_active_worst_quality_no_stats_cbr(cpi);
1487
0
  int active_best_quality = calc_active_best_quality_no_stats_cbr(
1488
0
      cpi, active_worst_quality, width, height);
1489
0
  assert(has_no_stats_stage(cpi));
1490
0
  assert(cpi->oxcf.rc_cfg.mode == AOM_CBR);
1491
1492
  // Clip the active best and worst quality values to limits
1493
0
  active_best_quality =
1494
0
      clamp(active_best_quality, rc->best_quality, rc->worst_quality);
1495
0
  active_worst_quality =
1496
0
      clamp(active_worst_quality, active_best_quality, rc->worst_quality);
1497
1498
0
  *top_index = active_worst_quality;
1499
0
  *bottom_index = active_best_quality;
1500
1501
  // Limit Q range for the adaptive loop.
1502
0
  if (current_frame->frame_type == KEY_FRAME && !p_rc->this_key_frame_forced &&
1503
0
      current_frame->frame_number != 0) {
1504
0
    int qdelta = 0;
1505
0
    qdelta = av1_compute_qdelta_by_rate(cpi, current_frame->frame_type,
1506
0
                                        active_worst_quality, 2.0);
1507
0
    *top_index = active_worst_quality + qdelta;
1508
0
    *top_index = AOMMAX(*top_index, *bottom_index);
1509
0
  }
1510
1511
0
  q = av1_rc_regulate_q(cpi, rc->this_frame_target, active_best_quality,
1512
0
                        active_worst_quality, width, height);
1513
#if RT_PASSIVE_STRATEGY
1514
  if (current_frame->frame_type != KEY_FRAME &&
1515
      cpi->oxcf.tune_cfg.content == AOM_CONTENT_SCREEN) {
1516
    q = get_q_passive_strategy(cpi, q, 50);
1517
  }
1518
#endif  // RT_PASSIVE_STRATEGY
1519
0
  if (q > *top_index) {
1520
    // Special case when we are targeting the max allowed rate
1521
0
    if (rc->this_frame_target >= rc->max_frame_bandwidth)
1522
0
      *top_index = q;
1523
0
    else
1524
0
      q = *top_index;
1525
0
  }
1526
1527
0
  assert(*top_index <= rc->worst_quality && *top_index >= rc->best_quality);
1528
0
  assert(*bottom_index <= rc->worst_quality &&
1529
0
         *bottom_index >= rc->best_quality);
1530
0
  assert(q <= rc->worst_quality && q >= rc->best_quality);
1531
0
  return q;
1532
0
}
1533
1534
0
static int gf_group_pyramid_level(const GF_GROUP *gf_group, int gf_index) {
1535
0
  return gf_group->layer_depth[gf_index];
1536
0
}
1537
1538
static int get_active_cq_level(const RATE_CONTROL *rc,
1539
                               const PRIMARY_RATE_CONTROL *p_rc,
1540
                               const AV1EncoderConfig *const oxcf,
1541
                               int intra_only, aom_superres_mode superres_mode,
1542
0
                               int superres_denom) {
1543
0
  const RateControlCfg *const rc_cfg = &oxcf->rc_cfg;
1544
0
  static const double cq_adjust_threshold = 0.1;
1545
0
  int active_cq_level = rc_cfg->cq_level;
1546
0
  if (rc_cfg->mode == AOM_CQ || rc_cfg->mode == AOM_Q) {
1547
0
    if ((superres_mode == AOM_SUPERRES_QTHRESH ||
1548
0
         superres_mode == AOM_SUPERRES_AUTO) &&
1549
0
        superres_denom != SCALE_NUMERATOR) {
1550
0
      int mult = SUPERRES_QADJ_PER_DENOM_KEYFRAME_SOLO;
1551
0
      if (intra_only && rc->frames_to_key <= 1) {
1552
0
        mult = 0;
1553
0
      } else if (intra_only) {
1554
0
        mult = SUPERRES_QADJ_PER_DENOM_KEYFRAME;
1555
0
      } else {
1556
0
        mult = SUPERRES_QADJ_PER_DENOM_ARFFRAME;
1557
0
      }
1558
0
      active_cq_level = AOMMAX(
1559
0
          active_cq_level - ((superres_denom - SCALE_NUMERATOR) * mult), 0);
1560
0
    }
1561
0
  }
1562
0
  if (rc_cfg->mode == AOM_CQ && p_rc->total_target_bits > 0) {
1563
0
    const double x = (double)p_rc->total_actual_bits / p_rc->total_target_bits;
1564
0
    if (x < cq_adjust_threshold) {
1565
0
      active_cq_level = (int)(active_cq_level * x / cq_adjust_threshold);
1566
0
    }
1567
0
  }
1568
0
  return active_cq_level;
1569
0
}
1570
1571
/*!\brief Picks q and q bounds given non-CBR rate control params in \c cpi->rc.
1572
 *
1573
 * Handles the special case when using:
1574
 * - Any rate control other than constant bit-rate mode:
1575
 * \c cpi->oxcf.rc_cfg.mode != \ref AOM_CBR, and
1576
 * - 1-pass encoding without LAP (look-ahead processing), so 1st pass stats are
1577
 * NOT available.
1578
 *
1579
 * \ingroup rate_control
1580
 * \param[in]       cpi          Top level encoder structure
1581
 * \param[in]       width        Coded frame width
1582
 * \param[in]       height       Coded frame height
1583
 * \param[out]      bottom_index Bottom bound for q index (best quality)
1584
 * \param[out]      top_index    Top bound for q index (worst quality)
1585
 * \return Returns selected q index to be used for encoding this frame.
1586
 */
1587
static int rc_pick_q_and_bounds_no_stats(const AV1_COMP *cpi, int width,
1588
                                         int height, int *bottom_index,
1589
0
                                         int *top_index) {
1590
0
  const AV1_COMMON *const cm = &cpi->common;
1591
0
  const RATE_CONTROL *const rc = &cpi->rc;
1592
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
1593
0
  const CurrentFrame *const current_frame = &cm->current_frame;
1594
0
  const AV1EncoderConfig *const oxcf = &cpi->oxcf;
1595
0
  const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
1596
0
  const enum aom_rc_mode rc_mode = oxcf->rc_cfg.mode;
1597
1598
0
  const int is_608p_or_larger = AOMMIN(cm->width, cm->height) >= 608;
1599
0
  const int is_480p_or_larger = AOMMIN(cm->width, cm->height) >= 480;
1600
  // res_idx is 0 for res < 480p, 1 for 480p, 2 for 608p+
1601
0
  const int res_idx = is_480p_or_larger + is_608p_or_larger;
1602
0
  const bool rtc_mode = (cpi->oxcf.mode == REALTIME);
1603
1604
0
  assert(has_no_stats_stage(cpi));
1605
0
  assert(rc_mode == AOM_VBR ||
1606
0
         (!USE_UNRESTRICTED_Q_IN_CQ_MODE && rc_mode == AOM_CQ) ||
1607
0
         rc_mode == AOM_Q);
1608
1609
0
  const int cq_level =
1610
0
      get_active_cq_level(rc, p_rc, oxcf, frame_is_intra_only(cm),
1611
0
                          cpi->superres_mode, cm->superres_scale_denominator);
1612
0
  const int bit_depth = cm->seq_params->bit_depth;
1613
1614
0
  int active_best_quality;
1615
0
  int active_worst_quality = calc_active_worst_quality_no_stats_vbr(cpi);
1616
0
  int q;
1617
0
  int *inter_minq;
1618
0
  ASSIGN_MINQ_TABLE_2(bit_depth, inter_minq, res_idx > 1, rtc_mode);
1619
1620
0
  if (frame_is_intra_only(cm)) {
1621
0
    if (rc_mode == AOM_Q) {
1622
0
      const int qindex = cq_level;
1623
0
      const double q_val = av1_convert_qindex_to_q(qindex, bit_depth);
1624
0
      const int delta_qindex =
1625
0
          av1_compute_qdelta(rc, q_val, q_val * 0.25, bit_depth);
1626
0
      active_best_quality = AOMMAX(qindex + delta_qindex, rc->best_quality);
1627
0
    } else if (p_rc->this_key_frame_forced) {
1628
#if CONFIG_FPMT_TEST
1629
      const int simulate_parallel_frame =
1630
          cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0 &&
1631
          cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE;
1632
      int qindex = simulate_parallel_frame ? p_rc->temp_last_boosted_qindex
1633
                                           : p_rc->last_boosted_qindex;
1634
#else
1635
0
      int qindex = p_rc->last_boosted_qindex;
1636
0
#endif
1637
0
      const double last_boosted_q = av1_convert_qindex_to_q(qindex, bit_depth);
1638
0
      const int delta_qindex = av1_compute_qdelta(
1639
0
          rc, last_boosted_q, last_boosted_q * 0.75, bit_depth);
1640
0
      active_best_quality = AOMMAX(qindex + delta_qindex, rc->best_quality);
1641
0
    } else {  // not first frame of one pass and kf_boost is set
1642
0
      double q_adj_factor = 1.0;
1643
1644
0
      active_best_quality =
1645
0
          get_kf_active_quality(p_rc, p_rc->avg_frame_qindex[KEY_FRAME],
1646
0
                                bit_depth, res_idx, rtc_mode);
1647
1648
      // Allow somewhat lower kf minq with small image formats.
1649
0
      if ((width * height) <= (352 * 288)) {
1650
0
        q_adj_factor -= 0.25;
1651
0
      }
1652
1653
      // Convert the adjustment factor to a qindex delta on active_best_quality.
1654
0
      {
1655
0
        const double q_val =
1656
0
            av1_convert_qindex_to_q(active_best_quality, bit_depth);
1657
0
        active_best_quality +=
1658
0
            av1_compute_qdelta(rc, q_val, q_val * q_adj_factor, bit_depth);
1659
0
      }
1660
0
    }
1661
0
  } else if (!rc->is_src_frame_alt_ref &&
1662
0
             (refresh_frame->golden_frame || refresh_frame->alt_ref_frame)) {
1663
    // Use the lower of active_worst_quality and recent
1664
    // average Q as basis for GF/ARF best Q limit unless last frame was
1665
    // a key frame.
1666
0
    q = (rc->frames_since_key > 1 &&
1667
0
         p_rc->avg_frame_qindex[INTER_FRAME] < active_worst_quality)
1668
0
            ? p_rc->avg_frame_qindex[INTER_FRAME]
1669
0
            : p_rc->avg_frame_qindex[KEY_FRAME];
1670
    // For constrained quality don't allow Q less than the cq level
1671
0
    if (rc_mode == AOM_CQ) {
1672
0
      if (q < cq_level) q = cq_level;
1673
0
      active_best_quality =
1674
0
          get_gf_active_quality(p_rc, q, bit_depth, res_idx, rtc_mode);
1675
      // Constrained quality use slightly lower active best.
1676
0
      active_best_quality = active_best_quality * 15 / 16;
1677
0
    } else if (rc_mode == AOM_Q) {
1678
0
      const int qindex = cq_level;
1679
0
      const double q_val = av1_convert_qindex_to_q(qindex, bit_depth);
1680
0
      const int delta_qindex =
1681
0
          (refresh_frame->alt_ref_frame)
1682
0
              ? av1_compute_qdelta(rc, q_val, q_val * 0.40, bit_depth)
1683
0
              : av1_compute_qdelta(rc, q_val, q_val * 0.50, bit_depth);
1684
0
      active_best_quality = AOMMAX(qindex + delta_qindex, rc->best_quality);
1685
0
    } else {
1686
0
      active_best_quality =
1687
0
          get_gf_active_quality(p_rc, q, bit_depth, res_idx, rtc_mode);
1688
0
    }
1689
0
  } else {
1690
0
    if (rc_mode == AOM_Q) {
1691
0
      const int qindex = cq_level;
1692
0
      const double q_val = av1_convert_qindex_to_q(qindex, bit_depth);
1693
0
      const double delta_rate[FIXED_GF_INTERVAL] = { 0.50, 1.0, 0.85, 1.0,
1694
0
                                                     0.70, 1.0, 0.85, 1.0 };
1695
0
      const int delta_qindex = av1_compute_qdelta(
1696
0
          rc, q_val,
1697
0
          q_val * delta_rate[current_frame->frame_number % FIXED_GF_INTERVAL],
1698
0
          bit_depth);
1699
0
      active_best_quality = AOMMAX(qindex + delta_qindex, rc->best_quality);
1700
0
    } else {
1701
      // Use the lower of active_worst_quality and recent/average Q.
1702
0
      active_best_quality =
1703
0
          (current_frame->frame_number > 1)
1704
0
              ? inter_minq[p_rc->avg_frame_qindex[INTER_FRAME]]
1705
0
              : inter_minq[p_rc->avg_frame_qindex[KEY_FRAME]];
1706
      // For the constrained quality mode we don't want
1707
      // q to fall below the cq level.
1708
0
      if ((rc_mode == AOM_CQ) && (active_best_quality < cq_level)) {
1709
0
        active_best_quality = cq_level;
1710
0
      }
1711
0
    }
1712
0
  }
1713
1714
  // Clip the active best and worst quality values to limits
1715
0
  active_best_quality =
1716
0
      clamp(active_best_quality, rc->best_quality, rc->worst_quality);
1717
0
  active_worst_quality =
1718
0
      clamp(active_worst_quality, active_best_quality, rc->worst_quality);
1719
1720
0
  *top_index = active_worst_quality;
1721
0
  *bottom_index = active_best_quality;
1722
1723
  // Limit Q range for the adaptive loop.
1724
0
  {
1725
0
    int qdelta = 0;
1726
0
    if (current_frame->frame_type == KEY_FRAME &&
1727
0
        !p_rc->this_key_frame_forced && current_frame->frame_number != 0) {
1728
0
      qdelta = av1_compute_qdelta_by_rate(cpi, current_frame->frame_type,
1729
0
                                          active_worst_quality, 2.0);
1730
0
    } else if (!rc->is_src_frame_alt_ref &&
1731
0
               (refresh_frame->golden_frame || refresh_frame->alt_ref_frame)) {
1732
0
      qdelta = av1_compute_qdelta_by_rate(cpi, current_frame->frame_type,
1733
0
                                          active_worst_quality, 1.75);
1734
0
    }
1735
0
    *top_index = active_worst_quality + qdelta;
1736
0
    *top_index = AOMMAX(*top_index, *bottom_index);
1737
0
  }
1738
1739
0
  if (rc_mode == AOM_Q) {
1740
0
    q = active_best_quality;
1741
    // Special case code to try and match quality with forced key frames
1742
0
  } else if ((current_frame->frame_type == KEY_FRAME) &&
1743
0
             p_rc->this_key_frame_forced) {
1744
#if CONFIG_FPMT_TEST
1745
    const int simulate_parallel_frame =
1746
        cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0 &&
1747
        cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE;
1748
    q = simulate_parallel_frame ? p_rc->temp_last_boosted_qindex
1749
                                : p_rc->last_boosted_qindex;
1750
#else
1751
0
    q = p_rc->last_boosted_qindex;
1752
0
#endif
1753
0
  } else {
1754
0
    q = av1_rc_regulate_q(cpi, rc->this_frame_target, active_best_quality,
1755
0
                          active_worst_quality, width, height);
1756
0
    if (q > *top_index) {
1757
      // Special case when we are targeting the max allowed rate
1758
0
      if (rc->this_frame_target >= rc->max_frame_bandwidth)
1759
0
        *top_index = q;
1760
0
      else
1761
0
        q = *top_index;
1762
0
    }
1763
0
  }
1764
1765
0
  assert(*top_index <= rc->worst_quality && *top_index >= rc->best_quality);
1766
0
  assert(*bottom_index <= rc->worst_quality &&
1767
0
         *bottom_index >= rc->best_quality);
1768
0
  assert(q <= rc->worst_quality && q >= rc->best_quality);
1769
0
  return q;
1770
0
}
1771
1772
static const double arf_layer_deltas[MAX_ARF_LAYERS + 1] = { 2.50, 2.00, 1.75,
1773
                                                             1.50, 1.25, 1.15,
1774
                                                             1.0 };
1775
0
static int frame_type_qdelta(const AV1_COMP *cpi, int q) {
1776
0
  const GF_GROUP *const gf_group = &cpi->ppi->gf_group;
1777
0
  const RATE_FACTOR_LEVEL rf_lvl =
1778
0
      get_rate_factor_level(gf_group, cpi->gf_frame_index);
1779
0
  const FRAME_TYPE frame_type = gf_group->frame_type[cpi->gf_frame_index];
1780
0
  const int arf_layer = AOMMIN(gf_group->layer_depth[cpi->gf_frame_index], 6);
1781
0
  const double rate_factor =
1782
0
      (rf_lvl == INTER_NORMAL) ? 1.0 : arf_layer_deltas[arf_layer];
1783
1784
0
  return av1_compute_qdelta_by_rate(cpi, frame_type, q, rate_factor);
1785
0
}
1786
1787
// This unrestricted Q selection on CQ mode is useful when testing new features,
1788
// but may lead to Q being out of range on current RC restrictions
1789
#if USE_UNRESTRICTED_Q_IN_CQ_MODE
1790
static int rc_pick_q_and_bounds_no_stats_cq(const AV1_COMP *cpi, int width,
1791
                                            int height, int *bottom_index,
1792
                                            int *top_index) {
1793
  const AV1_COMMON *const cm = &cpi->common;
1794
  const RATE_CONTROL *const rc = &cpi->rc;
1795
  const AV1EncoderConfig *const oxcf = &cpi->oxcf;
1796
  const int cq_level =
1797
      get_active_cq_level(rc, oxcf, frame_is_intra_only(cm), cpi->superres_mode,
1798
                          cm->superres_scale_denominator);
1799
  const int bit_depth = cm->seq_params->bit_depth;
1800
  const int q = (int)av1_convert_qindex_to_q(cq_level, bit_depth);
1801
  (void)width;
1802
  (void)height;
1803
  assert(has_no_stats_stage(cpi));
1804
  assert(cpi->oxcf.rc_cfg.mode == AOM_CQ);
1805
1806
  *top_index = q;
1807
  *bottom_index = q;
1808
1809
  return q;
1810
}
1811
#endif  // USE_UNRESTRICTED_Q_IN_CQ_MODE
1812
1813
0
#define STATIC_MOTION_THRESH 95
1814
static void get_intra_q_and_bounds(const AV1_COMP *cpi, int width, int height,
1815
                                   int *active_best, int *active_worst,
1816
0
                                   int cq_level) {
1817
0
  const AV1_COMMON *const cm = &cpi->common;
1818
0
  const RATE_CONTROL *const rc = &cpi->rc;
1819
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
1820
0
  const AV1EncoderConfig *const oxcf = &cpi->oxcf;
1821
0
  int active_best_quality;
1822
0
  int active_worst_quality = *active_worst;
1823
0
  const int bit_depth = cm->seq_params->bit_depth;
1824
1825
0
  const int is_608p_or_larger = AOMMIN(cm->width, cm->height) >= 608;
1826
0
  const int is_480p_or_larger = AOMMIN(cm->width, cm->height) >= 480;
1827
  // res_idx is 0 for res < 480p, 1 for 480p, 2 for 608p+
1828
0
  const int res_idx = is_480p_or_larger + is_608p_or_larger;
1829
0
  const bool rtc_mode = (cpi->oxcf.mode == REALTIME);
1830
1831
0
  if (rc->frames_to_key <= 1 && oxcf->rc_cfg.mode == AOM_Q) {
1832
    // If the next frame is also a key frame or the current frame is the
1833
    // only frame in the sequence in AOM_Q mode, just use the cq_level
1834
    // as q.
1835
0
    active_best_quality = cq_level;
1836
0
    active_worst_quality = cq_level;
1837
0
  } else if (p_rc->this_key_frame_forced) {
1838
    // Handle the special case for key frames forced when we have reached
1839
    // the maximum key frame interval. Here force the Q to a range
1840
    // based on the ambient Q to reduce the risk of popping.
1841
0
    double last_boosted_q;
1842
0
    int delta_qindex;
1843
0
    int qindex;
1844
#if CONFIG_FPMT_TEST
1845
    const int simulate_parallel_frame =
1846
        cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0 &&
1847
        cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE;
1848
    int last_boosted_qindex = simulate_parallel_frame
1849
                                  ? p_rc->temp_last_boosted_qindex
1850
                                  : p_rc->last_boosted_qindex;
1851
#else
1852
0
    int last_boosted_qindex = p_rc->last_boosted_qindex;
1853
0
#endif
1854
0
    if (is_stat_consumption_stage_twopass(cpi) &&
1855
0
        cpi->ppi->twopass.last_kfgroup_zeromotion_pct >= STATIC_MOTION_THRESH) {
1856
0
      qindex = AOMMIN(p_rc->last_kf_qindex, last_boosted_qindex);
1857
0
      active_best_quality = qindex;
1858
0
      last_boosted_q = av1_convert_qindex_to_q(qindex, bit_depth);
1859
0
      delta_qindex = av1_compute_qdelta(rc, last_boosted_q,
1860
0
                                        last_boosted_q * 1.25, bit_depth);
1861
0
      active_worst_quality =
1862
0
          AOMMIN(qindex + delta_qindex, active_worst_quality);
1863
0
    } else {
1864
0
      qindex = last_boosted_qindex;
1865
0
      last_boosted_q = av1_convert_qindex_to_q(qindex, bit_depth);
1866
0
      delta_qindex = av1_compute_qdelta(rc, last_boosted_q,
1867
0
                                        last_boosted_q * 0.50, bit_depth);
1868
0
      active_best_quality = AOMMAX(qindex + delta_qindex, rc->best_quality);
1869
0
    }
1870
0
  } else {
1871
    // Not forced keyframe.
1872
0
    double q_adj_factor = 1.0;
1873
0
    double q_val;
1874
1875
    // Baseline value derived from active_worst_quality and kf boost.
1876
0
    active_best_quality = get_kf_active_quality(p_rc, active_worst_quality,
1877
0
                                                bit_depth, res_idx, rtc_mode);
1878
0
    if (cpi->is_screen_content_type) {
1879
0
      active_best_quality /= 2;
1880
0
    }
1881
1882
0
    if (is_stat_consumption_stage_twopass(cpi) &&
1883
0
        cpi->ppi->twopass.kf_zeromotion_pct >= STATIC_KF_GROUP_THRESH) {
1884
0
      active_best_quality /= 3;
1885
0
    }
1886
1887
    // Allow somewhat lower kf minq with small image formats.
1888
0
    if ((width * height) <= (352 * 288)) {
1889
0
      q_adj_factor -= 0.25;
1890
0
    }
1891
1892
    // Make a further adjustment based on the kf zero motion measure.
1893
0
    if (is_stat_consumption_stage_twopass(cpi))
1894
0
      q_adj_factor +=
1895
0
          0.05 - (0.001 * (double)cpi->ppi->twopass.kf_zeromotion_pct);
1896
1897
    // Convert the adjustment factor to a qindex delta
1898
    // on active_best_quality.
1899
0
    q_val = av1_convert_qindex_to_q(active_best_quality, bit_depth);
1900
0
    active_best_quality +=
1901
0
        av1_compute_qdelta(rc, q_val, q_val * q_adj_factor, bit_depth);
1902
1903
    // Tweak active_best_quality for AOM_Q mode when superres is on, as this
1904
    // will be used directly as 'q' later.
1905
0
    if (oxcf->rc_cfg.mode == AOM_Q &&
1906
0
        (cpi->superres_mode == AOM_SUPERRES_QTHRESH ||
1907
0
         cpi->superres_mode == AOM_SUPERRES_AUTO) &&
1908
0
        cm->superres_scale_denominator != SCALE_NUMERATOR) {
1909
0
      active_best_quality =
1910
0
          AOMMAX(active_best_quality -
1911
0
                     ((cm->superres_scale_denominator - SCALE_NUMERATOR) *
1912
0
                      SUPERRES_QADJ_PER_DENOM_KEYFRAME),
1913
0
                 0);
1914
0
    }
1915
0
  }
1916
0
  *active_best = active_best_quality;
1917
0
  *active_worst = active_worst_quality;
1918
0
}
1919
1920
static void adjust_active_best_and_worst_quality(const AV1_COMP *cpi,
1921
                                                 const int is_intrl_arf_boost,
1922
                                                 int *active_worst,
1923
0
                                                 int *active_best) {
1924
0
  const AV1_COMMON *const cm = &cpi->common;
1925
0
  const RATE_CONTROL *const rc = &cpi->rc;
1926
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
1927
0
  int active_best_quality = *active_best;
1928
0
  int active_worst_quality = *active_worst;
1929
#if CONFIG_FPMT_TEST
1930
#endif
1931
  // Extension to max or min Q if undershoot or overshoot is outside
1932
  // the permitted range.
1933
0
  if (cpi->oxcf.rc_cfg.mode != AOM_Q) {
1934
#if CONFIG_FPMT_TEST
1935
    const int simulate_parallel_frame =
1936
        cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0 &&
1937
        cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE;
1938
    const int extend_minq = simulate_parallel_frame
1939
                                ? p_rc->temp_extend_minq
1940
                                : cpi->ppi->twopass.extend_minq;
1941
    const int extend_maxq = simulate_parallel_frame
1942
                                ? p_rc->temp_extend_maxq
1943
                                : cpi->ppi->twopass.extend_maxq;
1944
    const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
1945
    if (frame_is_intra_only(cm) ||
1946
        (!rc->is_src_frame_alt_ref &&
1947
         (refresh_frame->golden_frame || is_intrl_arf_boost ||
1948
          refresh_frame->alt_ref_frame))) {
1949
      active_best_quality -= extend_minq;
1950
      active_worst_quality += (extend_maxq / 2);
1951
    } else {
1952
      active_best_quality -= extend_minq / 2;
1953
      active_worst_quality += extend_maxq;
1954
    }
1955
#else
1956
0
    (void)is_intrl_arf_boost;
1957
0
    active_best_quality -= cpi->ppi->twopass.extend_minq / 4;
1958
0
    active_worst_quality += cpi->ppi->twopass.extend_maxq;
1959
0
#endif
1960
0
  }
1961
1962
0
#ifndef STRICT_RC
1963
  // Static forced key frames Q restrictions dealt with elsewhere.
1964
0
  if (!(frame_is_intra_only(cm)) || !p_rc->this_key_frame_forced ||
1965
0
      (cpi->ppi->twopass.last_kfgroup_zeromotion_pct < STATIC_MOTION_THRESH)) {
1966
0
    const int qdelta = frame_type_qdelta(cpi, active_worst_quality);
1967
0
    active_worst_quality =
1968
0
        AOMMAX(active_worst_quality + qdelta, active_best_quality);
1969
0
  }
1970
0
#endif
1971
1972
  // Modify active_best_quality for downscaled normal frames.
1973
0
  if (av1_frame_scaled(cm) && !frame_is_kf_gf_arf(cpi)) {
1974
0
    int qdelta = av1_compute_qdelta_by_rate(cpi, cm->current_frame.frame_type,
1975
0
                                            active_best_quality, 2.0);
1976
0
    active_best_quality =
1977
0
        AOMMAX(active_best_quality + qdelta, rc->best_quality);
1978
0
  }
1979
1980
0
  active_best_quality =
1981
0
      clamp(active_best_quality, rc->best_quality, rc->worst_quality);
1982
0
  active_worst_quality =
1983
0
      clamp(active_worst_quality, active_best_quality, rc->worst_quality);
1984
1985
0
  *active_best = active_best_quality;
1986
0
  *active_worst = active_worst_quality;
1987
0
}
1988
1989
/*!\brief Gets a Q value to use  for the current frame
1990
 *
1991
 *
1992
 * Selects a Q value from a permitted range that we estimate
1993
 * will result in approximately the target number of bits.
1994
 *
1995
 * \ingroup rate_control
1996
 * \param[in]   cpi                   Top level encoder instance structure
1997
 * \param[in]   width                 Width of frame
1998
 * \param[in]   height                Height of frame
1999
 * \param[in]   active_worst_quality  Max Q allowed
2000
 * \param[in]   active_best_quality   Min Q allowed
2001
 *
2002
 * \return The suggested Q for this frame.
2003
 */
2004
static int get_q(const AV1_COMP *cpi, const int width, const int height,
2005
                 const int active_worst_quality,
2006
0
                 const int active_best_quality) {
2007
0
  const AV1_COMMON *const cm = &cpi->common;
2008
0
  const RATE_CONTROL *const rc = &cpi->rc;
2009
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
2010
0
  int q;
2011
#if CONFIG_FPMT_TEST
2012
  const int simulate_parallel_frame =
2013
      cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0 &&
2014
      cpi->ppi->fpmt_unit_test_cfg;
2015
  int last_boosted_qindex = simulate_parallel_frame
2016
                                ? p_rc->temp_last_boosted_qindex
2017
                                : p_rc->last_boosted_qindex;
2018
#else
2019
0
  int last_boosted_qindex = p_rc->last_boosted_qindex;
2020
0
#endif
2021
2022
0
  if (cpi->oxcf.rc_cfg.mode == AOM_Q ||
2023
0
      (frame_is_intra_only(cm) && !p_rc->this_key_frame_forced &&
2024
0
       cpi->ppi->twopass.kf_zeromotion_pct >= STATIC_KF_GROUP_THRESH &&
2025
0
       rc->frames_to_key > 1)) {
2026
0
    q = active_best_quality;
2027
    // Special case code to try and match quality with forced key frames.
2028
0
  } else if (frame_is_intra_only(cm) && p_rc->this_key_frame_forced) {
2029
    // If static since last kf use better of last boosted and last kf q.
2030
0
    if (cpi->ppi->twopass.last_kfgroup_zeromotion_pct >= STATIC_MOTION_THRESH) {
2031
0
      q = AOMMIN(p_rc->last_kf_qindex, last_boosted_qindex);
2032
0
    } else {
2033
0
      q = AOMMIN(last_boosted_qindex,
2034
0
                 (active_best_quality + active_worst_quality) / 2);
2035
0
    }
2036
0
    q = clamp(q, active_best_quality, active_worst_quality);
2037
0
  } else {
2038
0
    q = av1_rc_regulate_q(cpi, rc->this_frame_target, active_best_quality,
2039
0
                          active_worst_quality, width, height);
2040
0
    if (q > active_worst_quality) {
2041
      // Special case when we are targeting the max allowed rate.
2042
0
      if (rc->this_frame_target < rc->max_frame_bandwidth) {
2043
0
        q = active_worst_quality;
2044
0
      }
2045
0
    }
2046
0
    q = AOMMAX(q, active_best_quality);
2047
0
  }
2048
0
  return q;
2049
0
}
2050
2051
// Returns |active_best_quality| for an inter frame.
2052
// The |active_best_quality| depends on different rate control modes:
2053
// VBR, Q, CQ, CBR.
2054
// The returning active_best_quality could further be adjusted in
2055
// adjust_active_best_and_worst_quality().
2056
static int get_active_best_quality(const AV1_COMP *const cpi,
2057
                                   const int active_worst_quality,
2058
0
                                   const int cq_level, const int gf_index) {
2059
0
  const AV1_COMMON *const cm = &cpi->common;
2060
0
  const int bit_depth = cm->seq_params->bit_depth;
2061
0
  const RATE_CONTROL *const rc = &cpi->rc;
2062
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
2063
0
  const AV1EncoderConfig *const oxcf = &cpi->oxcf;
2064
0
  const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
2065
0
  const GF_GROUP *gf_group = &cpi->ppi->gf_group;
2066
0
  const enum aom_rc_mode rc_mode = oxcf->rc_cfg.mode;
2067
0
  int active_best_quality = 0;
2068
0
  FRAME_UPDATE_TYPE update_type = gf_group->update_type[gf_index];
2069
0
  const int is_intrl_arf_boost = update_type == INTNL_ARF_UPDATE;
2070
0
  int is_leaf_frame = !(update_type == ARF_UPDATE || update_type == GF_UPDATE ||
2071
0
                        is_intrl_arf_boost);
2072
2073
0
  const int is_608p_or_larger = AOMMIN(cm->width, cm->height) >= 608;
2074
0
  const int is_480p_or_larger = AOMMIN(cm->width, cm->height) >= 480;
2075
  // res_idx is 0 for res < 480p, 1 for 480p, 2 for 608p+
2076
0
  const int res_idx = is_480p_or_larger + is_608p_or_larger;
2077
0
  const bool rtc_mode = (cpi->oxcf.mode == REALTIME);
2078
2079
0
  int *inter_minq;
2080
0
  ASSIGN_MINQ_TABLE_2(bit_depth, inter_minq, res_idx > 1, rtc_mode);
2081
2082
  // TODO(jingning): Consider to rework this hack that covers issues incurred
2083
  // in lightfield setting.
2084
0
  if (cm->tiles.large_scale) {
2085
0
    is_leaf_frame = !(refresh_frame->golden_frame ||
2086
0
                      refresh_frame->alt_ref_frame || is_intrl_arf_boost);
2087
0
  }
2088
0
  const int is_overlay_frame =
2089
0
      update_type == OVERLAY_UPDATE || update_type == INTNL_OVERLAY_UPDATE;
2090
2091
0
  if (is_leaf_frame || is_overlay_frame) {
2092
0
    if (rc_mode == AOM_Q) return cq_level;
2093
2094
0
    active_best_quality = inter_minq[active_worst_quality];
2095
    // For the constrained quality mode we don't want
2096
    // q to fall below the cq level.
2097
0
    if ((rc_mode == AOM_CQ) && (active_best_quality < cq_level)) {
2098
0
      active_best_quality = cq_level;
2099
0
    }
2100
0
    return active_best_quality;
2101
0
  }
2102
2103
  // Determine active_best_quality for frames that are not leaf or overlay.
2104
0
  int q = active_worst_quality;
2105
  // Use the lower of active_worst_quality and recent
2106
  // average Q as basis for GF/ARF best Q limit unless last frame was
2107
  // a key frame.
2108
0
  if (rc->frames_since_key > 1 &&
2109
0
      p_rc->avg_frame_qindex[INTER_FRAME] < active_worst_quality) {
2110
0
    q = p_rc->avg_frame_qindex[INTER_FRAME];
2111
0
  }
2112
0
  if (rc_mode == AOM_CQ && q < cq_level) q = cq_level;
2113
0
  active_best_quality =
2114
0
      get_gf_active_quality(p_rc, q, bit_depth, res_idx, rtc_mode);
2115
  // Constrained quality use slightly lower active best.
2116
0
  if (rc_mode == AOM_CQ) active_best_quality = active_best_quality * 15 / 16;
2117
0
  const int min_boost =
2118
0
      get_gf_high_motion_quality(q, bit_depth, res_idx, rtc_mode);
2119
0
  const int boost = min_boost - active_best_quality;
2120
0
  active_best_quality = min_boost - (int)(boost * p_rc->arf_boost_factor);
2121
0
  if (!is_intrl_arf_boost) return active_best_quality;
2122
2123
0
  if (rc_mode == AOM_Q || rc_mode == AOM_CQ) active_best_quality = p_rc->arf_q;
2124
0
  int this_height = gf_group_pyramid_level(gf_group, gf_index);
2125
0
  while (this_height > 1) {
2126
0
    active_best_quality = (active_best_quality + active_worst_quality + 1) / 2;
2127
0
    --this_height;
2128
0
  }
2129
0
  return active_best_quality;
2130
0
}
2131
2132
static int rc_pick_q_and_bounds_q_mode(const AV1_COMP *cpi, int width,
2133
                                       int height, int gf_index,
2134
0
                                       int *bottom_index, int *top_index) {
2135
0
  const AV1_COMMON *const cm = &cpi->common;
2136
0
  const RATE_CONTROL *const rc = &cpi->rc;
2137
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
2138
0
  const AV1EncoderConfig *const oxcf = &cpi->oxcf;
2139
0
  const int cq_level =
2140
0
      get_active_cq_level(rc, p_rc, oxcf, frame_is_intra_only(cm),
2141
0
                          cpi->superres_mode, cm->superres_scale_denominator);
2142
0
  int active_best_quality = 0;
2143
0
  int active_worst_quality = rc->active_worst_quality;
2144
0
  int q;
2145
2146
0
  if (frame_is_intra_only(cm)) {
2147
0
    get_intra_q_and_bounds(cpi, width, height, &active_best_quality,
2148
0
                           &active_worst_quality, cq_level);
2149
0
  } else {
2150
    //  Active best quality limited by previous layer.
2151
0
    active_best_quality =
2152
0
        get_active_best_quality(cpi, active_worst_quality, cq_level, gf_index);
2153
0
  }
2154
2155
0
  if (cq_level > 0) active_best_quality = AOMMAX(1, active_best_quality);
2156
2157
0
  *top_index = clamp(active_worst_quality, rc->best_quality, rc->worst_quality);
2158
2159
0
  *bottom_index =
2160
0
      clamp(active_best_quality, rc->best_quality, rc->worst_quality);
2161
2162
0
  q = *bottom_index;
2163
2164
0
  assert(*top_index <= rc->worst_quality && *top_index >= rc->best_quality);
2165
0
  assert(*bottom_index <= rc->worst_quality &&
2166
0
         *bottom_index >= rc->best_quality);
2167
0
  assert(q <= rc->worst_quality && q >= rc->best_quality);
2168
2169
0
  return q;
2170
0
}
2171
2172
/*!\brief Picks q and q bounds given rate control parameters in \c cpi->rc.
2173
 *
2174
 * Handles the general cases not covered by
2175
 * \ref rc_pick_q_and_bounds_no_stats_cbr() and
2176
 * \ref rc_pick_q_and_bounds_no_stats()
2177
 *
2178
 * \ingroup rate_control
2179
 * \param[in]       cpi          Top level encoder structure
2180
 * \param[in]       width        Coded frame width
2181
 * \param[in]       height       Coded frame height
2182
 * \param[in]       gf_index     Index of this frame in the golden frame group
2183
 * \param[out]      bottom_index Bottom bound for q index (best quality)
2184
 * \param[out]      top_index    Top bound for q index (worst quality)
2185
 * \return Returns selected q index to be used for encoding this frame.
2186
 */
2187
static int rc_pick_q_and_bounds(const AV1_COMP *cpi, int width, int height,
2188
                                int gf_index, int *bottom_index,
2189
0
                                int *top_index) {
2190
0
  const AV1_COMMON *const cm = &cpi->common;
2191
0
  const RATE_CONTROL *const rc = &cpi->rc;
2192
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
2193
0
  const AV1EncoderConfig *const oxcf = &cpi->oxcf;
2194
0
  const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
2195
0
  const GF_GROUP *gf_group = &cpi->ppi->gf_group;
2196
0
  assert(IMPLIES(has_no_stats_stage(cpi),
2197
0
                 cpi->oxcf.rc_cfg.mode == AOM_Q &&
2198
0
                     gf_group->update_type[gf_index] != ARF_UPDATE));
2199
0
  const int cq_level =
2200
0
      get_active_cq_level(rc, p_rc, oxcf, frame_is_intra_only(cm),
2201
0
                          cpi->superres_mode, cm->superres_scale_denominator);
2202
2203
0
  if (oxcf->rc_cfg.mode == AOM_Q) {
2204
0
    return rc_pick_q_and_bounds_q_mode(cpi, width, height, gf_index,
2205
0
                                       bottom_index, top_index);
2206
0
  }
2207
2208
0
  int active_best_quality = 0;
2209
0
  int active_worst_quality = rc->active_worst_quality;
2210
0
  int q;
2211
2212
0
  const int is_intrl_arf_boost =
2213
0
      gf_group->update_type[gf_index] == INTNL_ARF_UPDATE;
2214
2215
0
  if (frame_is_intra_only(cm)) {
2216
0
    get_intra_q_and_bounds(cpi, width, height, &active_best_quality,
2217
0
                           &active_worst_quality, cq_level);
2218
#ifdef STRICT_RC
2219
    active_best_quality = 0;
2220
#endif
2221
0
  } else {
2222
    //  Active best quality limited by previous layer.
2223
0
    const int pyramid_level = gf_group_pyramid_level(gf_group, gf_index);
2224
2225
0
    if ((pyramid_level <= 1) || (pyramid_level > MAX_ARF_LAYERS)) {
2226
0
      active_best_quality = get_active_best_quality(cpi, active_worst_quality,
2227
0
                                                    cq_level, gf_index);
2228
0
    } else {
2229
#if CONFIG_FPMT_TEST
2230
      const int simulate_parallel_frame =
2231
          cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0 &&
2232
          cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE;
2233
      int local_active_best_quality =
2234
          simulate_parallel_frame
2235
              ? p_rc->temp_active_best_quality[pyramid_level - 1]
2236
              : p_rc->active_best_quality[pyramid_level - 1];
2237
      active_best_quality = local_active_best_quality + 1;
2238
#else
2239
0
      active_best_quality = p_rc->active_best_quality[pyramid_level - 1] + 1;
2240
0
#endif
2241
2242
0
      active_best_quality = AOMMIN(active_best_quality, active_worst_quality);
2243
#ifdef STRICT_RC
2244
      active_best_quality += (active_worst_quality - active_best_quality) / 16;
2245
#else
2246
0
      active_best_quality += (active_worst_quality - active_best_quality) / 2;
2247
0
#endif
2248
0
    }
2249
2250
    // For alt_ref and GF frames (including internal arf frames) adjust the
2251
    // worst allowed quality as well. This insures that even on hard
2252
    // sections we don't clamp the Q at the same value for arf frames and
2253
    // leaf (non arf) frames. This is important to the TPL model which assumes
2254
    // Q drops with each arf level.
2255
0
    if (!(rc->is_src_frame_alt_ref) &&
2256
0
        (refresh_frame->golden_frame || refresh_frame->alt_ref_frame ||
2257
0
         is_intrl_arf_boost)) {
2258
0
      active_worst_quality =
2259
0
          (active_best_quality + (3 * active_worst_quality) + 2) / 4;
2260
0
    }
2261
0
  }
2262
2263
0
  adjust_active_best_and_worst_quality(
2264
0
      cpi, is_intrl_arf_boost, &active_worst_quality, &active_best_quality);
2265
0
  q = get_q(cpi, width, height, active_worst_quality, active_best_quality);
2266
2267
  // Special case when we are targeting the max allowed rate.
2268
0
  if (rc->this_frame_target >= rc->max_frame_bandwidth &&
2269
0
      q > active_worst_quality) {
2270
0
    active_worst_quality = q;
2271
0
  }
2272
2273
0
  *top_index = active_worst_quality;
2274
0
  *bottom_index = active_best_quality;
2275
2276
0
  assert(*top_index <= rc->worst_quality && *top_index >= rc->best_quality);
2277
0
  assert(*bottom_index <= rc->worst_quality &&
2278
0
         *bottom_index >= rc->best_quality);
2279
0
  assert(q <= rc->worst_quality && q >= rc->best_quality);
2280
2281
0
  return q;
2282
0
}
2283
2284
0
static void rc_compute_variance_onepass_rt(AV1_COMP *cpi) {
2285
0
  AV1_COMMON *const cm = &cpi->common;
2286
0
  YV12_BUFFER_CONFIG const *const unscaled_src = cpi->unscaled_source;
2287
0
  if (unscaled_src == NULL) return;
2288
2289
0
  const uint8_t *src_y = unscaled_src->y_buffer;
2290
0
  const int src_ystride = unscaled_src->y_stride;
2291
0
  const YV12_BUFFER_CONFIG *yv12 = get_ref_frame_yv12_buf(cm, LAST_FRAME);
2292
0
  const uint8_t *pre_y = yv12->buffers[0];
2293
0
  const int pre_ystride = yv12->strides[0];
2294
2295
  // TODO(yunqing): support scaled reference frames.
2296
0
  if (cpi->scaled_ref_buf[LAST_FRAME - 1]) return;
2297
2298
0
  for (int i = 0; i < 2; ++i) {
2299
0
    if (unscaled_src->widths[i] != yv12->widths[i] ||
2300
0
        unscaled_src->heights[i] != yv12->heights[i]) {
2301
0
      return;
2302
0
    }
2303
0
  }
2304
2305
0
  const int num_mi_cols = cm->mi_params.mi_cols;
2306
0
  const int num_mi_rows = cm->mi_params.mi_rows;
2307
0
  const BLOCK_SIZE bsize = BLOCK_64X64;
2308
0
  int num_samples = 0;
2309
  // sse is computed on 64x64 blocks
2310
0
  const int sb_size_by_mb = (cm->seq_params->sb_size == BLOCK_128X128)
2311
0
                                ? (cm->seq_params->mib_size >> 1)
2312
0
                                : cm->seq_params->mib_size;
2313
0
  const int sb_cols = (num_mi_cols + sb_size_by_mb - 1) / sb_size_by_mb;
2314
0
  const int sb_rows = (num_mi_rows + sb_size_by_mb - 1) / sb_size_by_mb;
2315
2316
0
  uint64_t fsse = 0;
2317
0
  cpi->rec_sse = 0;
2318
2319
0
  for (int sbi_row = 0; sbi_row < sb_rows; ++sbi_row) {
2320
0
    for (int sbi_col = 0; sbi_col < sb_cols; ++sbi_col) {
2321
0
      unsigned int sse;
2322
0
      uint8_t src[64 * 64] = { 0 };
2323
      // Apply 4x4 block averaging/denoising on source frame.
2324
0
      for (int i = 0; i < 64; i += 4) {
2325
0
        for (int j = 0; j < 64; j += 4) {
2326
0
          const unsigned int avg =
2327
0
              aom_avg_4x4(src_y + i * src_ystride + j, src_ystride);
2328
2329
0
          for (int m = 0; m < 4; ++m) {
2330
0
            for (int n = 0; n < 4; ++n) src[i * 64 + j + m * 64 + n] = avg;
2331
0
          }
2332
0
        }
2333
0
      }
2334
2335
0
      cpi->ppi->fn_ptr[bsize].vf(src, 64, pre_y, pre_ystride, &sse);
2336
0
      fsse += sse;
2337
0
      num_samples++;
2338
0
      src_y += 64;
2339
0
      pre_y += 64;
2340
0
    }
2341
0
    src_y += (src_ystride << 6) - (sb_cols << 6);
2342
0
    pre_y += (pre_ystride << 6) - (sb_cols << 6);
2343
0
  }
2344
0
  assert(num_samples > 0);
2345
  // Ensure rec_sse > 0
2346
0
  if (num_samples > 0) cpi->rec_sse = fsse > 0 ? fsse : 1;
2347
0
}
2348
2349
int av1_rc_pick_q_and_bounds(AV1_COMP *cpi, int width, int height, int gf_index,
2350
0
                             int *bottom_index, int *top_index) {
2351
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
2352
0
  int q;
2353
  // TODO(sarahparker) merge no-stats vbr and altref q computation
2354
  // with rc_pick_q_and_bounds().
2355
0
  const GF_GROUP *gf_group = &cpi->ppi->gf_group;
2356
0
  if ((cpi->oxcf.rc_cfg.mode != AOM_Q ||
2357
0
       gf_group->update_type[gf_index] == ARF_UPDATE) &&
2358
0
      has_no_stats_stage(cpi)) {
2359
0
    if (cpi->oxcf.rc_cfg.mode == AOM_CBR) {
2360
      // TODO(yunqing): the results could be used for encoder optimization.
2361
0
      cpi->rec_sse = UINT64_MAX;
2362
0
      if (cpi->sf.hl_sf.accurate_bit_estimate &&
2363
0
          cpi->common.current_frame.frame_type != KEY_FRAME)
2364
0
        rc_compute_variance_onepass_rt(cpi);
2365
2366
0
      q = rc_pick_q_and_bounds_no_stats_cbr(cpi, width, height, bottom_index,
2367
0
                                            top_index);
2368
      // preserve copy of active worst quality selected.
2369
0
      cpi->rc.active_worst_quality = *top_index;
2370
2371
#if USE_UNRESTRICTED_Q_IN_CQ_MODE
2372
    } else if (cpi->oxcf.rc_cfg.mode == AOM_CQ) {
2373
      q = rc_pick_q_and_bounds_no_stats_cq(cpi, width, height, bottom_index,
2374
                                           top_index);
2375
#endif  // USE_UNRESTRICTED_Q_IN_CQ_MODE
2376
0
    } else {
2377
0
      q = rc_pick_q_and_bounds_no_stats(cpi, width, height, bottom_index,
2378
0
                                        top_index);
2379
0
    }
2380
0
  } else {
2381
0
    q = rc_pick_q_and_bounds(cpi, width, height, gf_index, bottom_index,
2382
0
                             top_index);
2383
0
  }
2384
0
  if (gf_group->update_type[gf_index] == ARF_UPDATE) p_rc->arf_q = q;
2385
2386
0
  return q;
2387
0
}
2388
2389
void av1_rc_compute_frame_size_bounds(const AV1_COMP *cpi, int frame_target,
2390
                                      int *frame_under_shoot_limit,
2391
0
                                      int *frame_over_shoot_limit) {
2392
0
  if (cpi->oxcf.rc_cfg.mode == AOM_Q) {
2393
0
    *frame_under_shoot_limit = 0;
2394
0
    *frame_over_shoot_limit = INT_MAX;
2395
0
  } else {
2396
    // For very small rate targets where the fractional adjustment
2397
    // may be tiny make sure there is at least a minimum range.
2398
0
    assert(cpi->sf.hl_sf.recode_tolerance <= 100);
2399
0
    const int tolerance = (int)AOMMAX(
2400
0
        100, ((int64_t)cpi->sf.hl_sf.recode_tolerance * frame_target) / 100);
2401
0
    *frame_under_shoot_limit = AOMMAX(frame_target - tolerance, 0);
2402
0
    *frame_over_shoot_limit = (int)AOMMIN((int64_t)frame_target + tolerance,
2403
0
                                          cpi->rc.max_frame_bandwidth);
2404
0
  }
2405
0
}
2406
2407
0
void av1_rc_set_frame_target(AV1_COMP *cpi, int target, int width, int height) {
2408
0
  const AV1_COMMON *const cm = &cpi->common;
2409
0
  RATE_CONTROL *const rc = &cpi->rc;
2410
2411
0
  rc->this_frame_target = target;
2412
2413
  // Modify frame size target when down-scaled.
2414
0
  if (av1_frame_scaled(cm) && cpi->oxcf.rc_cfg.mode != AOM_CBR) {
2415
0
    rc->this_frame_target = saturate_cast_double_to_int(
2416
0
        rc->this_frame_target *
2417
0
        resize_rate_factor(&cpi->oxcf.frm_dim_cfg, width, height));
2418
0
  }
2419
2420
  // Target rate per SB64 (including partial SB64s.
2421
0
  const int64_t sb64_target_rate =
2422
0
      ((int64_t)rc->this_frame_target << 12) / (width * height);
2423
0
  rc->sb64_target_rate = (int)AOMMIN(sb64_target_rate, INT_MAX);
2424
0
}
2425
2426
0
static void update_alt_ref_frame_stats(AV1_COMP *cpi) {
2427
  // this frame refreshes means next frames don't unless specified by user
2428
0
  RATE_CONTROL *const rc = &cpi->rc;
2429
0
  rc->frames_since_golden = 0;
2430
0
}
2431
2432
0
static void update_golden_frame_stats(AV1_COMP *cpi) {
2433
0
  RATE_CONTROL *const rc = &cpi->rc;
2434
2435
  // Update the Golden frame usage counts.
2436
0
  if (cpi->refresh_frame.golden_frame || rc->is_src_frame_alt_ref) {
2437
0
    rc->frames_since_golden = 0;
2438
0
  } else if (cpi->common.show_frame) {
2439
0
    rc->frames_since_golden++;
2440
0
  }
2441
0
}
2442
2443
0
void av1_rc_postencode_update(AV1_COMP *cpi, uint64_t bytes_used) {
2444
0
  const AV1_COMMON *const cm = &cpi->common;
2445
0
  const CurrentFrame *const current_frame = &cm->current_frame;
2446
0
  RATE_CONTROL *const rc = &cpi->rc;
2447
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
2448
0
  const GF_GROUP *const gf_group = &cpi->ppi->gf_group;
2449
0
  const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
2450
2451
0
  const int is_intrnl_arf =
2452
0
      gf_group->update_type[cpi->gf_frame_index] == INTNL_ARF_UPDATE;
2453
2454
0
  const int qindex = cm->quant_params.base_qindex;
2455
2456
#if RT_PASSIVE_STRATEGY
2457
  const int frame_number = current_frame->frame_number % MAX_Q_HISTORY;
2458
  p_rc->q_history[frame_number] = qindex;
2459
#endif  // RT_PASSIVE_STRATEGY
2460
2461
  // Update rate control heuristics
2462
0
  rc->projected_frame_size = (int)(bytes_used << 3);
2463
2464
  // Post encode loop adjustment of Q prediction.
2465
0
  av1_rc_update_rate_correction_factors(cpi, 0, cm->width, cm->height);
2466
2467
  // Update bit estimation ratio.
2468
0
  if (cpi->oxcf.rc_cfg.mode == AOM_CBR &&
2469
0
      cm->current_frame.frame_type != KEY_FRAME &&
2470
0
      cpi->sf.hl_sf.accurate_bit_estimate) {
2471
0
    const double q = av1_convert_qindex_to_q(cm->quant_params.base_qindex,
2472
0
                                             cm->seq_params->bit_depth);
2473
0
    const int this_bit_est_ratio =
2474
0
        (int)(rc->projected_frame_size * q / sqrt((double)cpi->rec_sse));
2475
0
    cpi->rc.bit_est_ratio =
2476
0
        cpi->rc.bit_est_ratio == 0
2477
0
            ? this_bit_est_ratio
2478
0
            : (7 * cpi->rc.bit_est_ratio + this_bit_est_ratio) / 8;
2479
0
  }
2480
2481
  // Keep a record of last Q and ambient average Q.
2482
0
  if (current_frame->frame_type == KEY_FRAME) {
2483
0
    p_rc->last_q[KEY_FRAME] = qindex;
2484
0
    p_rc->avg_frame_qindex[KEY_FRAME] =
2485
0
        ROUND_POWER_OF_TWO(3 * p_rc->avg_frame_qindex[KEY_FRAME] + qindex, 2);
2486
0
    if (cpi->svc.spatial_layer_id == 0) {
2487
0
      rc->last_encoded_size_keyframe = rc->projected_frame_size;
2488
0
      rc->last_target_size_keyframe = rc->this_frame_target;
2489
0
    }
2490
0
  } else {
2491
0
    if ((cpi->ppi->use_svc && cpi->oxcf.rc_cfg.mode == AOM_CBR) ||
2492
0
        cpi->rc.rtc_external_ratectrl ||
2493
0
        (!rc->is_src_frame_alt_ref &&
2494
0
         !(refresh_frame->golden_frame || is_intrnl_arf ||
2495
0
           refresh_frame->alt_ref_frame))) {
2496
0
      p_rc->last_q[INTER_FRAME] = qindex;
2497
0
      p_rc->avg_frame_qindex[INTER_FRAME] = ROUND_POWER_OF_TWO(
2498
0
          3 * p_rc->avg_frame_qindex[INTER_FRAME] + qindex, 2);
2499
0
      p_rc->ni_frames++;
2500
0
      p_rc->tot_q += av1_convert_qindex_to_q(qindex, cm->seq_params->bit_depth);
2501
0
      p_rc->avg_q = p_rc->tot_q / p_rc->ni_frames;
2502
      // Calculate the average Q for normal inter frames (not key or GFU
2503
      // frames).
2504
0
      rc->ni_tot_qi += qindex;
2505
0
      rc->ni_av_qi = rc->ni_tot_qi / p_rc->ni_frames;
2506
0
    }
2507
0
  }
2508
  // Keep record of last boosted (KF/GF/ARF) Q value.
2509
  // If the current frame is coded at a lower Q then we also update it.
2510
  // If all mbs in this group are skipped only update if the Q value is
2511
  // better than that already stored.
2512
  // This is used to help set quality in forced key frames to reduce popping
2513
0
  if ((qindex < p_rc->last_boosted_qindex) ||
2514
0
      (current_frame->frame_type == KEY_FRAME) ||
2515
0
      (!p_rc->constrained_gf_group &&
2516
0
       (refresh_frame->alt_ref_frame || is_intrnl_arf ||
2517
0
        (refresh_frame->golden_frame && !rc->is_src_frame_alt_ref)))) {
2518
0
    p_rc->last_boosted_qindex = qindex;
2519
0
  }
2520
0
  if (current_frame->frame_type == KEY_FRAME) p_rc->last_kf_qindex = qindex;
2521
2522
0
  update_buffer_level(cpi, rc->projected_frame_size);
2523
0
  rc->prev_avg_frame_bandwidth = rc->avg_frame_bandwidth;
2524
2525
  // Rolling monitors of whether we are over or underspending used to help
2526
  // regulate min and Max Q in two pass.
2527
0
  if (av1_frame_scaled(cm))
2528
0
    rc->this_frame_target = saturate_cast_double_to_int(
2529
0
        rc->this_frame_target /
2530
0
        resize_rate_factor(&cpi->oxcf.frm_dim_cfg, cm->width, cm->height));
2531
0
  if (current_frame->frame_type != KEY_FRAME) {
2532
0
    p_rc->rolling_target_bits = (int)ROUND_POWER_OF_TWO_64(
2533
0
        (int64_t)p_rc->rolling_target_bits * 3 + rc->this_frame_target, 2);
2534
0
    p_rc->rolling_actual_bits = (int)ROUND_POWER_OF_TWO_64(
2535
0
        (int64_t)p_rc->rolling_actual_bits * 3 + rc->projected_frame_size, 2);
2536
0
  }
2537
2538
  // Actual bits spent
2539
0
  p_rc->total_actual_bits += rc->projected_frame_size;
2540
0
  p_rc->total_target_bits += cm->show_frame ? rc->avg_frame_bandwidth : 0;
2541
2542
0
  if (is_altref_enabled(cpi->oxcf.gf_cfg.lag_in_frames,
2543
0
                        cpi->oxcf.gf_cfg.enable_auto_arf) &&
2544
0
      refresh_frame->alt_ref_frame &&
2545
0
      (current_frame->frame_type != KEY_FRAME && !frame_is_sframe(cm)))
2546
    // Update the alternate reference frame stats as appropriate.
2547
0
    update_alt_ref_frame_stats(cpi);
2548
0
  else
2549
    // Update the Golden frame stats as appropriate.
2550
0
    update_golden_frame_stats(cpi);
2551
2552
#if CONFIG_FPMT_TEST
2553
  /*The variables temp_avg_frame_qindex, temp_last_q, temp_avg_q,
2554
   * temp_last_boosted_qindex are introduced only for quality simulation
2555
   * purpose, it retains the value previous to the parallel encode frames. The
2556
   * variables are updated based on the update flag.
2557
   *
2558
   * If there exist show_existing_frames between parallel frames, then to
2559
   * retain the temp state do not update it. */
2560
  int show_existing_between_parallel_frames =
2561
      (cpi->ppi->gf_group.update_type[cpi->gf_frame_index] ==
2562
           INTNL_OVERLAY_UPDATE &&
2563
       cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index + 1] == 2);
2564
2565
  if (cpi->do_frame_data_update && !show_existing_between_parallel_frames &&
2566
      cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE) {
2567
    for (int i = 0; i < FRAME_TYPES; i++) {
2568
      p_rc->temp_last_q[i] = p_rc->last_q[i];
2569
    }
2570
    p_rc->temp_avg_q = p_rc->avg_q;
2571
    p_rc->temp_last_boosted_qindex = p_rc->last_boosted_qindex;
2572
    p_rc->temp_total_actual_bits = p_rc->total_actual_bits;
2573
    p_rc->temp_projected_frame_size = rc->projected_frame_size;
2574
    for (int i = 0; i < RATE_FACTOR_LEVELS; i++)
2575
      p_rc->temp_rate_correction_factors[i] = p_rc->rate_correction_factors[i];
2576
  }
2577
#endif
2578
0
  if (current_frame->frame_type == KEY_FRAME) {
2579
0
    rc->frames_since_key = 0;
2580
0
    rc->frames_since_scene_change = 0;
2581
0
  }
2582
0
  if (cpi->refresh_frame.golden_frame)
2583
0
    rc->frame_num_last_gf_refresh = current_frame->frame_number;
2584
2585
0
  if (rc->frame_source_sad < 10000)
2586
0
    rc->last_frame_low_source_sad = rc->frame_number_encoded;
2587
2588
0
  rc->prev_coded_width = cm->width;
2589
0
  rc->prev_coded_height = cm->height;
2590
0
  rc->frame_number_encoded++;
2591
0
  rc->prev_frame_is_dropped = 0;
2592
0
  rc->drop_count_consec = 0;
2593
0
}
2594
2595
0
void av1_rc_postencode_update_drop_frame(AV1_COMP *cpi) {
2596
  // Update buffer level with zero size, update frame counters, and return.
2597
0
  update_buffer_level(cpi, 0);
2598
0
  cpi->rc.rc_2_frame = 0;
2599
0
  cpi->rc.rc_1_frame = 0;
2600
0
  cpi->rc.prev_avg_frame_bandwidth = cpi->rc.avg_frame_bandwidth;
2601
0
  cpi->rc.prev_coded_width = cpi->common.width;
2602
0
  cpi->rc.prev_coded_height = cpi->common.height;
2603
0
  cpi->rc.prev_frame_is_dropped = 1;
2604
  // On a scene/slide change for dropped frame: reset the avg_source_sad to 0,
2605
  // otherwise the avg_source_sad can get too large and subsequent frames
2606
  // may miss the scene/slide detection.
2607
0
  if (cpi->rc.high_source_sad) cpi->rc.avg_source_sad = 0;
2608
0
  if (cpi->ppi->use_svc && cpi->svc.number_spatial_layers > 1) {
2609
0
    cpi->svc.last_layer_dropped[cpi->svc.spatial_layer_id] = true;
2610
0
    cpi->svc.drop_spatial_layer[cpi->svc.spatial_layer_id] = true;
2611
0
  }
2612
0
  if (cpi->svc.spatial_layer_id == cpi->svc.number_spatial_layers - 1) {
2613
0
    cpi->svc.prev_number_spatial_layers = cpi->svc.number_spatial_layers;
2614
0
  }
2615
0
  cpi->svc.prev_number_temporal_layers = cpi->svc.number_temporal_layers;
2616
0
}
2617
2618
int av1_find_qindex(double desired_q, aom_bit_depth_t bit_depth,
2619
0
                    int best_qindex, int worst_qindex) {
2620
0
  assert(best_qindex <= worst_qindex);
2621
0
  int low = best_qindex;
2622
0
  int high = worst_qindex;
2623
0
  while (low < high) {
2624
0
    const int mid = (low + high) >> 1;
2625
0
    const double mid_q = av1_convert_qindex_to_q(mid, bit_depth);
2626
0
    if (mid_q < desired_q) {
2627
0
      low = mid + 1;
2628
0
    } else {
2629
0
      high = mid;
2630
0
    }
2631
0
  }
2632
0
  assert(low == high);
2633
0
  assert(av1_convert_qindex_to_q(low, bit_depth) >= desired_q ||
2634
0
         low == worst_qindex);
2635
0
  return low;
2636
0
}
2637
2638
int av1_compute_qdelta(const RATE_CONTROL *rc, double qstart, double qtarget,
2639
0
                       aom_bit_depth_t bit_depth) {
2640
0
  const int start_index =
2641
0
      av1_find_qindex(qstart, bit_depth, rc->best_quality, rc->worst_quality);
2642
0
  const int target_index =
2643
0
      av1_find_qindex(qtarget, bit_depth, rc->best_quality, rc->worst_quality);
2644
0
  return target_index - start_index;
2645
0
}
2646
2647
// Find q_index for the desired_bits_per_mb, within [best_qindex, worst_qindex],
2648
// assuming 'correction_factor' is 1.0.
2649
// To be precise, 'q_index' is the smallest integer, for which the corresponding
2650
// bits per mb <= desired_bits_per_mb.
2651
// If no such q index is found, returns 'worst_qindex'.
2652
static int find_qindex_by_rate(const AV1_COMP *const cpi,
2653
                               int desired_bits_per_mb, FRAME_TYPE frame_type,
2654
0
                               int best_qindex, int worst_qindex) {
2655
0
  assert(best_qindex <= worst_qindex);
2656
0
  int low = best_qindex;
2657
0
  int high = worst_qindex;
2658
0
  while (low < high) {
2659
0
    const int mid = (low + high) >> 1;
2660
0
    const int mid_bits_per_mb =
2661
0
        av1_rc_bits_per_mb(cpi, frame_type, mid, 1.0, 0);
2662
0
    if (mid_bits_per_mb > desired_bits_per_mb) {
2663
0
      low = mid + 1;
2664
0
    } else {
2665
0
      high = mid;
2666
0
    }
2667
0
  }
2668
0
  assert(low == high);
2669
0
  assert(av1_rc_bits_per_mb(cpi, frame_type, low, 1.0, 0) <=
2670
0
             desired_bits_per_mb ||
2671
0
         low == worst_qindex);
2672
0
  return low;
2673
0
}
2674
2675
int av1_compute_qdelta_by_rate(const AV1_COMP *cpi, FRAME_TYPE frame_type,
2676
0
                               int qindex, double rate_target_ratio) {
2677
0
  const RATE_CONTROL *rc = &cpi->rc;
2678
2679
  // Look up the current projected bits per block for the base index
2680
0
  const int base_bits_per_mb =
2681
0
      av1_rc_bits_per_mb(cpi, frame_type, qindex, 1.0, 0);
2682
2683
  // Find the target bits per mb based on the base value and given ratio.
2684
0
  const int target_bits_per_mb = (int)(rate_target_ratio * base_bits_per_mb);
2685
2686
0
  const int target_index = find_qindex_by_rate(
2687
0
      cpi, target_bits_per_mb, frame_type, rc->best_quality, rc->worst_quality);
2688
0
  return target_index - qindex;
2689
0
}
2690
2691
static void set_gf_interval_range(const AV1_COMP *const cpi,
2692
0
                                  RATE_CONTROL *const rc) {
2693
0
  const AV1EncoderConfig *const oxcf = &cpi->oxcf;
2694
  // Set Maximum gf/arf interval
2695
0
  rc->max_gf_interval = oxcf->gf_cfg.max_gf_interval;
2696
0
  rc->min_gf_interval = oxcf->gf_cfg.min_gf_interval;
2697
0
  if (rc->min_gf_interval == 0)
2698
0
    rc->min_gf_interval = av1_rc_get_default_min_gf_interval(
2699
0
        oxcf->frm_dim_cfg.width, oxcf->frm_dim_cfg.height, cpi->framerate);
2700
0
  if (rc->max_gf_interval == 0)
2701
0
    rc->max_gf_interval =
2702
0
        get_default_max_gf_interval(cpi->framerate, rc->min_gf_interval);
2703
  /*
2704
   * Extended max interval for genuinely static scenes like slide shows.
2705
   * The no.of.stats available in the case of LAP is limited,
2706
   * hence setting to max_gf_interval.
2707
   */
2708
0
  if (cpi->ppi->lap_enabled)
2709
0
    rc->static_scene_max_gf_interval = rc->max_gf_interval + 1;
2710
0
  else
2711
0
    rc->static_scene_max_gf_interval = MAX_STATIC_GF_GROUP_LENGTH;
2712
2713
0
  if (rc->max_gf_interval > rc->static_scene_max_gf_interval)
2714
0
    rc->max_gf_interval = rc->static_scene_max_gf_interval;
2715
2716
  // Clamp min to max
2717
0
  rc->min_gf_interval = AOMMIN(rc->min_gf_interval, rc->max_gf_interval);
2718
0
}
2719
2720
0
void av1_rc_update_framerate(AV1_COMP *cpi, int width, int height) {
2721
0
  const AV1EncoderConfig *const oxcf = &cpi->oxcf;
2722
0
  RATE_CONTROL *const rc = &cpi->rc;
2723
0
  const int MBs = av1_get_MBs(width, height);
2724
2725
0
  rc->avg_frame_bandwidth = saturate_cast_double_to_int(
2726
0
      round(oxcf->rc_cfg.target_bandwidth / cpi->framerate));
2727
2728
0
  int64_t vbr_min_bits =
2729
0
      (int64_t)rc->avg_frame_bandwidth * oxcf->rc_cfg.vbrmin_section / 100;
2730
0
  vbr_min_bits = AOMMIN(vbr_min_bits, INT_MAX);
2731
2732
0
  rc->min_frame_bandwidth = AOMMAX((int)vbr_min_bits, FRAME_OVERHEAD_BITS);
2733
2734
  // A maximum bitrate for a frame is defined.
2735
  // The baseline for this aligns with HW implementations that
2736
  // can support decode of 1080P content up to a bitrate of MAX_MB_RATE bits
2737
  // per 16x16 MB (averaged over a frame). However this limit is extended if
2738
  // a very high rate is given on the command line or the rate cannot
2739
  // be achieved because of a user specified max q (e.g. when the user
2740
  // specifies lossless encode.
2741
0
  int64_t vbr_max_bits =
2742
0
      (int64_t)rc->avg_frame_bandwidth * oxcf->rc_cfg.vbrmax_section / 100;
2743
0
  vbr_max_bits = AOMMIN(vbr_max_bits, INT_MAX);
2744
2745
0
  rc->max_frame_bandwidth =
2746
0
      AOMMAX(AOMMAX((MBs * MAX_MB_RATE), MAXRATE_1080P), (int)vbr_max_bits);
2747
2748
0
  set_gf_interval_range(cpi, rc);
2749
0
}
2750
2751
#define VBR_PCT_ADJUSTMENT_LIMIT 50
2752
// For VBR...adjustment to the frame target based on error from previous frames
2753
0
static void vbr_rate_correction(AV1_COMP *cpi, int *this_frame_target) {
2754
0
  RATE_CONTROL *const rc = &cpi->rc;
2755
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
2756
#if CONFIG_FPMT_TEST
2757
  const int simulate_parallel_frame =
2758
      cpi->ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] > 0 &&
2759
      cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE;
2760
  int64_t vbr_bits_off_target = simulate_parallel_frame
2761
                                    ? cpi->ppi->p_rc.temp_vbr_bits_off_target
2762
                                    : p_rc->vbr_bits_off_target;
2763
#else
2764
0
  int64_t vbr_bits_off_target = p_rc->vbr_bits_off_target;
2765
0
#endif
2766
0
  int64_t frame_target = *this_frame_target;
2767
2768
0
  const double stats_count =
2769
0
      cpi->ppi->twopass.stats_buf_ctx->total_stats != NULL
2770
0
          ? cpi->ppi->twopass.stats_buf_ctx->total_stats->count
2771
0
          : 0.0;
2772
0
  const int frame_window =
2773
0
      (int)AOMMIN(16, stats_count - cpi->common.current_frame.frame_number);
2774
0
  assert(VBR_PCT_ADJUSTMENT_LIMIT <= 100);
2775
0
  if (frame_window > 0) {
2776
0
    const int64_t max_delta =
2777
0
        AOMMIN(llabs((vbr_bits_off_target / frame_window)),
2778
0
               (frame_target * VBR_PCT_ADJUSTMENT_LIMIT) / 100);
2779
2780
    // vbr_bits_off_target > 0 means we have extra bits to spend
2781
    // vbr_bits_off_target < 0 we are currently overshooting
2782
0
    frame_target += (vbr_bits_off_target >= 0) ? max_delta : -max_delta;
2783
0
  }
2784
2785
#if CONFIG_FPMT_TEST
2786
  int64_t vbr_bits_off_target_fast =
2787
      simulate_parallel_frame ? cpi->ppi->p_rc.temp_vbr_bits_off_target_fast
2788
                              : p_rc->vbr_bits_off_target_fast;
2789
#endif
2790
  // Fast redistribution of bits arising from massive local undershoot.
2791
  // Don't do it for kf,arf,gf or overlay frames.
2792
0
  if (!frame_is_kf_gf_arf(cpi) &&
2793
#if CONFIG_FPMT_TEST
2794
      vbr_bits_off_target_fast &&
2795
#else
2796
0
      p_rc->vbr_bits_off_target_fast &&
2797
0
#endif
2798
0
      !rc->is_src_frame_alt_ref) {
2799
0
    int64_t one_frame_bits = AOMMAX(rc->avg_frame_bandwidth, frame_target);
2800
0
    int64_t fast_extra_bits;
2801
#if CONFIG_FPMT_TEST
2802
    fast_extra_bits = AOMMIN(vbr_bits_off_target_fast, one_frame_bits);
2803
    fast_extra_bits =
2804
        AOMMIN(fast_extra_bits,
2805
               AOMMAX(one_frame_bits / 8, vbr_bits_off_target_fast / 8));
2806
#else
2807
0
    fast_extra_bits = AOMMIN(p_rc->vbr_bits_off_target_fast, one_frame_bits);
2808
0
    fast_extra_bits =
2809
0
        AOMMIN(fast_extra_bits,
2810
0
               AOMMAX(one_frame_bits / 8, p_rc->vbr_bits_off_target_fast / 8));
2811
0
#endif
2812
0
    fast_extra_bits = AOMMIN(fast_extra_bits, INT_MAX);
2813
0
    if (fast_extra_bits > 0) {
2814
      // Update frame_target only if additional bits are available from
2815
      // local undershoot.
2816
0
      frame_target += fast_extra_bits;
2817
0
    }
2818
    // Store the fast_extra_bits of the frame and reduce it from
2819
    // vbr_bits_off_target_fast during postencode stage.
2820
0
    rc->frame_level_fast_extra_bits = (int)fast_extra_bits;
2821
    // Retaining the condition to update during postencode stage since
2822
    // fast_extra_bits are calculated based on vbr_bits_off_target_fast.
2823
0
    cpi->do_update_vbr_bits_off_target_fast = 1;
2824
0
  }
2825
2826
  // Clamp the target for the frame to the maximum allowed for one frame.
2827
0
  *this_frame_target = (int)AOMMIN(frame_target, INT_MAX);
2828
0
}
2829
2830
0
void av1_set_target_rate(AV1_COMP *cpi, int width, int height) {
2831
0
  RATE_CONTROL *const rc = &cpi->rc;
2832
0
  int target_rate = rc->base_frame_target;
2833
2834
  // Correction to rate target based on prior over or under shoot.
2835
0
  if (cpi->oxcf.rc_cfg.mode == AOM_VBR || cpi->oxcf.rc_cfg.mode == AOM_CQ)
2836
0
    vbr_rate_correction(cpi, &target_rate);
2837
0
  av1_rc_set_frame_target(cpi, target_rate, width, height);
2838
0
}
2839
2840
int av1_calc_pframe_target_size_one_pass_vbr(
2841
0
    const AV1_COMP *const cpi, FRAME_UPDATE_TYPE frame_update_type) {
2842
0
  const int af_ratio = is_one_pass_rt_lag_params(cpi) ? 6 : 10;
2843
0
  const RATE_CONTROL *const rc = &cpi->rc;
2844
0
  const PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
2845
0
  int64_t target;
2846
0
#if USE_ALTREF_FOR_ONE_PASS
2847
0
  if (frame_update_type == KF_UPDATE || frame_update_type == GF_UPDATE ||
2848
0
      frame_update_type == ARF_UPDATE) {
2849
0
    target = ((int64_t)rc->avg_frame_bandwidth * p_rc->baseline_gf_interval *
2850
0
              af_ratio) /
2851
0
             (p_rc->baseline_gf_interval + af_ratio - 1);
2852
0
  } else {
2853
0
    target = ((int64_t)rc->avg_frame_bandwidth * p_rc->baseline_gf_interval) /
2854
0
             (p_rc->baseline_gf_interval + af_ratio - 1);
2855
0
  }
2856
#else
2857
  target = rc->avg_frame_bandwidth;
2858
#endif
2859
0
  return clamp_pframe_target_size(cpi, target, frame_update_type);
2860
0
}
2861
2862
0
int av1_calc_iframe_target_size_one_pass_vbr(const AV1_COMP *const cpi) {
2863
0
  static const int kf_ratio = 25;
2864
0
  const RATE_CONTROL *rc = &cpi->rc;
2865
0
  const int64_t target = (int64_t)rc->avg_frame_bandwidth * kf_ratio;
2866
0
  return clamp_iframe_target_size(cpi, target);
2867
0
}
2868
2869
int av1_calc_pframe_target_size_one_pass_cbr(
2870
0
    const AV1_COMP *cpi, FRAME_UPDATE_TYPE frame_update_type) {
2871
0
  const AV1EncoderConfig *oxcf = &cpi->oxcf;
2872
0
  const RATE_CONTROL *rc = &cpi->rc;
2873
0
  const PRIMARY_RATE_CONTROL *p_rc = &cpi->ppi->p_rc;
2874
0
  const RateControlCfg *rc_cfg = &oxcf->rc_cfg;
2875
0
  const RefreshFrameInfo *const refresh_frame = &cpi->refresh_frame;
2876
0
  int64_t diff = p_rc->optimal_buffer_level - p_rc->buffer_level;
2877
  // For refresh alt or golden: keep diff negative to force setting
2878
  // higher target bandwidth on these frames.
2879
  // Only realtime mode with lookahead.
2880
0
  if (is_one_pass_rt_lag_params(cpi) &&
2881
0
      (refresh_frame->alt_ref_frame || refresh_frame->golden_frame))
2882
0
    diff = AOMMIN(diff, -p_rc->optimal_buffer_level);
2883
0
  const int64_t one_pct_bits = 1 + p_rc->optimal_buffer_level / 100;
2884
0
  int min_frame_target =
2885
0
      AOMMAX(rc->avg_frame_bandwidth >> 4, FRAME_OVERHEAD_BITS);
2886
0
  int64_t target;
2887
2888
0
  if (rc_cfg->gf_cbr_boost_pct) {
2889
0
    const int af_ratio_pct = rc_cfg->gf_cbr_boost_pct + 100;
2890
0
    if (frame_update_type == GF_UPDATE || frame_update_type == OVERLAY_UPDATE) {
2891
0
      target = ((int64_t)rc->avg_frame_bandwidth * p_rc->baseline_gf_interval *
2892
0
                af_ratio_pct) /
2893
0
               (p_rc->baseline_gf_interval * 100 + af_ratio_pct - 100);
2894
0
    } else {
2895
0
      target = ((int64_t)rc->avg_frame_bandwidth * p_rc->baseline_gf_interval *
2896
0
                100) /
2897
0
               (p_rc->baseline_gf_interval * 100 + af_ratio_pct - 100);
2898
0
    }
2899
0
  } else {
2900
0
    target = rc->avg_frame_bandwidth;
2901
0
  }
2902
0
  if (cpi->ppi->use_svc) {
2903
    // Note that for layers, avg_frame_bandwidth is the cumulative
2904
    // per-frame-bandwidth. For the target size of this frame, use the
2905
    // layer average frame size (i.e., non-cumulative per-frame-bw).
2906
0
    int layer =
2907
0
        LAYER_IDS_TO_IDX(cpi->svc.spatial_layer_id, cpi->svc.temporal_layer_id,
2908
0
                         cpi->svc.number_temporal_layers);
2909
0
    const LAYER_CONTEXT *lc = &cpi->svc.layer_context[layer];
2910
0
    target = lc->avg_frame_size;
2911
0
    min_frame_target = AOMMAX(lc->avg_frame_size >> 4, FRAME_OVERHEAD_BITS);
2912
0
  }
2913
0
  if (diff > 0) {
2914
    // Lower the target bandwidth for this frame.
2915
0
    const int pct_low =
2916
0
        (int)AOMMIN(diff / one_pct_bits, rc_cfg->under_shoot_pct);
2917
0
    target -= (target * pct_low) / 200;
2918
0
  } else if (diff < 0) {
2919
    // Increase the target bandwidth for this frame.
2920
0
    const int pct_high =
2921
0
        (int)AOMMIN(-diff / one_pct_bits, rc_cfg->over_shoot_pct);
2922
0
    target += (target * pct_high) / 200;
2923
0
  }
2924
0
  if (rc_cfg->max_inter_bitrate_pct) {
2925
0
    const int64_t max_rate =
2926
0
        (int64_t)rc->avg_frame_bandwidth * rc_cfg->max_inter_bitrate_pct / 100;
2927
0
    target = AOMMIN(target, max_rate);
2928
0
  }
2929
0
  if (target > INT_MAX) target = INT_MAX;
2930
0
  return AOMMAX(min_frame_target, (int)target);
2931
0
}
2932
2933
0
int av1_calc_iframe_target_size_one_pass_cbr(const AV1_COMP *cpi) {
2934
0
  const RATE_CONTROL *rc = &cpi->rc;
2935
0
  const PRIMARY_RATE_CONTROL *p_rc = &cpi->ppi->p_rc;
2936
0
  int64_t target;
2937
0
  if (cpi->common.current_frame.frame_number == 0) {
2938
0
    target = ((p_rc->starting_buffer_level / 2) > INT_MAX)
2939
0
                 ? INT_MAX
2940
0
                 : (int)(p_rc->starting_buffer_level / 2);
2941
0
    if (cpi->svc.number_temporal_layers > 1 && target < (INT_MAX >> 2)) {
2942
0
      target = target << AOMMIN(2, (cpi->svc.number_temporal_layers - 1));
2943
0
    }
2944
0
  } else {
2945
0
    int kf_boost = 32;
2946
0
    double framerate = cpi->framerate;
2947
2948
0
    kf_boost = AOMMAX(kf_boost, (int)round(2 * framerate - 16));
2949
0
    if (rc->frames_since_key < framerate / 2) {
2950
0
      kf_boost = (int)(kf_boost * rc->frames_since_key / (framerate / 2));
2951
0
    }
2952
0
    target = ((int64_t)(16 + kf_boost) * rc->avg_frame_bandwidth) >> 4;
2953
0
  }
2954
0
  return clamp_iframe_target_size(cpi, target);
2955
0
}
2956
2957
0
static void set_golden_update(AV1_COMP *const cpi) {
2958
0
  RATE_CONTROL *const rc = &cpi->rc;
2959
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
2960
0
  int divisor = 10;
2961
0
  if (cpi->oxcf.q_cfg.aq_mode == CYCLIC_REFRESH_AQ)
2962
0
    divisor = cpi->cyclic_refresh->percent_refresh;
2963
2964
  // Set minimum gf_interval for GF update to a multiple of the refresh period,
2965
  // with some max limit. Depending on past encoding stats, GF flag may be
2966
  // reset and update may not occur until next baseline_gf_interval.
2967
0
  const int gf_length_mult[2] = { 8, 4 };
2968
0
  if (divisor > 0)
2969
0
    p_rc->baseline_gf_interval =
2970
0
        AOMMIN(gf_length_mult[cpi->sf.rt_sf.gf_length_lvl] * (100 / divisor),
2971
0
               MAX_GF_INTERVAL_RT);
2972
0
  else
2973
0
    p_rc->baseline_gf_interval = FIXED_GF_INTERVAL_RT;
2974
0
  if (rc->avg_frame_low_motion && rc->avg_frame_low_motion < 40)
2975
0
    p_rc->baseline_gf_interval = 16;
2976
0
}
2977
2978
0
static void set_baseline_gf_interval(AV1_COMP *cpi, FRAME_TYPE frame_type) {
2979
0
  RATE_CONTROL *const rc = &cpi->rc;
2980
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
2981
0
  GF_GROUP *const gf_group = &cpi->ppi->gf_group;
2982
2983
0
  set_golden_update(cpi);
2984
2985
0
  if (p_rc->baseline_gf_interval > rc->frames_to_key &&
2986
0
      cpi->oxcf.kf_cfg.auto_key)
2987
0
    p_rc->baseline_gf_interval = rc->frames_to_key;
2988
0
  p_rc->gfu_boost = DEFAULT_GF_BOOST_RT;
2989
0
  p_rc->constrained_gf_group =
2990
0
      (p_rc->baseline_gf_interval >= rc->frames_to_key &&
2991
0
       cpi->oxcf.kf_cfg.auto_key)
2992
0
          ? 1
2993
0
          : 0;
2994
0
  rc->frames_till_gf_update_due = p_rc->baseline_gf_interval;
2995
0
  cpi->gf_frame_index = 0;
2996
  // SVC does not use GF as periodic boost.
2997
  // TODO(marpan): Find better way to disable this for SVC.
2998
0
  if (cpi->ppi->use_svc) {
2999
0
    SVC *const svc = &cpi->svc;
3000
0
    p_rc->baseline_gf_interval = MAX_STATIC_GF_GROUP_LENGTH - 1;
3001
0
    p_rc->gfu_boost = 1;
3002
0
    p_rc->constrained_gf_group = 0;
3003
0
    rc->frames_till_gf_update_due = p_rc->baseline_gf_interval;
3004
0
    for (int layer = 0;
3005
0
         layer < svc->number_spatial_layers * svc->number_temporal_layers;
3006
0
         ++layer) {
3007
0
      LAYER_CONTEXT *const lc = &svc->layer_context[layer];
3008
0
      lc->p_rc.baseline_gf_interval = p_rc->baseline_gf_interval;
3009
0
      lc->p_rc.gfu_boost = p_rc->gfu_boost;
3010
0
      lc->p_rc.constrained_gf_group = p_rc->constrained_gf_group;
3011
0
      lc->rc.frames_till_gf_update_due = rc->frames_till_gf_update_due;
3012
0
      lc->group_index = 0;
3013
0
    }
3014
0
  }
3015
0
  gf_group->size = p_rc->baseline_gf_interval;
3016
0
  gf_group->update_type[0] = (frame_type == KEY_FRAME) ? KF_UPDATE : GF_UPDATE;
3017
0
  gf_group->refbuf_state[cpi->gf_frame_index] =
3018
0
      (frame_type == KEY_FRAME) ? REFBUF_RESET : REFBUF_UPDATE;
3019
0
}
3020
3021
0
void av1_adjust_gf_refresh_qp_one_pass_rt(AV1_COMP *cpi) {
3022
0
  AV1_COMMON *const cm = &cpi->common;
3023
0
  RATE_CONTROL *const rc = &cpi->rc;
3024
0
  RTC_REF *const rtc_ref = &cpi->ppi->rtc_ref;
3025
0
  const int resize_pending = is_frame_resize_pending(cpi);
3026
0
  if (!resize_pending && !rc->high_source_sad) {
3027
    // Check if we should disable GF refresh (if period is up),
3028
    // or force a GF refresh update (if we are at least halfway through
3029
    // period) based on QP. Look into add info on segment deltaq.
3030
0
    PRIMARY_RATE_CONTROL *p_rc = &cpi->ppi->p_rc;
3031
0
    const int avg_qp = p_rc->avg_frame_qindex[INTER_FRAME];
3032
0
    const int allow_gf_update =
3033
0
        rc->frames_till_gf_update_due <= (p_rc->baseline_gf_interval - 10);
3034
0
    int gf_update_changed = 0;
3035
0
    int thresh = 87;
3036
0
    if ((cm->current_frame.frame_number - cpi->rc.frame_num_last_gf_refresh) <
3037
0
            FIXED_GF_INTERVAL_RT &&
3038
0
        rc->frames_till_gf_update_due == 1 &&
3039
0
        cm->quant_params.base_qindex > avg_qp) {
3040
      // Disable GF refresh since QP is above the running average QP.
3041
0
      rtc_ref->refresh[rtc_ref->gld_idx_1layer] = 0;
3042
0
      gf_update_changed = 1;
3043
0
      cpi->refresh_frame.golden_frame = 0;
3044
0
    } else if (allow_gf_update &&
3045
0
               ((cm->quant_params.base_qindex < thresh * avg_qp / 100) ||
3046
0
                (rc->avg_frame_low_motion && rc->avg_frame_low_motion < 20))) {
3047
      // Force refresh since QP is well below average QP or this is a high
3048
      // motion frame.
3049
0
      rtc_ref->refresh[rtc_ref->gld_idx_1layer] = 1;
3050
0
      gf_update_changed = 1;
3051
0
      cpi->refresh_frame.golden_frame = 1;
3052
0
    }
3053
0
    if (gf_update_changed) {
3054
0
      set_baseline_gf_interval(cpi, INTER_FRAME);
3055
0
      int refresh_mask = 0;
3056
0
      for (unsigned int i = 0; i < INTER_REFS_PER_FRAME; i++) {
3057
0
        int ref_frame_map_idx = rtc_ref->ref_idx[i];
3058
0
        refresh_mask |= rtc_ref->refresh[ref_frame_map_idx]
3059
0
                        << ref_frame_map_idx;
3060
0
      }
3061
0
      cm->current_frame.refresh_frame_flags = refresh_mask;
3062
0
    }
3063
0
  }
3064
0
}
3065
3066
/*!\brief Setup the reference prediction structure for 1 pass real-time
3067
 *
3068
 * Set the reference prediction structure for 1 layer.
3069
 * Current structure is to use 3 references (LAST, GOLDEN, ALTREF),
3070
 * where ALT_REF always behind current by lag_alt frames, and GOLDEN is
3071
 * either updated on LAST with period baseline_gf_interval (fixed slot)
3072
 * or always behind current by lag_gld (gld_fixed_slot = 0, lag_gld <= 7).
3073
 *
3074
 * \ingroup rate_control
3075
 * \param[in]       cpi          Top level encoder structure
3076
 * \param[in]       gf_update    Flag to indicate if GF is updated
3077
 *
3078
 * \remark Nothing is returned. Instead the settings for the prediction
3079
 * structure are set in \c cpi-ext_flags; and the buffer slot index
3080
 * (for each of 7 references) and refresh flags (for each of the 8 slots)
3081
 * are set in \c cpi->svc.ref_idx[] and \c cpi->svc.refresh[].
3082
 */
3083
0
void av1_set_rtc_reference_structure_one_layer(AV1_COMP *cpi, int gf_update) {
3084
0
  AV1_COMMON *const cm = &cpi->common;
3085
0
  ExternalFlags *const ext_flags = &cpi->ext_flags;
3086
0
  RATE_CONTROL *const rc = &cpi->rc;
3087
0
  ExtRefreshFrameFlagsInfo *const ext_refresh_frame_flags =
3088
0
      &ext_flags->refresh_frame;
3089
0
  RTC_REF *const rtc_ref = &cpi->ppi->rtc_ref;
3090
0
  unsigned int frame_number = (cpi->oxcf.rc_cfg.drop_frames_water_mark)
3091
0
                                  ? rc->frame_number_encoded
3092
0
                                  : cm->current_frame.frame_number;
3093
0
  unsigned int lag_alt = 4;
3094
0
  int last_idx = 0;
3095
0
  int last_idx_refresh = 0;
3096
0
  int gld_idx = 0;
3097
0
  int alt_ref_idx = 0;
3098
0
  int last2_idx = 0;
3099
0
  ext_refresh_frame_flags->update_pending = 1;
3100
0
  ext_flags->ref_frame_flags = 0;
3101
0
  ext_refresh_frame_flags->last_frame = 1;
3102
0
  ext_refresh_frame_flags->golden_frame = 0;
3103
0
  ext_refresh_frame_flags->alt_ref_frame = 0;
3104
  // Decide altref lag adaptively for rt
3105
0
  if (cpi->sf.rt_sf.sad_based_adp_altref_lag) {
3106
0
    lag_alt = 6;
3107
0
    const uint64_t th_frame_sad[4][3] = {
3108
0
      { 18000, 18000, 18000 },  // HDRES CPU 9
3109
0
      { 25000, 25000, 25000 },  // MIDRES CPU 9
3110
0
      { 40000, 30000, 20000 },  // HDRES CPU 10
3111
0
      { 30000, 25000, 20000 }   // MIDRES CPU 10
3112
0
    };
3113
0
    int th_idx = cpi->sf.rt_sf.sad_based_adp_altref_lag - 1;
3114
0
    assert(th_idx < 4);
3115
0
    if (rc->avg_source_sad > th_frame_sad[th_idx][0])
3116
0
      lag_alt = 3;
3117
0
    else if (rc->avg_source_sad > th_frame_sad[th_idx][1])
3118
0
      lag_alt = 4;
3119
0
    else if (rc->avg_source_sad > th_frame_sad[th_idx][2])
3120
0
      lag_alt = 5;
3121
0
  }
3122
  // This defines the reference structure for 1 layer (non-svc) RTC encoding.
3123
  // To avoid the internal/default reference structure for non-realtime
3124
  // overwriting this behavior, we use the "svc" ref parameters from the
3125
  // external control SET_SVC_REF_FRAME_CONFIG.
3126
  // TODO(marpan): rename that control and the related internal parameters
3127
  // to rtc_ref.
3128
0
  for (int i = 0; i < INTER_REFS_PER_FRAME; ++i) rtc_ref->ref_idx[i] = 7;
3129
0
  for (int i = 0; i < REF_FRAMES; ++i) rtc_ref->refresh[i] = 0;
3130
  // Set the reference frame flags.
3131
0
  ext_flags->ref_frame_flags ^= AOM_LAST_FLAG;
3132
0
  if (!cpi->sf.rt_sf.force_only_last_ref) {
3133
0
    ext_flags->ref_frame_flags ^= AOM_ALT_FLAG;
3134
0
    ext_flags->ref_frame_flags ^= AOM_GOLD_FLAG;
3135
0
    if (cpi->sf.rt_sf.ref_frame_comp_nonrd[1])
3136
0
      ext_flags->ref_frame_flags ^= AOM_LAST2_FLAG;
3137
0
  }
3138
0
  const int sh = 6;
3139
  // Moving index slot for last: 0 - (sh - 1).
3140
0
  if (frame_number > 1) last_idx = ((frame_number - 1) % sh);
3141
  // Moving index for refresh of last: one ahead for next frame.
3142
0
  last_idx_refresh = (frame_number % sh);
3143
0
  gld_idx = 6;
3144
3145
  // Moving index for alt_ref, lag behind LAST by lag_alt frames.
3146
0
  if (frame_number > lag_alt) alt_ref_idx = ((frame_number - lag_alt) % sh);
3147
0
  if (cpi->sf.rt_sf.ref_frame_comp_nonrd[1]) {
3148
    // Moving index for LAST2, lag behind LAST by 2 frames.
3149
0
    if (frame_number > 2) last2_idx = ((frame_number - 2) % sh);
3150
0
  }
3151
0
  rtc_ref->ref_idx[0] = last_idx;          // LAST
3152
0
  rtc_ref->ref_idx[1] = last_idx_refresh;  // LAST2 (for refresh of last).
3153
0
  if (cpi->sf.rt_sf.ref_frame_comp_nonrd[1]) {
3154
0
    rtc_ref->ref_idx[1] = last2_idx;         // LAST2
3155
0
    rtc_ref->ref_idx[2] = last_idx_refresh;  // LAST3 (for refresh of last).
3156
0
  }
3157
0
  rtc_ref->ref_idx[3] = gld_idx;      // GOLDEN
3158
0
  rtc_ref->ref_idx[6] = alt_ref_idx;  // ALT_REF
3159
  // Refresh this slot, which will become LAST on next frame.
3160
0
  rtc_ref->refresh[last_idx_refresh] = 1;
3161
  // Update GOLDEN on period for fixed slot case.
3162
0
  if (gf_update && cm->current_frame.frame_type != KEY_FRAME) {
3163
0
    ext_refresh_frame_flags->golden_frame = 1;
3164
0
    rtc_ref->refresh[gld_idx] = 1;
3165
0
  }
3166
0
  rtc_ref->gld_idx_1layer = gld_idx;
3167
  // Set the flag to reduce the number of reference frame buffers used.
3168
  // This assumes that slot 7 is never used.
3169
0
  cpi->rt_reduce_num_ref_buffers = 1;
3170
0
  cpi->rt_reduce_num_ref_buffers &= (rtc_ref->ref_idx[0] < 7);
3171
0
  cpi->rt_reduce_num_ref_buffers &= (rtc_ref->ref_idx[1] < 7);
3172
0
  cpi->rt_reduce_num_ref_buffers &= (rtc_ref->ref_idx[3] < 7);
3173
0
  cpi->rt_reduce_num_ref_buffers &= (rtc_ref->ref_idx[6] < 7);
3174
0
  if (cpi->sf.rt_sf.ref_frame_comp_nonrd[1])
3175
0
    cpi->rt_reduce_num_ref_buffers &= (rtc_ref->ref_idx[2] < 7);
3176
0
}
3177
3178
// Returns whether the 64x64 block is active or inactive: used
3179
// by the scene detection, which is over 64x64 blocks.
3180
static int set_block_is_active(unsigned char *const active_map_4x4, int mi_cols,
3181
0
                               int mi_rows, int sbi_col, int sbi_row) {
3182
0
  int num_4x4 = 16;
3183
0
  int r = sbi_row << 4;
3184
0
  int c = sbi_col << 4;
3185
0
  const int row_max = AOMMIN(num_4x4, mi_rows - r);
3186
0
  const int col_max = AOMMIN(num_4x4, mi_cols - c);
3187
  // Active map is set for 16x16 blocks, so only need to
3188
  // check over16x16,
3189
0
  for (int x = 0; x < row_max; x += 4) {
3190
0
    for (int y = 0; y < col_max; y += 4) {
3191
0
      if (active_map_4x4[(r + x) * mi_cols + (c + y)] == AM_SEGMENT_ID_ACTIVE)
3192
0
        return 1;
3193
0
    }
3194
0
  }
3195
0
  return 0;
3196
0
}
3197
3198
// Returns the best sad for column or row motion of the superblock.
3199
static unsigned int estimate_scroll_motion(
3200
    const AV1_COMP *cpi, uint8_t *src_buf, uint8_t *last_src_buf,
3201
    int src_stride, int ref_stride, BLOCK_SIZE bsize, int pos_col, int pos_row,
3202
0
    int *best_intmv_col, int *best_intmv_row, int sw_col, int sw_row) {
3203
0
  const AV1_COMMON *const cm = &cpi->common;
3204
0
  const int bw = block_size_wide[bsize];
3205
0
  const int bh = block_size_high[bsize];
3206
0
  const int full_search = 1;
3207
  // Keep border a multiple of 16.
3208
0
  const int border = (cpi->oxcf.border_in_pixels >> 4) << 4;
3209
0
  int search_size_width = sw_col;
3210
0
  int search_size_height = sw_row;
3211
  // Adjust based on boundary.
3212
0
  if ((pos_col - search_size_width < -border) ||
3213
0
      (pos_col + search_size_width > cm->width + border))
3214
0
    search_size_width = border;
3215
0
  if ((pos_row - search_size_height < -border) ||
3216
0
      (pos_row + search_size_height > cm->height + border))
3217
0
    search_size_height = border;
3218
0
  const uint8_t *ref_buf;
3219
0
  const int row_norm_factor = mi_size_high_log2[bsize] + 1;
3220
0
  const int col_norm_factor = 3 + (bw >> 5);
3221
0
  const int ref_buf_width = (search_size_width << 1) + bw;
3222
0
  const int ref_buf_height = (search_size_height << 1) + bh;
3223
0
  int16_t *hbuf = (int16_t *)aom_malloc(ref_buf_width * sizeof(*hbuf));
3224
0
  int16_t *vbuf = (int16_t *)aom_malloc(ref_buf_height * sizeof(*vbuf));
3225
0
  int16_t *src_hbuf = (int16_t *)aom_malloc(bw * sizeof(*src_hbuf));
3226
0
  int16_t *src_vbuf = (int16_t *)aom_malloc(bh * sizeof(*src_vbuf));
3227
0
  if (!hbuf || !vbuf || !src_hbuf || !src_vbuf) {
3228
0
    aom_free(hbuf);
3229
0
    aom_free(vbuf);
3230
0
    aom_free(src_hbuf);
3231
0
    aom_free(src_vbuf);
3232
0
    aom_internal_error(cm->error, AOM_CODEC_MEM_ERROR,
3233
0
                       "Failed to allocate hbuf, vbuf, src_hbuf, or src_vbuf");
3234
0
  }
3235
  // Set up prediction 1-D reference set for rows.
3236
0
  ref_buf = last_src_buf - search_size_width;
3237
0
  aom_int_pro_row(hbuf, ref_buf, ref_stride, ref_buf_width, bh,
3238
0
                  row_norm_factor);
3239
  // Set up prediction 1-D reference set for cols
3240
0
  ref_buf = last_src_buf - search_size_height * ref_stride;
3241
0
  aom_int_pro_col(vbuf, ref_buf, ref_stride, bw, ref_buf_height,
3242
0
                  col_norm_factor);
3243
  // Set up src 1-D reference set
3244
0
  aom_int_pro_row(src_hbuf, src_buf, src_stride, bw, bh, row_norm_factor);
3245
0
  aom_int_pro_col(src_vbuf, src_buf, src_stride, bw, bh, col_norm_factor);
3246
0
  unsigned int best_sad;
3247
0
  int best_sad_col, best_sad_row;
3248
  // Find the best match per 1-D search
3249
0
  *best_intmv_col =
3250
0
      av1_vector_match(hbuf, src_hbuf, mi_size_wide_log2[bsize],
3251
0
                       search_size_width, full_search, &best_sad_col);
3252
0
  *best_intmv_row =
3253
0
      av1_vector_match(vbuf, src_vbuf, mi_size_high_log2[bsize],
3254
0
                       search_size_height, full_search, &best_sad_row);
3255
0
  if (best_sad_col < best_sad_row) {
3256
0
    *best_intmv_row = 0;
3257
0
    best_sad = best_sad_col;
3258
0
  } else {
3259
0
    *best_intmv_col = 0;
3260
0
    best_sad = best_sad_row;
3261
0
  }
3262
0
  aom_free(hbuf);
3263
0
  aom_free(vbuf);
3264
0
  aom_free(src_hbuf);
3265
0
  aom_free(src_vbuf);
3266
0
  return best_sad;
3267
0
}
3268
3269
void av1_rc_scene_detection_onepass_rt(AV1_COMP *cpi,
3270
0
                                       const EncodeFrameInput *frame_input) {
3271
0
  AV1_COMMON *const cm = &cpi->common;
3272
0
  RATE_CONTROL *const rc = &cpi->rc;
3273
0
  YV12_BUFFER_CONFIG const *const unscaled_src = frame_input->source;
3274
0
  YV12_BUFFER_CONFIG const *const unscaled_last_src = frame_input->last_source;
3275
0
  uint8_t *src_y;
3276
0
  int src_ystride;
3277
0
  int src_width;
3278
0
  int src_height;
3279
0
  uint8_t *last_src_y;
3280
0
  int last_src_ystride;
3281
0
  int last_src_width;
3282
0
  int last_src_height;
3283
0
  int width = cm->width;
3284
0
  int height = cm->height;
3285
0
  if (cpi->svc.number_spatial_layers > 1) {
3286
0
    width = cpi->oxcf.frm_dim_cfg.width;
3287
0
    height = cpi->oxcf.frm_dim_cfg.height;
3288
0
  }
3289
  // Set src_sad_blk_64x64 to NULL also for number_spatial layers > 1, as
3290
  // it is never allocated for number_spatial_layers > 1 (see the condition
3291
  // under which we allocate cpi->src_sad_blk_64x64 later in this function).
3292
  // This is guard against the case where the number_spatial_layers
3293
  // is changed dynamically without re-alloc of encoder.
3294
0
  if (width != cm->render_width || height != cm->render_height ||
3295
0
      cpi->svc.number_spatial_layers > 1 || unscaled_src == NULL ||
3296
0
      unscaled_last_src == NULL) {
3297
0
    aom_free(cpi->src_sad_blk_64x64);
3298
0
    cpi->src_sad_blk_64x64 = NULL;
3299
0
  }
3300
0
  if (unscaled_src == NULL || unscaled_last_src == NULL) return;
3301
0
  src_y = unscaled_src->y_buffer;
3302
0
  src_ystride = unscaled_src->y_stride;
3303
0
  src_width = unscaled_src->y_width;
3304
0
  src_height = unscaled_src->y_height;
3305
0
  last_src_y = unscaled_last_src->y_buffer;
3306
0
  last_src_ystride = unscaled_last_src->y_stride;
3307
0
  last_src_width = unscaled_last_src->y_width;
3308
0
  last_src_height = unscaled_last_src->y_height;
3309
0
  if (src_width != last_src_width || src_height != last_src_height) {
3310
0
    aom_free(cpi->src_sad_blk_64x64);
3311
0
    cpi->src_sad_blk_64x64 = NULL;
3312
0
    return;
3313
0
  }
3314
0
  rc->high_source_sad = 0;
3315
0
  rc->percent_blocks_with_motion = 0;
3316
0
  rc->max_block_source_sad = 0;
3317
0
  rc->prev_avg_source_sad = rc->avg_source_sad;
3318
0
  int num_mi_cols = cm->mi_params.mi_cols;
3319
0
  int num_mi_rows = cm->mi_params.mi_rows;
3320
0
  if (cpi->svc.number_spatial_layers > 1) {
3321
0
    num_mi_cols = cpi->svc.mi_cols_full_resoln;
3322
0
    num_mi_rows = cpi->svc.mi_rows_full_resoln;
3323
0
  }
3324
0
  int num_zero_temp_sad = 0;
3325
0
  uint32_t min_thresh =
3326
0
      (cpi->oxcf.tune_cfg.content == AOM_CONTENT_SCREEN) ? 8000 : 10000;
3327
0
  if (cpi->sf.rt_sf.higher_thresh_scene_detection) {
3328
0
    min_thresh = cm->width * cm->height <= 320 * 240 && cpi->framerate < 10.0
3329
0
                     ? 50000
3330
0
                     : 100000;
3331
0
  }
3332
0
  const BLOCK_SIZE bsize = BLOCK_64X64;
3333
  // Loop over sub-sample of frame, compute average sad over 64x64 blocks.
3334
0
  uint64_t avg_sad = 0;
3335
0
  uint64_t tmp_sad = 0;
3336
0
  int num_samples = 0;
3337
0
  const int thresh =
3338
0
      ((cm->width * cm->height <= 320 * 240 && cpi->framerate < 10.0) ||
3339
0
       (cpi->oxcf.tune_cfg.content == AOM_CONTENT_SCREEN))
3340
0
          ? 5
3341
0
          : 6;
3342
  // SAD is computed on 64x64 blocks
3343
0
  const int sb_size_by_mb = (cm->seq_params->sb_size == BLOCK_128X128)
3344
0
                                ? (cm->seq_params->mib_size >> 1)
3345
0
                                : cm->seq_params->mib_size;
3346
0
  const int sb_cols = (num_mi_cols + sb_size_by_mb - 1) / sb_size_by_mb;
3347
0
  const int sb_rows = (num_mi_rows + sb_size_by_mb - 1) / sb_size_by_mb;
3348
0
  uint64_t sum_sq_thresh = 10000;  // sum = sqrt(thresh / 64*64)) ~1.5
3349
0
  int num_low_var_high_sumdiff = 0;
3350
0
  int light_change = 0;
3351
  // Flag to check light change or not.
3352
0
  const int check_light_change = 0;
3353
  // TODO(marpan): There seems some difference along the bottom border when
3354
  // using the source_last_tl0 for last_source (used for temporal layers or
3355
  // when previous frame is dropped).
3356
  // Remove this border parameter when issue is resolved: difference is that
3357
  // non-zero sad exists along bottom border even though source is static.
3358
0
  const int border =
3359
0
      rc->prev_frame_is_dropped || cpi->svc.number_temporal_layers > 1;
3360
  // Store blkwise SAD for later use. Disable for spatial layers for now.
3361
0
  if (width == cm->render_width && height == cm->render_height &&
3362
0
      cpi->svc.number_spatial_layers == 1 && !is_one_pass_rt_lag_params(cpi)) {
3363
0
    if (cpi->src_sad_blk_64x64 == NULL) {
3364
0
      CHECK_MEM_ERROR(cm, cpi->src_sad_blk_64x64,
3365
0
                      (uint64_t *)aom_calloc(sb_cols * sb_rows,
3366
0
                                             sizeof(*cpi->src_sad_blk_64x64)));
3367
0
    }
3368
0
  }
3369
0
  const CommonModeInfoParams *const mi_params = &cpi->common.mi_params;
3370
0
  const int mi_cols = mi_params->mi_cols;
3371
0
  const int mi_rows = mi_params->mi_rows;
3372
0
  unsigned char *const active_map_4x4 = cpi->active_map.map;
3373
  // Avoid bottom and right border.
3374
0
  for (int sbi_row = 0; sbi_row < sb_rows - border; ++sbi_row) {
3375
0
    for (int sbi_col = 0; sbi_col < sb_cols; ++sbi_col) {
3376
0
      int block_is_active = 1;
3377
0
      if (cpi->active_map.enabled && rc->percent_blocks_inactive > 0) {
3378
        // Fix this to include skip feature via ROI.
3379
0
        block_is_active = set_block_is_active(active_map_4x4, mi_cols, mi_rows,
3380
0
                                              sbi_col, sbi_row);
3381
0
      }
3382
0
      if (block_is_active) {
3383
0
        tmp_sad = cpi->ppi->fn_ptr[bsize].sdf(src_y, src_ystride, last_src_y,
3384
0
                                              last_src_ystride);
3385
0
      } else {
3386
0
        tmp_sad = 0;
3387
0
      }
3388
0
      if (cpi->src_sad_blk_64x64 != NULL)
3389
0
        cpi->src_sad_blk_64x64[sbi_col + sbi_row * sb_cols] = tmp_sad;
3390
0
      if (check_light_change) {
3391
0
        unsigned int sse, variance;
3392
0
        variance = cpi->ppi->fn_ptr[bsize].vf(src_y, src_ystride, last_src_y,
3393
0
                                              last_src_ystride, &sse);
3394
        // Note: sse - variance = ((sum * sum) >> 12)
3395
        // Detect large lighting change.
3396
0
        if (variance < (sse >> 1) && (sse - variance) > sum_sq_thresh) {
3397
0
          num_low_var_high_sumdiff++;
3398
0
        }
3399
0
      }
3400
0
      avg_sad += tmp_sad;
3401
0
      num_samples++;
3402
0
      if (tmp_sad == 0) num_zero_temp_sad++;
3403
0
      if (tmp_sad > rc->max_block_source_sad)
3404
0
        rc->max_block_source_sad = tmp_sad;
3405
3406
0
      src_y += 64;
3407
0
      last_src_y += 64;
3408
0
    }
3409
0
    src_y += (src_ystride << 6) - (sb_cols << 6);
3410
0
    last_src_y += (last_src_ystride << 6) - (sb_cols << 6);
3411
0
  }
3412
0
  if (check_light_change && num_samples > 0 &&
3413
0
      num_low_var_high_sumdiff > (num_samples >> 1))
3414
0
    light_change = 1;
3415
0
  if (num_samples > 0) avg_sad = avg_sad / num_samples;
3416
  // Set high_source_sad flag if we detect very high increase in avg_sad
3417
  // between current and previous frame value(s). Use minimum threshold
3418
  // for cases where there is small change from content that is completely
3419
  // static.
3420
0
  const int thresh_zero_sad_samples =
3421
0
      avg_sad > 8 * min_thresh ? 3 * (num_samples >> 2) : num_samples >> 1;
3422
0
  if (!light_change &&
3423
0
      avg_sad >
3424
0
          AOMMAX(min_thresh, (unsigned int)(rc->avg_source_sad * thresh)) &&
3425
0
      rc->frames_since_key > 1 + cpi->svc.number_spatial_layers &&
3426
0
      num_zero_temp_sad < thresh_zero_sad_samples)
3427
0
    rc->high_source_sad = 1;
3428
0
  else
3429
0
    rc->high_source_sad = 0;
3430
0
  rc->avg_source_sad = (3 * rc->avg_source_sad + avg_sad) >> 2;
3431
0
  rc->frame_source_sad = avg_sad;
3432
0
  if (num_samples > 0)
3433
0
    rc->percent_blocks_with_motion =
3434
0
        ((num_samples - num_zero_temp_sad) * 100) / num_samples;
3435
0
  if (rc->frame_source_sad > 0) rc->static_since_last_scene_change = 0;
3436
0
  if (rc->high_source_sad) {
3437
0
    cpi->rc.frames_since_scene_change = 0;
3438
0
    rc->static_since_last_scene_change = 1;
3439
0
  }
3440
  // Update the high_motion_content_screen_rtc flag on TL0. Avoid the update
3441
  // if too many consecutive frame drops occurred.
3442
  // The threshold_high_motion is kept to a large value, to account for
3443
  // mis-detection for scroll for scaled input (where scroll motion can be
3444
  // subpel and not detected below). The threshold may be improved when better
3445
  // scroll detection (for subpel) is added.
3446
0
  const int scale =
3447
0
      (unscaled_src->y_width * unscaled_src->y_height > 1920 * 1080) ? 30 : 10;
3448
0
  const uint64_t thresh_high_motion = scale * 64 * 64;
3449
0
  if (cpi->svc.temporal_layer_id == 0 && rc->drop_count_consec < 3) {
3450
0
    cpi->rc.high_motion_content_screen_rtc = 0;
3451
0
    if (cpi->oxcf.speed >= 11 && !is_one_pass_rt_lag_params(cpi) &&
3452
0
        cpi->oxcf.tune_cfg.content == AOM_CONTENT_SCREEN &&
3453
0
        rc->num_col_blscroll_last_tl0 < 5 &&
3454
0
        rc->num_row_blscroll_last_tl0 < 5 &&
3455
0
        rc->percent_blocks_with_motion > 40 &&
3456
0
        rc->prev_avg_source_sad > thresh_high_motion &&
3457
0
        rc->avg_source_sad > thresh_high_motion &&
3458
0
        rc->frame_number_encoded - rc->last_frame_low_source_sad > 12 &&
3459
0
        rc->avg_frame_low_motion < 60 && unscaled_src->y_width >= 1280 &&
3460
0
        unscaled_src->y_height >= 720) {
3461
0
      cpi->rc.high_motion_content_screen_rtc = 1;
3462
      // Compute fast coarse/global motion for 128x128 superblock centered
3463
      // at middle of frame, and one to the upper left and one to lower right.
3464
      // to determine if motion is scroll. Only test 3 points (pts) for now.
3465
      // TODO(marpan): Only allow for 8 bit-depth for now.
3466
0
      if (cm->seq_params->bit_depth == 8) {
3467
0
        int sw_row = (cpi->rc.frame_source_sad > 20000) ? 512 : 192;
3468
0
        int sw_col = (cpi->rc.frame_source_sad > 20000) ? 512 : 160;
3469
0
        if (cm->width * cm->height >= 3840 * 2160 &&
3470
0
            cpi->svc.number_temporal_layers > 1) {
3471
0
          sw_row = sw_row << 1;
3472
0
          sw_col = sw_col << 1;
3473
0
        }
3474
0
        const int num_pts =
3475
0
            unscaled_src->y_width * unscaled_src->y_height >= 1920 * 1080 ? 3
3476
0
                                                                          : 1;
3477
0
        for (int pts = 0; pts < num_pts; pts++) {
3478
          // fac and shift are used to move the center block for the other
3479
          // two points (pts).
3480
0
          int fac = 1;
3481
0
          int shift = 1;
3482
0
          if (pts == 1) {
3483
0
            fac = 1;
3484
0
            shift = 2;
3485
0
          } else if (pts == 2) {
3486
0
            fac = 3;
3487
0
            shift = 2;
3488
0
          }
3489
0
          int pos_col = (fac * unscaled_src->y_width >> shift) - 64;
3490
0
          int pos_row = (fac * unscaled_src->y_height >> shift) - 64;
3491
0
          pos_col = AOMMAX(sw_col,
3492
0
                           AOMMIN(unscaled_src->y_width - sw_col - 1, pos_col));
3493
0
          pos_row = AOMMAX(
3494
0
              sw_row, AOMMIN(unscaled_src->y_height - sw_row - 1, pos_row));
3495
0
          if (pos_col >= 0 && pos_col < unscaled_src->y_width - 64 &&
3496
0
              pos_row >= 0 && pos_row < unscaled_src->y_height - 64) {
3497
0
            src_y = unscaled_src->y_buffer + pos_row * src_ystride + pos_col;
3498
0
            last_src_y = unscaled_last_src->y_buffer +
3499
0
                         pos_row * last_src_ystride + pos_col;
3500
0
            int best_intmv_col = 0;
3501
0
            int best_intmv_row = 0;
3502
0
            unsigned int y_sad = estimate_scroll_motion(
3503
0
                cpi, src_y, last_src_y, src_ystride, last_src_ystride,
3504
0
                BLOCK_128X128, pos_col, pos_row, &best_intmv_col,
3505
0
                &best_intmv_row, sw_col, sw_row);
3506
0
            unsigned int sad_thresh =
3507
0
                (abs(best_intmv_col) > 150 || abs(best_intmv_row) > 150) ? 300
3508
0
                                                                         : 150;
3509
0
            if (y_sad < sad_thresh &&
3510
0
                (abs(best_intmv_col) > 16 || abs(best_intmv_row) > 16)) {
3511
0
              cpi->rc.high_motion_content_screen_rtc = 0;
3512
0
              break;
3513
0
            }
3514
0
          }
3515
0
        }
3516
0
      }
3517
0
    }
3518
    // Pass the flag value to all layer frames.
3519
0
    if (cpi->svc.number_spatial_layers > 1 ||
3520
0
        cpi->svc.number_temporal_layers > 1) {
3521
0
      SVC *svc = &cpi->svc;
3522
0
      for (int sl = 0; sl < svc->number_spatial_layers; ++sl) {
3523
0
        for (int tl = 1; tl < svc->number_temporal_layers; ++tl) {
3524
0
          const int layer =
3525
0
              LAYER_IDS_TO_IDX(sl, tl, svc->number_temporal_layers);
3526
0
          LAYER_CONTEXT *lc = &svc->layer_context[layer];
3527
0
          RATE_CONTROL *lrc = &lc->rc;
3528
0
          lrc->high_motion_content_screen_rtc =
3529
0
              rc->high_motion_content_screen_rtc;
3530
0
        }
3531
0
      }
3532
0
    }
3533
0
  }
3534
  // Scene detection is only on base SLO, and using full/original resolution.
3535
  // Pass the state to the upper spatial layers.
3536
0
  if (cpi->svc.number_spatial_layers > 1) {
3537
0
    SVC *svc = &cpi->svc;
3538
0
    for (int sl = 0; sl < svc->number_spatial_layers; ++sl) {
3539
0
      int tl = svc->temporal_layer_id;
3540
0
      const int layer = LAYER_IDS_TO_IDX(sl, tl, svc->number_temporal_layers);
3541
0
      LAYER_CONTEXT *lc = &svc->layer_context[layer];
3542
0
      RATE_CONTROL *lrc = &lc->rc;
3543
0
      lrc->high_source_sad = rc->high_source_sad;
3544
0
      lrc->frame_source_sad = rc->frame_source_sad;
3545
0
      lrc->avg_source_sad = rc->avg_source_sad;
3546
0
      lrc->percent_blocks_with_motion = rc->percent_blocks_with_motion;
3547
0
      lrc->max_block_source_sad = rc->max_block_source_sad;
3548
0
    }
3549
0
  }
3550
0
}
3551
3552
// This is used as a reference when computing the source variance.
3553
static const uint8_t AV1_VAR_OFFS[MAX_SB_SIZE] = {
3554
  128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
3555
  128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
3556
  128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
3557
  128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
3558
  128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
3559
  128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
3560
  128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
3561
  128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
3562
  128, 128, 128, 128, 128, 128, 128, 128
3563
};
3564
3565
/*!\brief Compute spatial activity for frame,  1 pass real-time mode.
3566
 *
3567
 * Compute average spatial activity/variance for source frame over a
3568
 * subset of superblocks.
3569
 *
3570
 * \ingroup rate_control
3571
 * \param[in]       cpi          Top level encoder structure
3572
 * \param[in]       src_y        Input source buffer for y channel.
3573
 * \param[in]       src_ystride  Input source stride for y channel.
3574
 *
3575
 * \remark Nothing is returned. Instead the average spatial variance
3576
 * computed is stored in flag \c cpi->rc.frame_spatial_variance.
3577
 */
3578
static void rc_spatial_act_onepass_rt(AV1_COMP *cpi, uint8_t *src_y,
3579
0
                                      int src_ystride) {
3580
0
  AV1_COMMON *const cm = &cpi->common;
3581
0
  int num_mi_cols = cm->mi_params.mi_cols;
3582
0
  int num_mi_rows = cm->mi_params.mi_rows;
3583
0
  const BLOCK_SIZE bsize = BLOCK_64X64;
3584
  // Loop over sub-sample of frame, compute average over 64x64 blocks.
3585
0
  uint64_t avg_variance = 0;
3586
0
  int num_samples = 0;
3587
0
  int num_zero_var_blocks = 0;
3588
0
  cpi->rc.perc_spatial_flat_blocks = 0;
3589
0
  const int sb_size_by_mb = (cm->seq_params->sb_size == BLOCK_128X128)
3590
0
                                ? (cm->seq_params->mib_size >> 1)
3591
0
                                : cm->seq_params->mib_size;
3592
0
  const int sb_cols = (num_mi_cols + sb_size_by_mb - 1) / sb_size_by_mb;
3593
0
  const int sb_rows = (num_mi_rows + sb_size_by_mb - 1) / sb_size_by_mb;
3594
0
  for (int sbi_row = 0; sbi_row < sb_rows; ++sbi_row) {
3595
0
    for (int sbi_col = 0; sbi_col < sb_cols; ++sbi_col) {
3596
0
      unsigned int sse;
3597
0
      const unsigned int var =
3598
0
          cpi->ppi->fn_ptr[bsize].vf(src_y, src_ystride, AV1_VAR_OFFS, 0, &sse);
3599
0
      avg_variance += var;
3600
0
      num_samples++;
3601
0
      if (var == 0) num_zero_var_blocks++;
3602
0
      src_y += 64;
3603
0
    }
3604
0
    src_y += (src_ystride << 6) - (sb_cols << 6);
3605
0
  }
3606
0
  if (num_samples > 0) {
3607
0
    cpi->rc.perc_spatial_flat_blocks = 100 * num_zero_var_blocks / num_samples;
3608
0
    avg_variance = avg_variance / num_samples;
3609
0
  }
3610
0
  cpi->rc.frame_spatial_variance = avg_variance >> 12;
3611
0
}
3612
3613
/*!\brief Set the GF baseline interval for 1 pass real-time mode.
3614
 *
3615
 *
3616
 * \ingroup rate_control
3617
 * \param[in]       cpi          Top level encoder structure
3618
 * \param[in]       frame_type   frame type
3619
 *
3620
 * \return Return GF update flag, and update the \c cpi->rc with
3621
 * the next GF interval settings.
3622
 */
3623
static int set_gf_interval_update_onepass_rt(AV1_COMP *cpi,
3624
0
                                             FRAME_TYPE frame_type) {
3625
0
  RATE_CONTROL *const rc = &cpi->rc;
3626
0
  int gf_update = 0;
3627
0
  const int resize_pending = is_frame_resize_pending(cpi);
3628
  // GF update based on frames_till_gf_update_due, also
3629
  // force update on resize pending frame or for scene change.
3630
0
  if ((resize_pending || rc->high_source_sad ||
3631
0
       rc->frames_till_gf_update_due == 0) &&
3632
0
      cpi->svc.temporal_layer_id == 0 && cpi->svc.spatial_layer_id == 0) {
3633
0
    set_baseline_gf_interval(cpi, frame_type);
3634
0
    gf_update = 1;
3635
0
  }
3636
0
  return gf_update;
3637
0
}
3638
3639
static void resize_reset_rc(AV1_COMP *cpi, int resize_width, int resize_height,
3640
0
                            int prev_width, int prev_height) {
3641
0
  RATE_CONTROL *const rc = &cpi->rc;
3642
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
3643
0
  SVC *const svc = &cpi->svc;
3644
0
  int target_bits_per_frame;
3645
0
  int active_worst_quality;
3646
0
  int qindex;
3647
0
  double tot_scale_change = (double)(resize_width * resize_height) /
3648
0
                            (double)(prev_width * prev_height);
3649
  // Disable the skip mv search for svc on resize frame.
3650
0
  svc->skip_mvsearch_last = 0;
3651
0
  svc->skip_mvsearch_gf = 0;
3652
0
  svc->skip_mvsearch_altref = 0;
3653
  // Reset buffer level to optimal, update target size.
3654
0
  p_rc->buffer_level = p_rc->optimal_buffer_level;
3655
0
  p_rc->bits_off_target = p_rc->optimal_buffer_level;
3656
0
  rc->this_frame_target =
3657
0
      av1_calc_pframe_target_size_one_pass_cbr(cpi, INTER_FRAME);
3658
0
  target_bits_per_frame = rc->this_frame_target;
3659
0
  if (tot_scale_change > 4.0)
3660
0
    p_rc->avg_frame_qindex[INTER_FRAME] = rc->worst_quality;
3661
0
  else if (tot_scale_change > 1.0)
3662
0
    p_rc->avg_frame_qindex[INTER_FRAME] =
3663
0
        (p_rc->avg_frame_qindex[INTER_FRAME] + rc->worst_quality) >> 1;
3664
0
  active_worst_quality = calc_active_worst_quality_no_stats_cbr(cpi);
3665
0
  qindex = av1_rc_regulate_q(cpi, target_bits_per_frame, rc->best_quality,
3666
0
                             active_worst_quality, resize_width, resize_height);
3667
  // If resize is down, check if projected q index is close to worst_quality,
3668
  // and if so, reduce the rate correction factor (since likely can afford
3669
  // lower q for resized frame).
3670
0
  if (tot_scale_change < 1.0 && qindex > 90 * rc->worst_quality / 100)
3671
0
    p_rc->rate_correction_factors[INTER_NORMAL] *= 0.85;
3672
  // If resize is back up: check if projected q index is too much above the
3673
  // previous index, and if so, reduce the rate correction factor
3674
  // (since prefer to keep q for resized frame at least closet to previous q).
3675
  // Also check if projected qindex is close to previous qindex, if so
3676
  // increase correction factor (to push qindex higher and avoid overshoot).
3677
0
  if (tot_scale_change >= 1.0) {
3678
0
    if (tot_scale_change < 4.0 &&
3679
0
        qindex > 130 * p_rc->last_q[INTER_FRAME] / 100)
3680
0
      p_rc->rate_correction_factors[INTER_NORMAL] *= 0.8;
3681
0
    if (qindex <= 120 * p_rc->last_q[INTER_FRAME] / 100)
3682
0
      p_rc->rate_correction_factors[INTER_NORMAL] *= 1.5;
3683
0
  }
3684
0
  if (svc->number_temporal_layers > 1) {
3685
    // Apply the same rate control reset to all temporal layers.
3686
0
    for (int tl = 0; tl < svc->number_temporal_layers; tl++) {
3687
0
      LAYER_CONTEXT *lc = NULL;
3688
0
      lc = &svc->layer_context[svc->spatial_layer_id *
3689
0
                                   svc->number_temporal_layers +
3690
0
                               tl];
3691
0
      lc->rc.resize_state = rc->resize_state;
3692
0
      lc->p_rc.buffer_level = lc->p_rc.optimal_buffer_level;
3693
0
      lc->p_rc.bits_off_target = lc->p_rc.optimal_buffer_level;
3694
0
      lc->p_rc.rate_correction_factors[INTER_NORMAL] =
3695
0
          p_rc->rate_correction_factors[INTER_NORMAL];
3696
0
      lc->p_rc.avg_frame_qindex[INTER_FRAME] =
3697
0
          p_rc->avg_frame_qindex[INTER_FRAME];
3698
0
    }
3699
0
  }
3700
0
}
3701
3702
/*!\brief Check for resize based on Q, for 1 pass real-time mode.
3703
 *
3704
 * Check if we should resize, based on average QP and content/motion
3705
 * complexity from past x frames.
3706
 * Only allow for resize at most 1/2 scale down for now, Scaling factor
3707
 * for each step may be 3/4 or 1/2.
3708
 *
3709
 * \ingroup rate_control
3710
 * \param[in]       cpi            Top level encoder structure
3711
 * \param[in]       one_half_only  Only allow 1/2 scaling factor
3712
 *
3713
 * \remark Return resized width/height in \c cpi->resize_pending_params,
3714
 * and update some resize counters in \c rc.
3715
 */
3716
0
static void dynamic_resize_one_pass_cbr(AV1_COMP *cpi, int one_half_only) {
3717
0
  const AV1_COMMON *const cm = &cpi->common;
3718
0
  RATE_CONTROL *const rc = &cpi->rc;
3719
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
3720
0
  RESIZE_ACTION resize_action = NO_RESIZE;
3721
0
  const int avg_qp_thr1 = 70;
3722
0
  const int avg_qp_thr2 = 50;
3723
  // Don't allow for resized frame to go below 160x90, resize in steps of 3/4.
3724
0
  const int min_width = (160 * 4) / 3;
3725
0
  const int min_height = (90 * 4) / 3;
3726
0
  int down_size_on = 1;
3727
  // Don't resize on key frame; reset the counters on key frame.
3728
0
  if (cm->current_frame.frame_type == KEY_FRAME) {
3729
0
    rc->resize_avg_qp = 0;
3730
0
    rc->resize_count = 0;
3731
0
    rc->resize_buffer_underflow = 0;
3732
0
    return;
3733
0
  }
3734
  // No resizing down if frame size is below some limit.
3735
0
  if ((cm->width * cm->height) < min_width * min_height) down_size_on = 0;
3736
3737
  // Resize based on average buffer underflow and QP over some window.
3738
  // Ignore samples close to key frame and scene change since QP is usually high
3739
  // after key and scene change.
3740
  // Need to incorpoate content/motion from scene detection analysis.
3741
0
  if (rc->frames_since_key > cpi->framerate && !rc->high_source_sad) {
3742
0
    const int window = AOMMAX(60, (int)(3 * cpi->framerate));
3743
0
    rc->resize_avg_qp += p_rc->last_q[INTER_FRAME];
3744
0
    if (cpi->ppi->p_rc.buffer_level <
3745
0
        (int)(30 * p_rc->optimal_buffer_level / 100))
3746
0
      ++rc->resize_buffer_underflow;
3747
0
    ++rc->resize_count;
3748
    // Check for resize action every "window" frames.
3749
0
    if (rc->resize_count >= window) {
3750
0
      int avg_qp = rc->resize_avg_qp / rc->resize_count;
3751
      // Resize down if buffer level has underflowed sufficient amount in past
3752
      // window, and we are at original or 3/4 of original resolution.
3753
      // Resize back up if average QP is low, and we are currently in a resized
3754
      // down state, i.e. 1/2 or 3/4 of original resolution.
3755
      // Currently, use a flag to turn 3/4 resizing feature on/off.
3756
0
      if (rc->resize_buffer_underflow > (rc->resize_count >> 2) &&
3757
0
          down_size_on) {
3758
0
        if (rc->resize_state == THREE_QUARTER) {
3759
0
          resize_action = DOWN_ONEHALF;
3760
0
          rc->resize_state = ONE_HALF;
3761
0
        } else if (rc->resize_state == ORIG) {
3762
0
          resize_action = one_half_only ? DOWN_ONEHALF : DOWN_THREEFOUR;
3763
0
          rc->resize_state = one_half_only ? ONE_HALF : THREE_QUARTER;
3764
0
        }
3765
0
      } else if (rc->resize_state != ORIG &&
3766
0
                 avg_qp < avg_qp_thr1 * cpi->rc.worst_quality / 100) {
3767
0
        if (rc->resize_state == THREE_QUARTER ||
3768
0
            avg_qp < avg_qp_thr2 * cpi->rc.worst_quality / 100 ||
3769
0
            one_half_only) {
3770
0
          resize_action = UP_ORIG;
3771
0
          rc->resize_state = ORIG;
3772
0
        } else if (rc->resize_state == ONE_HALF) {
3773
0
          resize_action = UP_THREEFOUR;
3774
0
          rc->resize_state = THREE_QUARTER;
3775
0
        }
3776
0
      }
3777
      // Reset for next window measurement.
3778
0
      rc->resize_avg_qp = 0;
3779
0
      rc->resize_count = 0;
3780
0
      rc->resize_buffer_underflow = 0;
3781
0
    }
3782
0
  }
3783
  // If decision is to resize, reset some quantities, and check is we should
3784
  // reduce rate correction factor,
3785
0
  if (resize_action != NO_RESIZE) {
3786
0
    int resize_width = cpi->oxcf.frm_dim_cfg.width;
3787
0
    int resize_height = cpi->oxcf.frm_dim_cfg.height;
3788
0
    int resize_scale_num = 1;
3789
0
    int resize_scale_den = 1;
3790
0
    if (resize_action == DOWN_THREEFOUR || resize_action == UP_THREEFOUR) {
3791
0
      resize_scale_num = 3;
3792
0
      resize_scale_den = 4;
3793
0
    } else if (resize_action == DOWN_ONEHALF) {
3794
0
      resize_scale_num = 1;
3795
0
      resize_scale_den = 2;
3796
0
    }
3797
0
    resize_width = resize_width * resize_scale_num / resize_scale_den;
3798
0
    resize_height = resize_height * resize_scale_num / resize_scale_den;
3799
0
    resize_reset_rc(cpi, resize_width, resize_height, cm->width, cm->height);
3800
0
  }
3801
0
  return;
3802
0
}
3803
3804
0
static inline int set_key_frame(AV1_COMP *cpi, unsigned int frame_flags) {
3805
0
  RATE_CONTROL *const rc = &cpi->rc;
3806
0
  AV1_COMMON *const cm = &cpi->common;
3807
0
  SVC *const svc = &cpi->svc;
3808
3809
  // Very first frame has to be key frame.
3810
0
  if (cm->current_frame.frame_number == 0) return 1;
3811
  // Set key frame if forced by frame flags.
3812
0
  if (frame_flags & FRAMEFLAGS_KEY) return 1;
3813
0
  if (!cpi->ppi->use_svc) {
3814
    // Non-SVC
3815
0
    if (cpi->oxcf.kf_cfg.auto_key && rc->frames_to_key == 0) return 1;
3816
0
  } else {
3817
    // SVC
3818
0
    if (svc->spatial_layer_id == 0 &&
3819
0
        (cpi->oxcf.kf_cfg.auto_key &&
3820
0
         (cpi->oxcf.kf_cfg.key_freq_max == 0 ||
3821
0
          svc->current_superframe % cpi->oxcf.kf_cfg.key_freq_max == 0)))
3822
0
      return 1;
3823
0
  }
3824
3825
0
  return 0;
3826
0
}
3827
3828
// Set to true if this frame is a recovery frame, for 1 layer RPS,
3829
// and whether we should apply some boost (QP, adjust speed features, etc).
3830
// Recovery frame here means frame whose closest reference is x frames away,
3831
// where x = 4.
3832
// TODO(marpan): Consider adding on/off flag to SVC_REF_FRAME_CONFIG to
3833
// allow more control for applications.
3834
0
static bool set_flag_rps_bias_recovery_frame(const AV1_COMP *const cpi) {
3835
0
  if (cpi->ppi->rtc_ref.set_ref_frame_config &&
3836
0
      cpi->svc.number_temporal_layers == 1 &&
3837
0
      cpi->svc.number_spatial_layers == 1 &&
3838
0
      cpi->ppi->rtc_ref.reference_was_previous_frame) {
3839
0
    int min_dist = av1_svc_get_min_ref_dist(cpi);
3840
    // Only consider boost for this frame if its closest reference is further
3841
    // than or equal to x frames away, using x = 4 for now.
3842
0
    if (min_dist != INT_MAX && min_dist >= 4) return true;
3843
0
  }
3844
0
  return false;
3845
0
}
3846
3847
void av1_get_one_pass_rt_params(AV1_COMP *cpi, FRAME_TYPE *const frame_type,
3848
                                const EncodeFrameInput *frame_input,
3849
0
                                unsigned int frame_flags) {
3850
0
  RATE_CONTROL *const rc = &cpi->rc;
3851
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
3852
0
  AV1_COMMON *const cm = &cpi->common;
3853
0
  GF_GROUP *const gf_group = &cpi->ppi->gf_group;
3854
0
  SVC *const svc = &cpi->svc;
3855
0
  ResizePendingParams *const resize_pending_params =
3856
0
      &cpi->resize_pending_params;
3857
0
  int target;
3858
0
  const int layer =
3859
0
      LAYER_IDS_TO_IDX(svc->spatial_layer_id, svc->temporal_layer_id,
3860
0
                       svc->number_temporal_layers);
3861
0
  if (cpi->oxcf.rc_cfg.max_consec_drop_ms > 0) {
3862
0
    double framerate =
3863
0
        cpi->framerate > 1 ? round(cpi->framerate) : cpi->framerate;
3864
0
    rc->max_consec_drop = saturate_cast_double_to_int(
3865
0
        ceil(cpi->oxcf.rc_cfg.max_consec_drop_ms * framerate / 1000));
3866
0
  }
3867
0
  if (cpi->ppi->use_svc) {
3868
0
    av1_update_temporal_layer_framerate(cpi);
3869
0
    av1_restore_layer_context(cpi);
3870
0
  }
3871
0
  cpi->ppi->rtc_ref.bias_recovery_frame = set_flag_rps_bias_recovery_frame(cpi);
3872
  // Set frame type.
3873
0
  if (set_key_frame(cpi, frame_flags)) {
3874
0
    *frame_type = KEY_FRAME;
3875
0
    p_rc->this_key_frame_forced =
3876
0
        cm->current_frame.frame_number != 0 && rc->frames_to_key == 0;
3877
0
    rc->frames_to_key = cpi->oxcf.kf_cfg.key_freq_max;
3878
0
    p_rc->kf_boost = DEFAULT_KF_BOOST_RT;
3879
0
    gf_group->update_type[cpi->gf_frame_index] = KF_UPDATE;
3880
0
    gf_group->frame_type[cpi->gf_frame_index] = KEY_FRAME;
3881
0
    gf_group->refbuf_state[cpi->gf_frame_index] = REFBUF_RESET;
3882
0
    if (cpi->ppi->use_svc) {
3883
0
      if (cm->current_frame.frame_number > 0)
3884
0
        av1_svc_reset_temporal_layers(cpi, 1);
3885
0
      svc->layer_context[layer].is_key_frame = 1;
3886
0
    }
3887
0
    rc->frame_number_encoded = 0;
3888
0
    cpi->ppi->rtc_ref.non_reference_frame = 0;
3889
0
    rc->static_since_last_scene_change = 0;
3890
0
  } else {
3891
0
    *frame_type = INTER_FRAME;
3892
0
    gf_group->update_type[cpi->gf_frame_index] = LF_UPDATE;
3893
0
    gf_group->frame_type[cpi->gf_frame_index] = INTER_FRAME;
3894
0
    gf_group->refbuf_state[cpi->gf_frame_index] = REFBUF_UPDATE;
3895
0
    if (cpi->ppi->use_svc) {
3896
0
      LAYER_CONTEXT *lc = &svc->layer_context[layer];
3897
0
      lc->is_key_frame =
3898
0
          svc->spatial_layer_id == 0
3899
0
              ? 0
3900
0
              : svc->layer_context[svc->temporal_layer_id].is_key_frame;
3901
0
    }
3902
    // If the user is setting the reference structure with
3903
    // set_ref_frame_config and did not set any references, set the
3904
    // frame type to Intra-only.
3905
0
    if (cpi->ppi->rtc_ref.set_ref_frame_config) {
3906
0
      int no_references_set = 1;
3907
0
      for (int i = 0; i < INTER_REFS_PER_FRAME; i++) {
3908
0
        if (cpi->ppi->rtc_ref.reference[i]) {
3909
0
          no_references_set = 0;
3910
0
          break;
3911
0
        }
3912
0
      }
3913
3914
      // Set to intra_only_frame if no references are set.
3915
      // The stream can start decoding on INTRA_ONLY_FRAME so long as the
3916
      // layer with the intra_only_frame doesn't signal a reference to a slot
3917
      // that hasn't been set yet.
3918
0
      if (no_references_set) *frame_type = INTRA_ONLY_FRAME;
3919
0
    }
3920
0
  }
3921
0
  if (cpi->active_map.enabled && cpi->rc.percent_blocks_inactive == 100) {
3922
0
    rc->frame_source_sad = 0;
3923
0
    rc->avg_source_sad = (3 * rc->avg_source_sad + rc->frame_source_sad) >> 2;
3924
0
    rc->percent_blocks_with_motion = 0;
3925
0
    rc->high_source_sad = 0;
3926
0
  } else if (cpi->sf.rt_sf.check_scene_detection &&
3927
0
             svc->spatial_layer_id == 0) {
3928
0
    if (rc->prev_coded_width == cm->width &&
3929
0
        rc->prev_coded_height == cm->height) {
3930
0
      av1_rc_scene_detection_onepass_rt(cpi, frame_input);
3931
0
    } else {
3932
0
      aom_free(cpi->src_sad_blk_64x64);
3933
0
      cpi->src_sad_blk_64x64 = NULL;
3934
0
    }
3935
0
  }
3936
0
  if (cpi->sf.rt_sf.rc_compute_spatial_var_sc_kf &&
3937
0
      (*frame_type == KEY_FRAME || rc->high_source_sad) &&
3938
0
      svc->spatial_layer_id == 0 && !cm->seq_params->use_highbitdepth &&
3939
0
      cpi->oxcf.rc_cfg.max_intra_bitrate_pct > 0)
3940
0
    rc_spatial_act_onepass_rt(cpi, frame_input->source->y_buffer,
3941
0
                              frame_input->source->y_stride);
3942
  // Check for dynamic resize, for single spatial layer for now.
3943
  // For temporal layers only check on base temporal layer.
3944
0
  if (cpi->oxcf.resize_cfg.resize_mode == RESIZE_DYNAMIC) {
3945
0
    if (svc->number_spatial_layers == 1 && svc->temporal_layer_id == 0)
3946
0
      dynamic_resize_one_pass_cbr(cpi, /*one_half_only=*/1);
3947
0
    if (rc->resize_state == THREE_QUARTER) {
3948
0
      resize_pending_params->width = (3 + cpi->oxcf.frm_dim_cfg.width * 3) >> 2;
3949
0
      resize_pending_params->height =
3950
0
          (3 + cpi->oxcf.frm_dim_cfg.height * 3) >> 2;
3951
0
    } else if (rc->resize_state == ONE_HALF) {
3952
0
      resize_pending_params->width = (1 + cpi->oxcf.frm_dim_cfg.width) >> 1;
3953
0
      resize_pending_params->height = (1 + cpi->oxcf.frm_dim_cfg.height) >> 1;
3954
0
    } else {
3955
0
      resize_pending_params->width = cpi->oxcf.frm_dim_cfg.width;
3956
0
      resize_pending_params->height = cpi->oxcf.frm_dim_cfg.height;
3957
0
    }
3958
0
  } else if (is_frame_resize_pending(cpi)) {
3959
0
    resize_reset_rc(cpi, resize_pending_params->width,
3960
0
                    resize_pending_params->height, cm->width, cm->height);
3961
0
  }
3962
  // Set the GF interval and update flag.
3963
0
  if (!rc->rtc_external_ratectrl)
3964
0
    set_gf_interval_update_onepass_rt(cpi, *frame_type);
3965
  // Set target size.
3966
0
  if (cpi->oxcf.rc_cfg.mode == AOM_CBR) {
3967
0
    if (*frame_type == KEY_FRAME || *frame_type == INTRA_ONLY_FRAME) {
3968
0
      target = av1_calc_iframe_target_size_one_pass_cbr(cpi);
3969
0
    } else {
3970
0
      target = av1_calc_pframe_target_size_one_pass_cbr(
3971
0
          cpi, gf_group->update_type[cpi->gf_frame_index]);
3972
0
    }
3973
0
  } else {
3974
0
    if (*frame_type == KEY_FRAME || *frame_type == INTRA_ONLY_FRAME) {
3975
0
      target = av1_calc_iframe_target_size_one_pass_vbr(cpi);
3976
0
    } else {
3977
0
      target = av1_calc_pframe_target_size_one_pass_vbr(
3978
0
          cpi, gf_group->update_type[cpi->gf_frame_index]);
3979
0
    }
3980
0
  }
3981
0
  if (cpi->oxcf.rc_cfg.mode == AOM_Q)
3982
0
    rc->active_worst_quality = cpi->oxcf.rc_cfg.cq_level;
3983
3984
0
  av1_rc_set_frame_target(cpi, target, cm->width, cm->height);
3985
0
  rc->base_frame_target = target;
3986
0
  cm->current_frame.frame_type = *frame_type;
3987
  // For fixed mode SVC: if KSVC is enabled remove inter layer
3988
  // prediction on spatial enhancement layer frames for frames
3989
  // whose base is not KEY frame.
3990
0
  if (cpi->ppi->use_svc && !svc->use_flexible_mode && svc->ksvc_fixed_mode &&
3991
0
      svc->number_spatial_layers > 1 &&
3992
0
      !svc->layer_context[layer].is_key_frame) {
3993
0
    ExternalFlags *const ext_flags = &cpi->ext_flags;
3994
0
    ext_flags->ref_frame_flags ^= AOM_GOLD_FLAG;
3995
0
  }
3996
0
}
3997
3998
#define CHECK_INTER_LAYER_PRED(ref_frame)                         \
3999
0
  ((cpi->ref_frame_flags & av1_ref_frame_flag_list[ref_frame]) && \
4000
0
   (av1_check_ref_is_low_spatial_res_super_frame(cpi, ref_frame)))
4001
4002
0
int av1_encodedframe_overshoot_cbr(AV1_COMP *cpi, int *q) {
4003
0
  AV1_COMMON *const cm = &cpi->common;
4004
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
4005
0
  double rate_correction_factor =
4006
0
      cpi->ppi->p_rc.rate_correction_factors[INTER_NORMAL];
4007
0
  const int target_size = cpi->rc.avg_frame_bandwidth;
4008
0
  double new_correction_factor;
4009
0
  int target_bits_per_mb;
4010
0
  double q2;
4011
0
  int enumerator;
4012
0
  int inter_layer_pred_on = 0;
4013
0
  int is_screen_content = (cpi->oxcf.tune_cfg.content == AOM_CONTENT_SCREEN);
4014
0
  cpi->cyclic_refresh->counter_encode_maxq_scene_change = 0;
4015
0
  if (cpi->svc.spatial_layer_id > 0) {
4016
    // For spatial layers: check if inter-layer (spatial) prediction is used
4017
    // (check if any reference is being used that is the lower spatial layer),
4018
0
    inter_layer_pred_on = CHECK_INTER_LAYER_PRED(LAST_FRAME) ||
4019
0
                          CHECK_INTER_LAYER_PRED(GOLDEN_FRAME) ||
4020
0
                          CHECK_INTER_LAYER_PRED(ALTREF_FRAME);
4021
0
  }
4022
  // If inter-layer prediction is on: we expect to pull up the quality from
4023
  // the lower spatial layer, so we can use a lower q.
4024
0
  if (cpi->svc.spatial_layer_id > 0 && inter_layer_pred_on) {
4025
0
    *q = (cpi->rc.worst_quality + *q) >> 1;
4026
0
  } else {
4027
    // For easy scene changes used lower QP, otherwise set max-q.
4028
    // If rt_sf->compute_spatial_var_sc is enabled relax the max-q
4029
    // condition based on frame spatial variance.
4030
0
    if (cpi->sf.rt_sf.rc_compute_spatial_var_sc_kf) {
4031
0
      if (cpi->rc.frame_spatial_variance < 100) {
4032
0
        *q = (cpi->rc.worst_quality + *q) >> 1;
4033
0
      } else if (cpi->rc.frame_spatial_variance < 400 ||
4034
0
                 (cpi->rc.frame_source_sad < 80000 &&
4035
0
                  cpi->rc.frame_spatial_variance < 1000)) {
4036
0
        *q = (3 * cpi->rc.worst_quality + *q) >> 2;
4037
0
      } else {
4038
0
        *q = cpi->rc.worst_quality;
4039
0
      }
4040
0
    } else {
4041
      // Set a larger QP.
4042
0
      const uint64_t sad_thr = 64 * 64 * 32;
4043
0
      if (cm->width * cm->height >= 1280 * 720 &&
4044
0
          (p_rc->buffer_level > (p_rc->optimal_buffer_level) >> 1) &&
4045
0
          cpi->rc.avg_source_sad < sad_thr) {
4046
0
        *q = (*q + cpi->rc.worst_quality) >> 1;
4047
0
      } else {
4048
0
        *q = (3 * cpi->rc.worst_quality + *q) >> 2;
4049
0
      }
4050
      // If we arrive here for screen content: use the max-q set by the user.
4051
0
      if (is_screen_content) *q = cpi->rc.worst_quality;
4052
0
    }
4053
0
  }
4054
  // Adjust avg_frame_qindex, buffer_level, and rate correction factors, as
4055
  // these parameters will affect QP selection for subsequent frames. If they
4056
  // have settled down to a very different (low QP) state, then not adjusting
4057
  // them may cause next frame to select low QP and overshoot again.
4058
0
  p_rc->avg_frame_qindex[INTER_FRAME] = *q;
4059
0
  p_rc->buffer_level = p_rc->optimal_buffer_level;
4060
0
  p_rc->bits_off_target = p_rc->optimal_buffer_level;
4061
  // Reset rate under/over-shoot flags.
4062
0
  cpi->rc.rc_1_frame = 0;
4063
0
  cpi->rc.rc_2_frame = 0;
4064
  // Adjust rate correction factor.
4065
0
  target_bits_per_mb =
4066
0
      (int)(((uint64_t)target_size << BPER_MB_NORMBITS) / cm->mi_params.MBs);
4067
  // Reset rate correction factor: for now base it on target_bits_per_mb
4068
  // and qp (==max_QP). This comes from the inverse computation of
4069
  // av1_rc_bits_per_mb().
4070
0
  q2 = av1_convert_qindex_to_q(*q, cm->seq_params->bit_depth);
4071
0
  enumerator = get_bpmb_enumerator(INTER_NORMAL, is_screen_content);
4072
0
  new_correction_factor = (double)target_bits_per_mb * q2 / enumerator;
4073
0
  if (new_correction_factor > rate_correction_factor) {
4074
0
    rate_correction_factor =
4075
0
        (new_correction_factor + rate_correction_factor) / 2.0;
4076
0
    if (rate_correction_factor > MAX_BPB_FACTOR)
4077
0
      rate_correction_factor = MAX_BPB_FACTOR;
4078
0
    cpi->ppi->p_rc.rate_correction_factors[INTER_NORMAL] =
4079
0
        rate_correction_factor;
4080
0
  }
4081
  // For temporal layers: reset the rate control parameters across all
4082
  // temporal layers. Only do it for spatial enhancement layers when
4083
  // inter_layer_pred_on is not set (off).
4084
0
  if (cpi->svc.number_temporal_layers > 1 &&
4085
0
      (cpi->svc.spatial_layer_id == 0 || inter_layer_pred_on == 0)) {
4086
0
    SVC *svc = &cpi->svc;
4087
0
    for (int tl = 0; tl < svc->number_temporal_layers; ++tl) {
4088
0
      int sl = svc->spatial_layer_id;
4089
0
      const int layer = LAYER_IDS_TO_IDX(sl, tl, svc->number_temporal_layers);
4090
0
      LAYER_CONTEXT *lc = &svc->layer_context[layer];
4091
0
      RATE_CONTROL *lrc = &lc->rc;
4092
0
      PRIMARY_RATE_CONTROL *lp_rc = &lc->p_rc;
4093
0
      lp_rc->avg_frame_qindex[INTER_FRAME] = *q;
4094
0
      lp_rc->buffer_level = lp_rc->optimal_buffer_level;
4095
0
      lp_rc->bits_off_target = lp_rc->optimal_buffer_level;
4096
0
      lrc->rc_1_frame = 0;
4097
0
      lrc->rc_2_frame = 0;
4098
0
      lp_rc->rate_correction_factors[INTER_NORMAL] = rate_correction_factor;
4099
0
    }
4100
0
  }
4101
0
  return 1;
4102
0
}
4103
4104
0
int av1_postencode_drop_cbr(AV1_COMP *cpi, size_t *size) {
4105
0
  PRIMARY_RATE_CONTROL *const p_rc = &cpi->ppi->p_rc;
4106
0
  size_t frame_size = *size << 3;
4107
0
  const int64_t new_buffer_level =
4108
0
      p_rc->buffer_level + cpi->rc.avg_frame_bandwidth - (int64_t)frame_size;
4109
  // Drop if new buffer level (given the encoded frame size) goes below a
4110
  // threshold and encoded frame size is much larger than per-frame-bandwidth.
4111
  // If the frame is already labelled as scene change (high_source_sad = 1)
4112
  // or the QP is close to max, then no need to drop.
4113
0
  const int qp_thresh = 3 * (cpi->rc.worst_quality >> 2);
4114
0
  const int64_t buffer_thresh = p_rc->optimal_buffer_level >> 2;
4115
0
  if (!cpi->rc.high_source_sad && new_buffer_level < buffer_thresh &&
4116
0
      frame_size > 8 * (unsigned int)cpi->rc.avg_frame_bandwidth &&
4117
0
      cpi->common.quant_params.base_qindex < qp_thresh) {
4118
0
    *size = 0;
4119
0
    cpi->is_dropped_frame = true;
4120
0
    restore_all_coding_context(cpi);
4121
0
    av1_rc_postencode_update_drop_frame(cpi);
4122
    // Force max_q on next fame. Reset some RC parameters.
4123
0
    cpi->rc.force_max_q = 1;
4124
0
    p_rc->avg_frame_qindex[INTER_FRAME] = cpi->rc.worst_quality;
4125
0
    p_rc->buffer_level = p_rc->optimal_buffer_level;
4126
0
    p_rc->bits_off_target = p_rc->optimal_buffer_level;
4127
0
    cpi->rc.rc_1_frame = 0;
4128
0
    cpi->rc.rc_2_frame = 0;
4129
0
    if (cpi->svc.number_spatial_layers > 1 ||
4130
0
        cpi->svc.number_temporal_layers > 1) {
4131
0
      SVC *svc = &cpi->svc;
4132
      // Postencode drop is only checked on base spatial layer,
4133
      // for now if max-q is set on base we force it on all layers.
4134
0
      for (int sl = 0; sl < svc->number_spatial_layers; ++sl) {
4135
0
        for (int tl = 0; tl < svc->number_temporal_layers; ++tl) {
4136
0
          const int layer =
4137
0
              LAYER_IDS_TO_IDX(sl, tl, svc->number_temporal_layers);
4138
0
          LAYER_CONTEXT *lc = &svc->layer_context[layer];
4139
0
          RATE_CONTROL *lrc = &lc->rc;
4140
0
          PRIMARY_RATE_CONTROL *lp_rc = &lc->p_rc;
4141
          // Force max_q on next fame. Reset some RC parameters.
4142
0
          lrc->force_max_q = 1;
4143
0
          lp_rc->avg_frame_qindex[INTER_FRAME] = cpi->rc.worst_quality;
4144
0
          lp_rc->buffer_level = lp_rc->optimal_buffer_level;
4145
0
          lp_rc->bits_off_target = lp_rc->optimal_buffer_level;
4146
0
          lrc->rc_1_frame = 0;
4147
0
          lrc->rc_2_frame = 0;
4148
0
        }
4149
0
      }
4150
0
    }
4151
0
    return 1;
4152
0
  }
4153
0
  return 0;
4154
0
}