summaryrefslogtreecommitdiff
path: root/orkaudio/filters
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2006-12-27 17:41:54 +0000
committerHenri Herscher <henri@oreka.org>2006-12-27 17:41:54 +0000
commitca6a29f26b3a8744907d226664982431b86d9ea0 (patch)
tree6a33459aec76f29d9b29c58ff2748757152aea8c /orkaudio/filters
parentbb260e148f9b5427761d690781c81b26c1ffa611 (diff)
1. Now flushing the entirety of the buffer when EOS detected.
2. Now logging RTP payload type as decimal number (most common representation) git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@375 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkaudio/filters')
-rw-r--r--orkaudio/filters/rtpmixer/RtpMixer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/orkaudio/filters/rtpmixer/RtpMixer.cpp b/orkaudio/filters/rtpmixer/RtpMixer.cpp
index f087dd1..747cbac 100644
--- a/orkaudio/filters/rtpmixer/RtpMixer.cpp
+++ b/orkaudio/filters/rtpmixer/RtpMixer.cpp
@@ -172,7 +172,7 @@ void RtpMixer::AudioChunkIn(AudioChunkRef& chunk)
m_seqNumMissesS2, m_seqMaxGapS2, m_seqNumOutOfOrderS2, m_seqNumDiscontinuitiesS2);
LOG4CXX_INFO(m_log, logMsg);
- CreateShipment(); // flush the buffer
+ CreateShipment(0, true); // flush the buffer
return;
}
else if(chunk->GetNumSamples() == 0)
@@ -243,7 +243,7 @@ void RtpMixer::AudioChunkIn(AudioChunkRef& chunk)
if(m_log->isDebugEnabled())
{
- logMsg.Format("New chunk, s%d seq:%u ts:%u corr-ts:%u", details->m_channel, details->m_sequenceNumber, details->m_timestamp, correctedTimestamp);
+ logMsg.Format("New chunk, s%d seq:%u ts:%u corr-ts:%u type:%d", details->m_channel, details->m_sequenceNumber, details->m_timestamp, correctedTimestamp, details->m_rtpPayloadType);
LOG4CXX_DEBUG(m_log, logMsg);
}