Home
last modified time | relevance | path

Searched refs:decimation_factor (Results 1 – 7 of 7) 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/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.h123 int decimation_factor; member
Dvp9_ratectrl.c386 (rc->decimation_factor > 0)) { in vp9_rc_drop_frame()
387 --rc->decimation_factor; in vp9_rc_drop_frame()
389 rc->decimation_factor == 0) { in vp9_rc_drop_frame()
390 rc->decimation_factor = 1; in vp9_rc_drop_frame()
392 if (rc->decimation_factor > 0) { in vp9_rc_drop_frame()
397 rc->decimation_count = rc->decimation_factor; in vp9_rc_drop_frame()
Dvp9_svc_layercontext.c72 lrc->decimation_factor = 0; in vp9_init_layer_context()
/external/libvpx/libvpx/vp8/encoder/
Donyx_if.c3828 if ((cpi->buffer_level > drop_mark) && (cpi->decimation_factor > 0)) in encode_frame_to_data_rate()
3829 cpi->decimation_factor --; in encode_frame_to_data_rate()
3831 if (cpi->buffer_level > drop_mark75 && cpi->decimation_factor > 0) in encode_frame_to_data_rate()
3832 cpi->decimation_factor = 1; in encode_frame_to_data_rate()
3834 …else if (cpi->buffer_level < drop_mark25 && (cpi->decimation_factor == 2 || cpi->decimation_factor in encode_frame_to_data_rate()
3836 cpi->decimation_factor = 3; in encode_frame_to_data_rate()
3838 …else if (cpi->buffer_level < drop_mark50 && (cpi->decimation_factor == 1 || cpi->decimation_factor in encode_frame_to_data_rate()
3840 cpi->decimation_factor = 2; in encode_frame_to_data_rate()
3842 …else if (cpi->buffer_level < drop_mark75 && (cpi->decimation_factor == 0 || cpi->decimation_factor in encode_frame_to_data_rate()
3844 cpi->decimation_factor = 1; in encode_frame_to_data_rate()
[all …]
Donyx_int.h463 int decimation_factor; member
Dratectrl.c948 cpi->decimation_factor, cpi->common.horiz_scale, in calc_pframe_target_size()