[Bug 763710] New: sdpdemux: Sometimes it emits no-more-pads twice
GStreamer (GNOME Bugzilla)
bugzilla at gnome.org
Tue Mar 15 15:45:34 UTC 2016
https://bugzilla.gnome.org/show_bug.cgi?id=763710
Bug ID: 763710
Summary: sdpdemux: Sometimes it emits no-more-pads twice
Classification: Platform
Product: GStreamer
Version: git master
OS: Linux
Status: NEW
Severity: normal
Priority: Normal
Component: gst-plugins-bad
Assignee: gstreamer-bugs at lists.freedesktop.org
Reporter: vivia at ahiru.eu
QA Contact: gstreamer-bugs at lists.freedesktop.org
GNOME version: ---
Hi,
Sometimes sdpdemux emits no-more-pads twice:
sdpdemux = gst_element_factory_make ("sdpdemux", NULL);
g_assert_nonnull (sdpdemux);
g_printerr ("Creating SDP element: %p\n", sdpdemux);
latency_msecs = GST_TIME_AS_MSECONDS (priv->latency);
g_object_set (sdpdemux, "latency", latency_msecs, NULL);
(add and link it)
g_signal_connect (sdpdemux, "no-more-pads", G_CALLBACK (_no_more_pads),
self);
static void
_no_more_pads (GstElement * element, gpointer user_data)
{
g_printerr ("Entered element's (%p) no-more-pads\n", element);
}
Creating SDP element: 0x7fa0ac0e02e0
Entered element's (0x7fa0ac0e02e0) no-more-pads
Entered element's (0x7fa0ac0e02e0) no-more-pads
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
More information about the gstreamer-bugs
mailing list