summaryrefslogtreecommitdiff
path: root/orkaudio
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2007-01-17 15:46:58 +0000
committerHenri Herscher <henri@oreka.org>2007-01-17 15:46:58 +0000
commit5c47f8ba4dbf7ce5abe26f1370b1b7be6b21fc85 (patch)
tree31d7ee354ee0b97b53e7c0daaa1c3ff9dcc10c7b /orkaudio
parentd6729c5be22c879150bf358f7094097c5080fa55 (diff)
Initial version of a transcoded tape file naming scheme. This makes it possible e.g. to name transcoded files after the SIP or Skinny native Call ID.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@390 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkaudio')
-rw-r--r--orkaudio/audiocaptureplugins/voip/RtpSession.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/orkaudio/audiocaptureplugins/voip/RtpSession.cpp b/orkaudio/audiocaptureplugins/voip/RtpSession.cpp
index d65bc75..f6de084 100644
--- a/orkaudio/audiocaptureplugins/voip/RtpSession.cpp
+++ b/orkaudio/audiocaptureplugins/voip/RtpSession.cpp
@@ -396,6 +396,12 @@ void RtpSession::ReportMetadata()
event->m_value = m_orkUid;
g_captureEventCallBack(event, m_capturePort);
+ // Report native Call ID
+ event.reset(new CaptureEvent());
+ event->m_type = CaptureEvent::EtCallId;
+ event->m_value = m_callId;
+ g_captureEventCallBack(event, m_capturePort);
+
// Report end of metadata
event.reset(new CaptureEvent());
event->m_type = CaptureEvent::EtEndMetadata;