summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-01-30 18:22:31 +0100
committerSebastian Dröge <sebastian@centricular.com>2015-01-30 18:22:31 +0100
commit075eb10e65a84b524f8f8b72d3bdfefb0bf27588 (patch)
treedf07c2696262af0ad28747e4dd4aaef007f96745
parentec99bbb5e1374e951b0b70ac92004d7c2840e90d (diff)
rtpsession: Fix signal name
This wasn't meant to be pushed at all yet, but now that it's there already it won't hurt to make it correct at least.
-rw-r--r--gst/rtpmanager/rtpsession.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtpmanager/rtpsession.c b/gst/rtpmanager/rtpsession.c
index cdcd686a0..a93523aaf 100644
--- a/gst/rtpmanager/rtpsession.c
+++ b/gst/rtpmanager/rtpsession.c
@@ -352,7 +352,7 @@ rtp_session_class_init (RTPSessionClass * klass)
* Since: 1.6
*/
rtp_session_signals[SIGNAL_ON_RECEIVING_RTCP] =
- g_signal_new ("on-sending-rtcp", G_TYPE_FROM_CLASS (klass),
+ g_signal_new ("on-receiving-rtcp", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_receiving_rtcp),
NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
GST_TYPE_BUFFER | G_SIGNAL_TYPE_STATIC_SCOPE);