Home
last modified time | relevance | path

Searched refs:decimation_factor (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/modules/audio_coding/neteq/
Dmerge.cc266 int decimation_factor = fs_hz_ / 4000; in Downsample() local
286 num_coefficients, decimation_factor, kCompensateDelay); in Downsample()
298 size_t downsamp_temp_len = temp_len / decimation_factor; in Downsample()
303 decimation_factor, kCompensateDelay); in Downsample()
311 decimation_factor, kCompensateDelay); in Downsample()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.h133 int decimation_factor; member
Dvp9_ratectrl.c538 (rc->decimation_factor > 0)) { in vp9_test_drop()
539 --rc->decimation_factor; in vp9_test_drop()
541 rc->decimation_factor == 0) { in vp9_test_drop()
542 rc->decimation_factor = 1; in vp9_test_drop()
544 if (rc->decimation_factor > 0) { in vp9_test_drop()
549 rc->decimation_count = rc->decimation_factor; in vp9_test_drop()
Dvp9_svc_layercontext.c121 lrc->decimation_factor = 0; in vp9_init_layer_context()
/external/libaom/libaom/av1/encoder/
Dratectrl.h143 int decimation_factor; member
Dratectrl.c355 if ((rc->buffer_level > drop_mark) && (rc->decimation_factor > 0)) { in av1_rc_drop_frame()
356 --rc->decimation_factor; in av1_rc_drop_frame()
357 } else if (rc->buffer_level <= drop_mark && rc->decimation_factor == 0) { in av1_rc_drop_frame()
358 rc->decimation_factor = 1; in av1_rc_drop_frame()
360 if (rc->decimation_factor > 0) { in av1_rc_drop_frame()
365 rc->decimation_count = rc->decimation_factor; in av1_rc_drop_frame()
Dsvc_layercontext.c45 lrc->decimation_factor = 0; in av1_init_layer_context()
/external/libvpx/libvpx/vp8/encoder/
Donyx_if.c3455 if ((cpi->buffer_level > drop_mark) && (cpi->decimation_factor > 0)) { in encode_frame_to_data_rate()
3456 cpi->decimation_factor--; in encode_frame_to_data_rate()
3459 if (cpi->buffer_level > drop_mark75 && cpi->decimation_factor > 0) { in encode_frame_to_data_rate()
3460 cpi->decimation_factor = 1; in encode_frame_to_data_rate()
3463 (cpi->decimation_factor == 2 || cpi->decimation_factor == 3)) { in encode_frame_to_data_rate()
3464 cpi->decimation_factor = 3; in encode_frame_to_data_rate()
3466 (cpi->decimation_factor == 1 || cpi->decimation_factor == 2)) { in encode_frame_to_data_rate()
3467 cpi->decimation_factor = 2; in encode_frame_to_data_rate()
3469 (cpi->decimation_factor == 0 || cpi->decimation_factor == 1)) { in encode_frame_to_data_rate()
3470 cpi->decimation_factor = 1; in encode_frame_to_data_rate()
[all …]
Donyx_int.h448 int decimation_factor; member
Dratectrl.c858 cpi->decimation_factor, cpi->common.horiz_scale, in calc_pframe_target_size()