summaryrefslogtreecommitdiff
path: root/orkaudio/audiocaptureplugins/voip/RtpSession.cpp
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2009-06-22 20:23:10 +0000
committerHenri Herscher <henri@oreka.org>2009-06-22 20:23:10 +0000
commit79bc58f84cecf79b2f451f4488adb4460b0f0d92 (patch)
tree343e7b318b1d4a8fd9a907888676ae9e25dc37f3 /orkaudio/audiocaptureplugins/voip/RtpSession.cpp
parent4501ab5c6cfc68fb2f2a958e39bbc47487c1826d (diff)
Added LocalPartyUseName configuration parameter.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@623 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkaudio/audiocaptureplugins/voip/RtpSession.cpp')
-rw-r--r--orkaudio/audiocaptureplugins/voip/RtpSession.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/orkaudio/audiocaptureplugins/voip/RtpSession.cpp b/orkaudio/audiocaptureplugins/voip/RtpSession.cpp
index 479e0c8..666030d 100644
--- a/orkaudio/audiocaptureplugins/voip/RtpSession.cpp
+++ b/orkaudio/audiocaptureplugins/voip/RtpSession.cpp
@@ -705,8 +705,9 @@ void RtpSession::ReportMetadata()
// Report Local party
CaptureEventRef event(new CaptureEvent());
event->m_type = CaptureEvent::EtLocalParty;
+ // TODO, we might consider deprecating m_skinnyNameAsLocalParty in favour of m_localPartyUseName at some point
if( ( m_protocol == ProtSkinny && DLLCONFIG.m_skinnyNameAsLocalParty == true && m_localPartyName.size() ) ||
- ( DLLCONFIG.m_partiesUseName == true && m_localPartyName.size() ) )
+ ( (DLLCONFIG.m_partiesUseName || DLLCONFIG.m_localPartyUseName) == true && m_localPartyName.size() ) )
{
event->m_value = m_localPartyName;
}