mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +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
f17824d0d1
commit
c67ad65c91
2 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
2007-11-02 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
Patch by: Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
|
||||
|
||||
* gst/rtpmanager/gstrtpsession.c:
|
||||
Fix bad function signatures (#492798).
|
||||
|
||||
2007-11-02 Edgard Lima <edgard.lima@indt.org.br>
|
||||
|
||||
* ext/metadata/Makefile.am:
|
||||
|
|
|
@ -1004,7 +1004,7 @@ gst_rtp_session_reconsider (RTPSession * sess, gpointer user_data)
|
|||
GST_RTP_SESSION_UNLOCK (rtpsession);
|
||||
}
|
||||
|
||||
static GstFlowReturn
|
||||
static gboolean
|
||||
gst_rtp_session_event_recv_rtp_sink (GstPad * pad, GstEvent * event)
|
||||
{
|
||||
GstRtpSession *rtpsession;
|
||||
|
@ -1155,7 +1155,7 @@ push_error:
|
|||
}
|
||||
}
|
||||
|
||||
static GstFlowReturn
|
||||
static gboolean
|
||||
gst_rtp_session_event_recv_rtcp_sink (GstPad * pad, GstEvent * event)
|
||||
{
|
||||
GstRtpSession *rtpsession;
|
||||
|
@ -1204,7 +1204,7 @@ gst_rtp_session_chain_recv_rtcp (GstPad * pad, GstBuffer * buffer)
|
|||
return GST_FLOW_OK;
|
||||
}
|
||||
|
||||
static GstFlowReturn
|
||||
static gboolean
|
||||
gst_rtp_session_event_send_rtp_sink (GstPad * pad, GstEvent * event)
|
||||
{
|
||||
GstRtpSession *rtpsession;
|
||||
|
|
Loading…
Reference in a new issue