/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_segmentation.c | 58 vp9_set_segdata(seg, i, SEG_LVL_ALT_Q, 2 * (i - (MAX_SEGMENTS / 2))); in vp9_psnr_aq_mode_setup() 59 vp9_enable_segfeature(seg, i, SEG_LVL_ALT_Q); in vp9_psnr_aq_mode_setup() 85 vp9_set_segdata(seg, i, SEG_LVL_ALT_Q, target_qindex - base_qindex); in vp9_perceptual_aq_mode_setup() 86 vp9_enable_segfeature(seg, i, SEG_LVL_ALT_Q); in vp9_perceptual_aq_mode_setup() 89 vp9_set_segdata(seg, i, SEG_LVL_ALT_Q, 0); in vp9_perceptual_aq_mode_setup() 90 vp9_enable_segfeature(seg, i, SEG_LVL_ALT_Q); in vp9_perceptual_aq_mode_setup() 98 vp9_set_segdata(seg, i, SEG_LVL_ALT_Q, target_qindex - base_qindex); in vp9_perceptual_aq_mode_setup() 99 vp9_enable_segfeature(seg, i, SEG_LVL_ALT_Q); in vp9_perceptual_aq_mode_setup()
|
D | vp9_aq_360.c | 71 vp9_set_segdata(seg, i, SEG_LVL_ALT_Q, qindex_delta); in vp9_360aq_frame_setup() 72 vp9_enable_segfeature(seg, i, SEG_LVL_ALT_Q); in vp9_360aq_frame_setup()
|
D | vp9_aq_complexity.c | 78 vp9_disable_segfeature(seg, DEFAULT_AQ2_SEG, SEG_LVL_ALT_Q); in vp9_setup_in_frame_q_adj() 98 vp9_enable_segfeature(seg, segment, SEG_LVL_ALT_Q); in vp9_setup_in_frame_q_adj() 99 vp9_set_segdata(seg, segment, SEG_LVL_ALT_Q, qindex_delta); in vp9_setup_in_frame_q_adj()
|
D | vp9_aq_cyclicrefresh.c | 635 vp9_disable_segfeature(seg, CR_SEGMENT_ID_BASE, SEG_LVL_ALT_Q); in vp9_cyclic_refresh_setup() 637 vp9_enable_segfeature(seg, CR_SEGMENT_ID_BOOST1, SEG_LVL_ALT_Q); in vp9_cyclic_refresh_setup() 639 vp9_enable_segfeature(seg, CR_SEGMENT_ID_BOOST2, SEG_LVL_ALT_Q); in vp9_cyclic_refresh_setup() 650 vp9_set_segdata(seg, CR_SEGMENT_ID_BOOST1, SEG_LVL_ALT_Q, qindex_delta); in vp9_cyclic_refresh_setup() 658 vp9_set_segdata(seg, CR_SEGMENT_ID_BOOST2, SEG_LVL_ALT_Q, qindex_delta); in vp9_cyclic_refresh_setup()
|
D | vp9_aq_variance.c | 80 vp9_set_segdata(seg, i, SEG_LVL_ALT_Q, qindex_delta); in vp9_vaq_frame_setup() 81 vp9_enable_segfeature(seg, i, SEG_LVL_ALT_Q); in vp9_vaq_frame_setup()
|
D | vp9_encoder.c | 609 vp9_disable_segfeature(seg, i, SEG_LVL_ALT_Q); in apply_roi_map() 612 vp9_enable_segfeature(seg, i, SEG_LVL_ALT_Q); in apply_roi_map() 613 vp9_set_segdata(seg, i, SEG_LVL_ALT_Q, internal_delta_q[i]); in apply_roi_map() 1178 vp9_set_segdata(seg, 1, SEG_LVL_ALT_Q, qi_delta - 2); in configure_static_seg_features() 1181 vp9_enable_segfeature(seg, 1, SEG_LVL_ALT_Q); in configure_static_seg_features() 1200 vp9_set_segdata(seg, 1, SEG_LVL_ALT_Q, qi_delta + 2); in configure_static_seg_features() 1201 vp9_enable_segfeature(seg, 1, SEG_LVL_ALT_Q); in configure_static_seg_features()
|
D | vp9_encodeframe.c | 6124 qdelta_index = get_segdata(seg, segment_id, SEG_LVL_ALT_Q); in compute_frame_aq_offset()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_quant_common.c | 198 if (segfeature_active(seg, segment_id, SEG_LVL_ALT_Q)) { in vp9_get_qindex() 199 const int data = get_segdata(seg, segment_id, SEG_LVL_ALT_Q); in vp9_get_qindex()
|
D | vp9_seg_common.h | 30 SEG_LVL_ALT_Q = 0, // Use alternate Quantizer .... enumerator
|
/external/libaom/libaom/av1/encoder/ |
D | aq_complexity.c | 99 av1_disable_segfeature(seg, DEFAULT_AQ2_SEG, SEG_LVL_ALT_Q); in av1_setup_in_frame_q_adj() 119 av1_enable_segfeature(seg, segment, SEG_LVL_ALT_Q); in av1_setup_in_frame_q_adj() 120 av1_set_segdata(seg, segment, SEG_LVL_ALT_Q, qindex_delta); in av1_setup_in_frame_q_adj()
|
D | aq_cyclicrefresh.c | 458 av1_disable_segfeature(seg, CR_SEGMENT_ID_BASE, SEG_LVL_ALT_Q); in av1_cyclic_refresh_setup() 460 av1_enable_segfeature(seg, CR_SEGMENT_ID_BOOST1, SEG_LVL_ALT_Q); in av1_cyclic_refresh_setup() 462 av1_enable_segfeature(seg, CR_SEGMENT_ID_BOOST2, SEG_LVL_ALT_Q); in av1_cyclic_refresh_setup() 476 av1_set_segdata(seg, CR_SEGMENT_ID_BOOST1, SEG_LVL_ALT_Q, qindex_delta); in av1_cyclic_refresh_setup() 484 av1_set_segdata(seg, CR_SEGMENT_ID_BOOST2, SEG_LVL_ALT_Q, qindex_delta); in av1_cyclic_refresh_setup()
|
D | aq_variance.c | 92 av1_set_segdata(seg, i, SEG_LVL_ALT_Q, qindex_delta); in av1_vaq_frame_setup() 93 av1_enable_segfeature(seg, i, SEG_LVL_ALT_Q); in av1_vaq_frame_setup()
|
D | encoder.c | 953 av1_set_segdata(seg, 1, SEG_LVL_ALT_Q, qi_delta - 2); in configure_static_seg_features() 964 av1_enable_segfeature(seg, 1, SEG_LVL_ALT_Q); in configure_static_seg_features() 978 av1_set_segdata(seg, 1, SEG_LVL_ALT_Q, qi_delta + 2); in configure_static_seg_features() 979 av1_enable_segfeature(seg, 1, SEG_LVL_ALT_Q); in configure_static_seg_features()
|
/external/libaom/libaom/av1/common/ |
D | quant_common.c | 219 if (segfeature_active(seg, segment_id, SEG_LVL_ALT_Q)) { in av1_get_qindex() 220 const int data = get_segdata(seg, segment_id, SEG_LVL_ALT_Q); in av1_get_qindex()
|
D | seg_common.h | 28 SEG_LVL_ALT_Q, // Use alternate Quantizer .... enumerator
|