[Bug 643577] gst-rtsp-server: g_object_ref: assertion `G_IS_OBJECT (object)' failed
GStreamer (bugzilla.gnome.org)
bugzilla at gnome.org
Wed Jul 27 12:39:50 PDT 2011
https://bugzilla.gnome.org/show_bug.cgi?id=643577
GStreamer | gst-rtsp-server | 0.10.8
--- Comment #8 from Robert Krakora <rob.krakora at messagenetsystems.com> 2011-07-27 19:39:46 UTC ---
Something to do with the "shared" property...as it's state gets set on the
GstRTSPMedia param in the function below...
default_configure (GstRTSPMediaFactory * factory, GstRTSPMedia * media)
{
gboolean shared, eos_shutdown;
guint size;
GstRTSPAuth *auth;
/* configure the sharedness */
GST_RTSP_MEDIA_FACTORY_LOCK (factory);
shared = factory->shared;
eos_shutdown = factory->eos_shutdown;
size = factory->buffer_size;
GST_RTSP_MEDIA_FACTORY_UNLOCK (factory);
gst_rtsp_media_set_shared (media, shared);
gst_rtsp_media_set_eos_shutdown (media, eos_shutdown);
gst_rtsp_media_set_buffer_size (media, size);
if ((auth = gst_rtsp_media_factory_get_auth (factory))) {
gst_rtsp_media_set_auth (media, auth);
g_object_unref (auth);
}
}
--
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- 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