summaryrefslogtreecommitdiff
path: root/pjmedia
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2008-06-16 08:27:48 +0000
committerNanang Izzuddin <nanang@teluu.com>2008-06-16 08:27:48 +0000
commitc6958062522190e9ee210d9184c52bc228155c2f (patch)
tree6f826352b28903e0c0dcf9e6407eebe2d82cbbdc /pjmedia
parent52147c5315e8922dd74eccc96aef9814c507a5ce (diff)
Cleaned up unused field avg_jitter from rtcp session
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2026 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia')
-rw-r--r--pjmedia/include/pjmedia/rtcp.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/pjmedia/include/pjmedia/rtcp.h b/pjmedia/include/pjmedia/rtcp.h
index bffb5f83..5328a423 100644
--- a/pjmedia/include/pjmedia/rtcp.h
+++ b/pjmedia/include/pjmedia/rtcp.h
@@ -218,16 +218,6 @@ typedef struct pjmedia_rtcp_stat pjmedia_rtcp_stat;
/**
- * The types for keeping the average jitter value. Ideally a floating point
- * number should be used, but this is not always available/desired.
- */
-#if defined(PJ_HAS_FLOATING_POINT) && PJ_HAS_FLOATING_POINT!=0
- typedef double PJMEDIA_AVG_JITTER_TYPE;
-#else
- typedef pj_uint32_t PJMEDIA_AVG_JITTER_TYPE;
-#endif
-
-/**
* RTCP session is used to monitor the RTP session of one endpoint. There
* should only be one RTCP session for a bidirectional RTP streams.
*/
@@ -257,11 +247,6 @@ struct pjmedia_rtcp_session
pjmedia_rtcp_stat stat; /**< Bidirectional stream stat. */
- /* Keep jitter calculation in floating point to prevent the values
- * from being rounded-down to nearest integer.
- */
- PJMEDIA_AVG_JITTER_TYPE avg_jitter; /**< Average RX jitter. */
-
#if defined(PJMEDIA_HAS_RTCP_XR) && (PJMEDIA_HAS_RTCP_XR != 0)
/**
* Specify whether RTCP XR processing is enabled on this session.