From d85c54d4e870e979062e275a1a58a3a44f64e601 Mon Sep 17 00:00:00 2001 From: James Zern Date: Fri, 11 Jun 2021 16:34:41 -0700 Subject: [PATCH] Update some comments for rc_target_bitrate this mirrors the change from libaom: 5b150b150 Update some comments for rc_target_bitrate Change-Id: Iaabee5924e0320609a29dc8ab71327923fb4c5d2 --- vp8/vp8_cx_iface.c | 2 +- vpx/vpx_encoder.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vp8/vp8_cx_iface.c b/vp8/vp8_cx_iface.c index 8d3044f6a..78631e797 100644 --- a/vp8/vp8_cx_iface.c +++ b/vp8/vp8_cx_iface.c @@ -1276,7 +1276,7 @@ static vpx_codec_enc_cfg_map_t vp8e_usage_cfg_map[] = { VPX_VBR, /* rc_end_usage */ { NULL, 0 }, /* rc_twopass_stats_in */ { NULL, 0 }, /* rc_firstpass_mb_stats_in */ - 256, /* rc_target_bandwidth */ + 256, /* rc_target_bitrate */ 4, /* rc_min_quantizer */ 63, /* rc_max_quantizer */ 100, /* rc_undershoot_pct */ diff --git a/vpx/vpx_encoder.h b/vpx/vpx_encoder.h index f8fdfc030..21254bb54 100644 --- a/vpx/vpx_encoder.h +++ b/vpx/vpx_encoder.h @@ -457,7 +457,7 @@ typedef struct vpx_codec_enc_cfg { /*!\brief Target data rate * - * Target bandwidth to use for this stream, in kilobits per second. + * Target bitrate to use for this stream, in kilobits per second. */ unsigned int rc_target_bitrate; -- 2.50.1