Home
last modified time | relevance | path

Searched refs:rate_factor (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aec/
Decho_cancellation.c226 aecpc->rate_factor = aecpc->splitSampFreq / 8000; in WebRtcAec_Init()
391 (sampMsNb * aecpc->rate_factor)); in WebRtcAec_Process()
622 nBlocks10ms = nrOfSamples / (FRAME_LEN * aecpc->rate_factor); in ProcessNormal()
661 WEBRTC_SPL_MIN((3 * aecpc->sum * aecpc->rate_factor * 8) / in ProcessNormal()
672 (aecpc->msInSndCardBuf * aecpc->rate_factor * 3) / 40, in ProcessNormal()
766 int target_delay = startup_size_ms * self->rate_factor * 8; in ProcessExtended()
771 int target_delay = startup_size_ms * self->rate_factor * 8 / 2; in ProcessExtended()
798 int nSampSndCard = aecpc->msInSndCardBuf * sampMsNb * aecpc->rate_factor; in EstBufDelayNormal()
809 current_delay += FRAME_LEN * aecpc->rate_factor; in EstBufDelayNormal()
851 int reported_delay = self->msInSndCardBuf * sampMsNb * self->rate_factor; in EstBufDelayExtended()
[all …]
Decho_cancellation_internal.h26 int rate_factor; member
/external/autotest/client/cros/
Dmemory_bandwidth_logger.py177 rate_factor = CACHE_LINE / (self._seconds_period * MEGABYTE)
195 * rate_factor for c in counters }
/external/libvpx/libvpx/vp9/encoder/
Dvp9_aq_cyclicrefresh.c78 static int compute_deltaq(const VP9_COMP *cpi, int q, double rate_factor) { in compute_deltaq() argument
82 rate_factor, cpi->common.bit_depth); in compute_deltaq()
/external/libopus/celt/
Dcelt_encoder.c1284 opus_val16 rate_factor = Q15ONE; in compute_vbr() local
1288 rate_factor = MAX16(0,(bitrate-32000)); in compute_vbr()
1290 rate_factor = MAX16(0,(1.f/32768)*(bitrate-32000)); in compute_vbr()
1294 rate_factor = MIN16(rate_factor, QCONST16(0.67f, 15)); in compute_vbr()
1295 target = base_target + (opus_int32)MULT16_32_Q15(rate_factor, target-base_target); in compute_vbr()