summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--gst/rtpmanager/gstrtpsession.c6
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6e51f30f..2689544a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
diff --git a/gst/rtpmanager/gstrtpsession.c b/gst/rtpmanager/gstrtpsession.c
index d18ad8c5..f141274f 100644
--- a/gst/rtpmanager/gstrtpsession.c
+++ b/gst/rtpmanager/gstrtpsession.c
@@ -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;