Searched refs:bottle_neck (Results 1 - 4 of 4) sorted by relevance

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dbandwidth_estimator.h119 /* Returns the new framelength value (input argument: bottle_neck) */
120 WebRtc_Word16 WebRtcIsacfix_GetNewFrameLength(WebRtc_Word16 bottle_neck, WebRtc_Word16 current_framelength);
122 /* Returns the new SNR value (input argument: bottle_neck) */
124 WebRtc_Word16 WebRtcIsacfix_GetSnr(WebRtc_Word16 bottle_neck, WebRtc_Word16 framesamples);
H A Dbandwidth_estimator.c899 /* bottle_neck exceded twice in a row, decrease ExceedAgo */
976 WebRtc_Word16 WebRtcIsacfix_GetNewFrameLength(WebRtc_Word16 bottle_neck, WebRtc_Word16 current_framesamples) argument
985 if (bottle_neck < Thld_30_60) {
990 if (bottle_neck >= Thld_60_30) {
1001 WebRtc_Word16 WebRtcIsacfix_GetSnr(WebRtc_Word16 bottle_neck, WebRtc_Word16 framesamples) argument
1009 /*s2nr = -1*(a_30 << 10) + ((b_30 * bottle_neck) >> 10);*/
1010 s2nr = -22500 + (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(500, bottle_neck, 10); //* 0.001; //+ c_30 * bottle_neck * bottle_neck * 0.000001;
1013 /*s2nr = -1*(a_60 << 10) + ((b_60 * bottle_neck) >> 1
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dbandwidth_estimator.h157 /* Returns the new framelength value (input argument: bottle_neck) */
159 double bottle_neck,
162 /* Returns the new SNR value (input argument: bottle_neck) */
164 double bottle_neck,
H A Dbandwidth_estimator.c862 /* bottle_neck exceded twice in a row, decrease ExceedAgo */
942 double bottle_neck,
963 if (bottle_neck < Thld_20_30)
967 if (bottle_neck < Thld_30_60)
969 else if (bottle_neck > Thld_30_20)
973 if (bottle_neck >= Thld_60_30)
982 double bottle_neck,
1003 s2nr = a_20 + b_20 * bottle_neck * 0.001 + c_20 * bottle_neck *
1004 bottle_neck * 0.00000
941 WebRtcIsac_GetNewFrameLength( double bottle_neck, int current_framesamples) argument
981 WebRtcIsac_GetSnr( double bottle_neck, int framesamples) argument
[all...]

Completed in 123 milliseconds