summaryrefslogtreecommitdiff
path: root/vp10/encoder/aq_complexity.c
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-08-13 09:36:53 -0700
committerYaowu Xu <yaowu@google.com>2015-08-13 09:58:26 -0700
commitfc7cbd1f606c7746d9444d18e487cac27ee98212 (patch)
treee3e1875d8c4b6c9587486e16486142a8a8dcfe4b /vp10/encoder/aq_complexity.c
parent2dcefd9c7fdc08f28f8276f2a41df453c1f0a020 (diff)
downloadlibvpx-fc7cbd1f606c7746d9444d18e487cac27ee98212.tar
libvpx-fc7cbd1f606c7746d9444d18e487cac27ee98212.tar.gz
libvpx-fc7cbd1f606c7746d9444d18e487cac27ee98212.tar.bz2
libvpx-fc7cbd1f606c7746d9444d18e487cac27ee98212.zip
VP9_COMMON -> VP10->COMMON
Change-Id: I651b7bee90f33581368853da81f9622805ccc0ea
Diffstat (limited to 'vp10/encoder/aq_complexity.c')
-rw-r--r--vp10/encoder/aq_complexity.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp10/encoder/aq_complexity.c b/vp10/encoder/aq_complexity.c
index 3887616fd..624aae4e5 100644
--- a/vp10/encoder/aq_complexity.c
+++ b/vp10/encoder/aq_complexity.c
@@ -44,7 +44,7 @@ static int get_aq_c_strength(int q_index, vpx_bit_depth_t bit_depth) {
}
void vp10_setup_in_frame_q_adj(VP9_COMP *cpi) {
- VP9_COMMON *const cm = &cpi->common;
+ VP10_COMMON *const cm = &cpi->common;
struct segmentation *const seg = &cm->seg;
// Make SURE use of floating point in this function is safe.
@@ -112,7 +112,7 @@ void vp10_setup_in_frame_q_adj(VP9_COMP *cpi) {
// bits for the block vs a target average and its spatial complexity.
void vp10_caq_select_segment(VP9_COMP *cpi, MACROBLOCK *mb, BLOCK_SIZE bs,
int mi_row, int mi_col, int projected_rate) {
- VP9_COMMON *const cm = &cpi->common;
+ VP10_COMMON *const cm = &cpi->common;
const int mi_offset = mi_row * cm->mi_cols + mi_col;
const int bw = num_8x8_blocks_wide_lookup[BLOCK_64X64];