summaryrefslogtreecommitdiff
path: root/orkaudio/audiocaptureplugins/voip/Rtp.h
diff options
context:
space:
mode:
authorGerald Begumisa <ben_g@users.sourceforge.net>2007-09-21 17:26:05 +0000
committerGerald Begumisa <ben_g@users.sourceforge.net>2007-09-21 17:26:05 +0000
commit5a418de8f295d76e16873a0f1a8314e2a9fa6745 (patch)
tree10cc23c3fecf6ff2d876c58503885f4b9e65a286 /orkaudio/audiocaptureplugins/voip/Rtp.h
parent92876587193f588bb1fd34853861f3fedea25b6a (diff)
Added support to report RTP events in SIP sessions
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@494 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkaudio/audiocaptureplugins/voip/Rtp.h')
-rw-r--r--orkaudio/audiocaptureplugins/voip/Rtp.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/orkaudio/audiocaptureplugins/voip/Rtp.h b/orkaudio/audiocaptureplugins/voip/Rtp.h
index 0e50979..b1568b1 100644
--- a/orkaudio/audiocaptureplugins/voip/Rtp.h
+++ b/orkaudio/audiocaptureplugins/voip/Rtp.h
@@ -44,6 +44,19 @@ public:
};
typedef boost::shared_ptr<RtpPacketInfo> RtpPacketInfoRef;
+class RtpEventInfo
+{
+public:
+ void ToString(CStdString& string);
+
+ unsigned short m_event;
+ unsigned short m_e;
+ unsigned short m_r;
+ unsigned short m_volume;
+ unsigned short m_duration;
+ unsigned int m_startTimestamp;
+};
+typedef boost::shared_ptr<RtpEventInfo> RtpEventInfoRef;
#endif