summaryrefslogtreecommitdiffstats
path: root/gst/rtpmanager/rtpsession.c
diff options
context:
space:
mode:
authorPeter Kjellerstedt <pkj@axis.com>2008-07-03 14:31:10 +0000
committerPeter Kjellerstedt <pkj@axis.com>2008-07-03 14:31:10 +0000
commite6d85e6a1e51eb39155591dd5dc1a4b06f1267ed (patch)
treebdb7eefbd0435c95d8e30f81ac8412bbc6af0f00 /gst/rtpmanager/rtpsession.c
parent56988f51e1bd54d8b6152b7b9e413ad1d6d5552f (diff)
downloadgst-plugins-bad-e6d85e6a1e51eb39155591dd5dc1a4b06f1267ed.tar.gz
gst-plugins-bad-e6d85e6a1e51eb39155591dd5dc1a4b06f1267ed.tar.bz2
gst-plugins-bad-e6d85e6a1e51eb39155591dd5dc1a4b06f1267ed.zip
gst/rtpmanager/: Changed some GST_DEBUG() to GST_LOG() to reduce the spam when a pipeline is running normally.
Original commit message from CVS: * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_process_rtp), (gst_rtp_session_send_rtp), (gst_rtp_session_send_rtcp), (gst_rtp_session_sync_rtcp), (gst_rtp_session_chain_recv_rtp), (gst_rtp_session_chain_recv_rtcp), (gst_rtp_session_chain_send_rtp): * gst/rtpmanager/rtpsession.c: (source_push_rtp), (rtp_session_send_rtp): * gst/rtpmanager/rtpsource.c: (push_packet), (calculate_jitter), (rtp_source_process_rtp), (rtp_source_send_rtp): Changed some GST_DEBUG() to GST_LOG() to reduce the spam when a pipeline is running normally.
Diffstat (limited to 'gst/rtpmanager/rtpsession.c')
-rw-r--r--gst/rtpmanager/rtpsession.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/rtpmanager/rtpsession.c b/gst/rtpmanager/rtpsession.c
index c7ab410f..59b1d8d0 100644
--- a/gst/rtpmanager/rtpsession.c
+++ b/gst/rtpmanager/rtpsession.c
@@ -812,7 +812,7 @@ source_push_rtp (RTPSource * source, GstBuffer * buffer, RTPSession * session)
GstFlowReturn result = GST_FLOW_OK;
if (source == session->source) {
- GST_DEBUG ("source %08x pushed sender RTP packet", source->ssrc);
+ GST_LOG ("source %08x pushed sender RTP packet", source->ssrc);
RTP_SESSION_UNLOCK (session);
@@ -824,7 +824,7 @@ source_push_rtp (RTPSource * source, GstBuffer * buffer, RTPSession * session)
gst_buffer_unref (buffer);
} else {
- GST_DEBUG ("source %08x pushed receiver RTP packet", source->ssrc);
+ GST_LOG ("source %08x pushed receiver RTP packet", source->ssrc);
RTP_SESSION_UNLOCK (session);
if (session->callbacks.process_rtp)
@@ -1772,7 +1772,7 @@ rtp_session_send_rtp (RTPSession * sess, GstBuffer * buffer,
if (!gst_rtp_buffer_validate (buffer))
goto invalid_packet;
- GST_DEBUG ("received RTP packet for sending");
+ GST_LOG ("received RTP packet for sending");
RTP_SESSION_LOCK (sess);
source = sess->source;