diff options
author | Peter Kjellerstedt <pkj@axis.com> | 2008-07-03 14:31:10 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-08-11 02:30:36 +0100 |
commit | e2f49d9ccf103fdd25212ce3c261344dc47202b7 (patch) | |
tree | 9c2f28ea0bdd88244f4efa1a2127f80c7449db44 /gst/rtpmanager/rtpsession.c | |
parent | ca15984e14415a6be286c4744020aa4f9b258979 (diff) |
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.c | 6 |
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; |