Home
last modified time | relevance | path

Searched refs:congdetect (Results 1 – 3 of 3) sorted by relevance

/dports/net/ortp/ortp-1.0.2-0/src/
H A Drtpparse.c293 if (session->congestion_detector_enabled && session->rtp.congdetect){ in rtp_session_rtp_parse()
294 if (ortp_congestion_detector_record(session->rtp.congdetect,rtp->timestamp,local_str_ts)) { in rtp_session_rtp_parse()
297 ed->info.congestion_detected = session->rtp.congdetect->state == CongestionStateDetected; in rtp_session_rtp_parse()
H A Drtpsession.c321 if (!session->rtp.congdetect){ in rtp_session_enable_congestion_detection()
322 session->rtp.congdetect = ortp_congestion_detector_new(session); in rtp_session_enable_congestion_detection()
324 …f (!session->congestion_detector_enabled) ortp_congestion_detector_reset(session->rtp.congdetect); in rtp_session_enable_congestion_detection()
1593 if (session->rtp.congdetect){ in rtp_session_uninit()
1594 ortp_congestion_detector_destroy(session->rtp.congdetect); in rtp_session_uninit()
1648 if (session->rtp.congdetect) ortp_congestion_detector_reset(session->rtp.congdetect); in rtp_session_resync()
/dports/net/ortp/ortp-1.0.2-0/include/ortp/
H A Drtpsession.h354 struct _OrtpCongestionDetector *congdetect; member