mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:46:13 +00:00
gst/rtpmanager/gstrtpsession.c: Fix bad function signatures (#492798).
Original commit message from CVS: Patch by: Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com> * gst/rtpmanager/gstrtpsession.c: Fix bad function signatures (#492798).
This commit is contained in:
parent
8da59edc68
commit
c5fdb6bff3
1 changed files with 3 additions and 3 deletions
|
@ -1004,7 +1004,7 @@ gst_rtp_session_reconsider (RTPSession * sess, gpointer user_data)
|
||||||
GST_RTP_SESSION_UNLOCK (rtpsession);
|
GST_RTP_SESSION_UNLOCK (rtpsession);
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstFlowReturn
|
static gboolean
|
||||||
gst_rtp_session_event_recv_rtp_sink (GstPad * pad, GstEvent * event)
|
gst_rtp_session_event_recv_rtp_sink (GstPad * pad, GstEvent * event)
|
||||||
{
|
{
|
||||||
GstRtpSession *rtpsession;
|
GstRtpSession *rtpsession;
|
||||||
|
@ -1155,7 +1155,7 @@ push_error:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstFlowReturn
|
static gboolean
|
||||||
gst_rtp_session_event_recv_rtcp_sink (GstPad * pad, GstEvent * event)
|
gst_rtp_session_event_recv_rtcp_sink (GstPad * pad, GstEvent * event)
|
||||||
{
|
{
|
||||||
GstRtpSession *rtpsession;
|
GstRtpSession *rtpsession;
|
||||||
|
@ -1204,7 +1204,7 @@ gst_rtp_session_chain_recv_rtcp (GstPad * pad, GstBuffer * buffer)
|
||||||
return GST_FLOW_OK;
|
return GST_FLOW_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstFlowReturn
|
static gboolean
|
||||||
gst_rtp_session_event_send_rtp_sink (GstPad * pad, GstEvent * event)
|
gst_rtp_session_event_send_rtp_sink (GstPad * pad, GstEvent * event)
|
||||||
{
|
{
|
||||||
GstRtpSession *rtpsession;
|
GstRtpSession *rtpsession;
|
||||||
|
|
Loading…
Reference in a new issue