Add method to get the element used when creating the media.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=703008
return result;
}
+/**
+ * gst_rtsp_media_get_element:
+ * @media: a #GstRTSPMedia
+ *
+ * Get the element that was used when constructing @media.
+ *
+ * Returns: a #GstElement. Unref after usage.
+ */
+GstElement *
+gst_rtsp_media_get_element (GstRTSPMedia * media)
+{
+ g_return_val_if_fail (GST_IS_RTSP_MEDIA (media), NULL);
+
+ return gst_object_ref (media->priv->element);
+}
+
/**
* gst_rtsp_media_take_pipeline:
* @media: a #GstRTSPMedia
/* creating the media */
GstRTSPMedia * gst_rtsp_media_new (GstElement *element);
+GstElement * gst_rtsp_media_get_element (GstRTSPMedia *media);
void gst_rtsp_media_take_pipeline (GstRTSPMedia *media, GstPipeline *pipeline);