mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
rtpmanager: Register chain functions to debug
This commit is contained in:
parent
2ff7519d73
commit
7ecbd7271d
4 changed files with 20 additions and 0 deletions
|
@ -999,6 +999,7 @@ gst_rtp_jitter_buffer_class_init (GstRtpJitterBufferClass * klass)
|
|||
|
||||
GST_DEBUG_CATEGORY_INIT
|
||||
(rtpjitterbuffer_debug, "rtpjitterbuffer", 0, "RTP Jitter Buffer");
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_rtp_jitter_buffer_chain_rtcp);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -281,6 +281,8 @@ gst_rtp_pt_demux_class_init (GstRtpPtDemuxClass * klass)
|
|||
|
||||
GST_DEBUG_CATEGORY_INIT (gst_rtp_pt_demux_debug,
|
||||
"rtpptdemux", 0, "RTP codec demuxer");
|
||||
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_rtp_pt_demux_chain);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -306,6 +306,14 @@ static void gst_rtp_session_notify_nack (RTPSession * sess,
|
|||
static void gst_rtp_session_reconfigure (RTPSession * sess, gpointer user_data);
|
||||
static void gst_rtp_session_notify_early_rtcp (RTPSession * sess,
|
||||
gpointer user_data);
|
||||
static GstFlowReturn gst_rtp_session_chain_recv_rtp (GstPad * pad,
|
||||
GstObject * parent, GstBuffer * buffer);
|
||||
static GstFlowReturn gst_rtp_session_chain_recv_rtcp (GstPad * pad,
|
||||
GstObject * parent, GstBuffer * buffer);
|
||||
static GstFlowReturn gst_rtp_session_chain_send_rtp (GstPad * pad,
|
||||
GstObject * parent, GstBuffer * buffer);
|
||||
static GstFlowReturn gst_rtp_session_chain_send_rtp_list (GstPad * pad,
|
||||
GstObject * parent, GstBufferList * list);
|
||||
|
||||
static RTPSessionCallbacks callbacks = {
|
||||
gst_rtp_session_process_rtp,
|
||||
|
@ -800,6 +808,12 @@ gst_rtp_session_class_init (GstRtpSessionClass * klass)
|
|||
|
||||
GST_DEBUG_CATEGORY_INIT (gst_rtp_session_debug,
|
||||
"rtpsession", 0, "RTP Session");
|
||||
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_rtp_session_chain_recv_rtp);
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_rtp_session_chain_recv_rtcp);
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_rtp_session_chain_send_rtp);
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_rtp_session_chain_send_rtp_list);
|
||||
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -408,6 +408,9 @@ gst_rtp_ssrc_demux_class_init (GstRtpSsrcDemuxClass * klass)
|
|||
|
||||
GST_DEBUG_CATEGORY_INIT (gst_rtp_ssrc_demux_debug,
|
||||
"rtpssrcdemux", 0, "RTP SSRC demuxer");
|
||||
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_rtp_ssrc_demux_chain);
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_rtp_ssrc_demux_rtcp_chain);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue