Home
last modified time | relevance | path

Searched refs:ExceedAgo (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dbandwidth_estimator.c874 State->ExceedAgo -= /*BURST_INTERVAL*/ burstInterval / (BURST_LEN - 1); in WebRtcIsac_GetMinBytes()
875 if (State->ExceedAgo < 0) in WebRtcIsac_GetMinBytes()
876 State->ExceedAgo = 0; in WebRtcIsac_GetMinBytes()
880 State->ExceedAgo += (FrameSamples * 1000) / FS; /* ms */ in WebRtcIsac_GetMinBytes()
887 State->ExceedAgo += (FrameSamples * 1000) / FS; /* ms */ in WebRtcIsac_GetMinBytes()
891 if ((State->ExceedAgo > burstInterval) && in WebRtcIsac_GetMinBytes()
946 State->ExceedAgo = 0; /* ms */ in WebRtcIsac_InitRateModel()
Dstructs.h237 int ExceedAgo; member
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c913 State->ExceedAgo -= BURST_INTERVAL / (BURST_LEN - 1); in WebRtcIsacfix_GetMinBytes()
914 if (State->ExceedAgo < 0) { in WebRtcIsacfix_GetMinBytes()
915 State->ExceedAgo = 0; in WebRtcIsacfix_GetMinBytes()
918 State->ExceedAgo += FrameSamples / SAMPLES_PER_MSEC; /* ms */ in WebRtcIsacfix_GetMinBytes()
923 State->ExceedAgo += FrameSamples / SAMPLES_PER_MSEC; /* ms */ in WebRtcIsacfix_GetMinBytes()
927 if ((State->ExceedAgo > BURST_INTERVAL) && (State->BurstCounter == 0)) { in WebRtcIsacfix_GetMinBytes()
978 State->ExceedAgo = 0; /* ms */ in WebRtcIsacfix_InitRateModel()
Dstructs.h258 int16_t ExceedAgo; member