Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_coding/neteq/
Dmerge.cc267 int decimation_factor = fs_hz_ / 4000; in Downsample() local
288 decimation_factor, kCompensateDelay); in Downsample()
294 size_t downsamp_temp_len = temp_len / decimation_factor; in Downsample()
298 decimation_factor, kCompensateDelay); in Downsample()
305 num_coefficients, decimation_factor, in Downsample()
/external/libaom/libaom/av1/encoder/
Dratectrl.h111 int decimation_factor; member
Dratectrl.c329 if ((rc->buffer_level > drop_mark) && (rc->decimation_factor > 0)) { in av1_rc_drop_frame()
330 --rc->decimation_factor; in av1_rc_drop_frame()
331 } else if (rc->buffer_level <= drop_mark && rc->decimation_factor == 0) { in av1_rc_drop_frame()
332 rc->decimation_factor = 1; in av1_rc_drop_frame()
334 if (rc->decimation_factor > 0) { in av1_rc_drop_frame()
339 rc->decimation_count = rc->decimation_factor; in av1_rc_drop_frame()
/external/libvpx/libvpx/vp8/encoder/
Donyx_if.c3451 if ((cpi->buffer_level > drop_mark) && (cpi->decimation_factor > 0)) { in encode_frame_to_data_rate()
3452 cpi->decimation_factor--; in encode_frame_to_data_rate()
3455 if (cpi->buffer_level > drop_mark75 && cpi->decimation_factor > 0) { in encode_frame_to_data_rate()
3456 cpi->decimation_factor = 1; in encode_frame_to_data_rate()
3459 (cpi->decimation_factor == 2 || cpi->decimation_factor == 3)) { in encode_frame_to_data_rate()
3460 cpi->decimation_factor = 3; in encode_frame_to_data_rate()
3462 (cpi->decimation_factor == 1 || cpi->decimation_factor == 2)) { in encode_frame_to_data_rate()
3463 cpi->decimation_factor = 2; in encode_frame_to_data_rate()
3465 (cpi->decimation_factor == 0 || cpi->decimation_factor == 1)) { in encode_frame_to_data_rate()
3466 cpi->decimation_factor = 1; in encode_frame_to_data_rate()
[all …]
Donyx_int.h444 int decimation_factor; member
Dratectrl.c854 cpi->decimation_factor, cpi->common.horiz_scale, in calc_pframe_target_size()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.h133 int decimation_factor; member
Dvp9_ratectrl.c532 (rc->decimation_factor > 0)) { in drop_frame()
533 --rc->decimation_factor; in drop_frame()
535 rc->decimation_factor == 0) { in drop_frame()
536 rc->decimation_factor = 1; in drop_frame()
538 if (rc->decimation_factor > 0) { in drop_frame()
543 rc->decimation_count = rc->decimation_factor; in drop_frame()
Dvp9_svc_layercontext.c119 lrc->decimation_factor = 0; in vp9_init_layer_context()