summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--gst/fsrtpconference/fs-rtp-session.c8
2 files changed, 9 insertions, 1 deletions
diff --git a/README b/README
index 31941e64..f736b5ca 100644
--- a/README
+++ b/README
@@ -32,7 +32,7 @@ For the python module:
Run time for the RTP plugin:
All of the build time requirements (except gtk-doc) plus
- gst-plugins-good 0.10.7
- - gst-plugins-bad 0.10.13
+ - gst-plugins-bad 0.10.12
For the GUI example:
- PyGTK 2.10
diff --git a/gst/fsrtpconference/fs-rtp-session.c b/gst/fsrtpconference/fs-rtp-session.c
index 6a23542d..85414884 100644
--- a/gst/fsrtpconference/fs-rtp-session.c
+++ b/gst/fsrtpconference/fs-rtp-session.c
@@ -600,36 +600,44 @@ fs_rtp_session_dispose (GObject *object)
if (self->priv->rtpbin_send_rtcp_src)
{
+ /* Release pad generates a g_warning as of Nov 11 2008
gst_pad_set_active (self->priv->rtpbin_send_rtcp_src, FALSE);
gst_element_release_request_pad (self->priv->conference->gstrtpbin,
self->priv->rtpbin_send_rtcp_src);
+ */
gst_object_unref (self->priv->rtpbin_send_rtcp_src);
self->priv->rtpbin_send_rtcp_src = NULL;
}
if (self->priv->rtpbin_send_rtp_sink)
{
+ /* Release pad generates a g_warning as of Nov 11 2008
gst_pad_set_active (self->priv->rtpbin_send_rtp_sink, FALSE);
gst_element_release_request_pad (self->priv->conference->gstrtpbin,
self->priv->rtpbin_send_rtp_sink);
+ */
gst_object_unref (self->priv->rtpbin_send_rtp_sink);
self->priv->rtpbin_send_rtp_sink = NULL;
}
if (self->priv->rtpbin_recv_rtp_sink)
{
+ /* Release pad generates a g_warning as of Nov 11 2008
gst_pad_set_active (self->priv->rtpbin_recv_rtp_sink, FALSE);
gst_element_release_request_pad (self->priv->conference->gstrtpbin,
self->priv->rtpbin_recv_rtp_sink);
+ */
gst_object_unref (self->priv->rtpbin_recv_rtp_sink);
self->priv->rtpbin_recv_rtp_sink = NULL;
}
if (self->priv->rtpbin_recv_rtcp_sink)
{
+ /* Release pad generates a g_warning as of Nov 11 2008
gst_pad_set_active (self->priv->rtpbin_recv_rtcp_sink, FALSE);
gst_element_release_request_pad (self->priv->conference->gstrtpbin,
self->priv->rtpbin_recv_rtcp_sink);
+ */
gst_object_unref (self->priv->rtpbin_recv_rtcp_sink);
self->priv->rtpbin_recv_rtcp_sink = NULL;
}