Coverage Report

Created: 2026-06-16 07:20

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