Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
Dbandwidth_estimator.c863 State->ExceedAgo -= /*BURST_INTERVAL*/ burstInterval / (BURST_LEN - 1); in WebRtcIsac_GetMinBytes()
864 if (State->ExceedAgo < 0) in WebRtcIsac_GetMinBytes()
865 State->ExceedAgo = 0; in WebRtcIsac_GetMinBytes()
869 State->ExceedAgo += (FrameSamples * 1000) / FS; /* ms */ in WebRtcIsac_GetMinBytes()
876 State->ExceedAgo += (FrameSamples * 1000) / FS; /* ms */ in WebRtcIsac_GetMinBytes()
880 if ((State->ExceedAgo > burstInterval) && in WebRtcIsac_GetMinBytes()
935 State->ExceedAgo = 0; /* ms */ in WebRtcIsac_InitRateModel()
Dstructs.h235 int ExceedAgo; member
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c900 State->ExceedAgo -= WEBRTC_SPL_DIV(BURST_INTERVAL, BURST_LEN - 1); in WebRtcIsacfix_GetMinBytes()
901 if (State->ExceedAgo < 0) { in WebRtcIsacfix_GetMinBytes()
902 State->ExceedAgo = 0; in WebRtcIsacfix_GetMinBytes()
905 State->ExceedAgo += (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W16(FrameSamples, 4); /* ms */ in WebRtcIsacfix_GetMinBytes()
910 State->ExceedAgo += (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W16(FrameSamples, 4); /* ms */ in WebRtcIsacfix_GetMinBytes()
914 if ((State->ExceedAgo > BURST_INTERVAL) && (State->BurstCounter == 0)) { in WebRtcIsacfix_GetMinBytes()
966 State->ExceedAgo = 0; /* ms */ in WebRtcIsacfix_InitRateModel()
Dstructs.h258 WebRtc_Word16 ExceedAgo; member