Searched refs:dc_q (Results 1 – 3 of 3) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | partition_strategy.c | 106 const int dc_q = in av1_intra_mode_cnn_partition() local 108 x->log_q = logf(1.0f + (float)(dc_q * dc_q) / 256.0f); in av1_intra_mode_cnn_partition() 481 const int dc_q = av1_dc_quant_QTX(x->qindex, 0, xd->bd) >> (xd->bd - 8); in simple_motion_search_prune_part_features() local 482 features[f_idx++] = logf(1.0f + (float)(dc_q * dc_q) / 256.0f); in simple_motion_search_prune_part_features() 632 const int dc_q = av1_dc_quant_QTX(x->qindex, 0, xd->bd) >> (xd->bd - 8); in av1_get_max_min_partition_features() local 634 const float log_q_sq = logf(1.0f + (float)(dc_q * dc_q) / 256.0f); in av1_get_max_min_partition_features() 860 const int dc_q = av1_dc_quant_QTX(x->qindex, 0, xd->bd) >> (xd->bd - 8); in av1_ml_early_term_after_split() local 867 features[f_idx++] = logf(1.0f + (float)dc_q / 4.0f); in av1_ml_early_term_after_split() 1275 const int dc_q = (int)x->plane[0].dequant_QTX[0]; in av1_ml_predict_breakout() local 1276 features[feature_index++] = (float)(dc_q * dc_q) / 256.0f; in av1_ml_predict_breakout()
|
D | tx_search.c | 399 const int16_t dc_q = av1_dc_quant_QTX(x->qindex, 0, xd->bd); in predict_skip_flag() local 406 const int16_t normalized_dc_q = dc_q >> 3; in predict_skip_flag() 436 const uint32_t dc_thresh = max_qcoef_thresh * dc_q; in predict_skip_flag()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encodeframe.c | 3422 const int dc_q = in ml_prune_rect_partition() local 3425 const int dc_q = vp9_dc_quant(cm->base_qindex, 0, cm->bit_depth); in ml_prune_rect_partition() local 3431 features[feature_index++] = logf((float)dc_q + 1.0f); in ml_prune_rect_partition() 3591 const int dc_q = in ml_predict_var_rd_paritioning() local 3594 const int dc_q = vp9_dc_quant(cm->base_qindex, 0, cm->bit_depth); in ml_predict_var_rd_paritioning() local 3600 features[feature_idx++] = logf((float)dc_q + 1.0f); in ml_predict_var_rd_paritioning() 4775 const int dc_q = vp9_dc_quant(cm->base_qindex, 0, cm->bit_depth); in ml_predict_var_paritioning() local 4779 features[feature_idx++] = logf((float)(dc_q * dc_q) / 256.0f + 1.0f); in ml_predict_var_paritioning()
|