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.cc268 int decimation_factor = fs_hz_ / 4000; in Downsample() local
288 num_coefficients, decimation_factor, kCompensateDelay); in Downsample()
300 size_t downsamp_temp_len = temp_len / decimation_factor; in Downsample()
305 decimation_factor, kCompensateDelay); in Downsample()
313 decimation_factor, kCompensateDelay); in Downsample()
/external/libvpx/vp9/encoder/
Dvp9_ratectrl.h136 int decimation_factor; member
Dvp9_ratectrl.c557 (rc->decimation_factor > 0)) { in vp9_test_drop()
558 --rc->decimation_factor; in vp9_test_drop()
560 rc->decimation_factor == 0) { in vp9_test_drop()
561 rc->decimation_factor = 1; in vp9_test_drop()
563 if (rc->decimation_factor > 0) { in vp9_test_drop()
568 rc->decimation_count = rc->decimation_factor; in vp9_test_drop()
Dvp9_svc_layercontext.c122 lrc->decimation_factor = 0; in vp9_init_layer_context()
/external/libvpx/vp8/encoder/
Donyx_if.c3214 if (cpi->buffer_level > drop_mark && cpi->decimation_factor > 0) { in vp8_check_drop_buffer()
3215 cpi->decimation_factor--; in vp8_check_drop_buffer()
3218 if (cpi->buffer_level > drop_mark75 && cpi->decimation_factor > 0) { in vp8_check_drop_buffer()
3219 cpi->decimation_factor = 1; in vp8_check_drop_buffer()
3222 (cpi->decimation_factor == 2 || cpi->decimation_factor == 3)) { in vp8_check_drop_buffer()
3223 cpi->decimation_factor = 3; in vp8_check_drop_buffer()
3225 (cpi->decimation_factor == 1 || cpi->decimation_factor == 2)) { in vp8_check_drop_buffer()
3226 cpi->decimation_factor = 2; in vp8_check_drop_buffer()
3228 (cpi->decimation_factor == 0 || cpi->decimation_factor == 1)) { in vp8_check_drop_buffer()
3229 cpi->decimation_factor = 1; in vp8_check_drop_buffer()
[all …]
Donyx_int.h451 int decimation_factor; member
Dratectrl.c873 cpi->decimation_factor, cpi->common.horiz_scale, in calc_pframe_target_size()
/external/libaom/av1/encoder/
Dratectrl.h212 int decimation_factor; member
Dratectrl.c573 if (!buffer_below_thresh && rc->decimation_factor > 0) { in av1_rc_drop_frame()
574 --rc->decimation_factor; in av1_rc_drop_frame()
575 } else if (buffer_below_thresh && rc->decimation_factor == 0) { in av1_rc_drop_frame()
576 rc->decimation_factor = 1; in av1_rc_drop_frame()
578 if (rc->decimation_factor > 0) { in av1_rc_drop_frame()
584 rc->decimation_count = rc->decimation_factor; in av1_rc_drop_frame()
Dsvc_layercontext.c52 lrc->decimation_factor = 0; in av1_init_layer_context()