media: add _get_element() method

Add method to get the element used when creating the media.

Fixes https://bugzilla.gnome.org/show_bug.cgi?id=703008
This commit is contained in:
Wim Taymans 2013-06-24 23:56:57 +02:00
parent 6d69a4ae80
commit aab1198516
2 changed files with 17 additions and 0 deletions

View file

@ -438,6 +438,22 @@ gst_rtsp_media_new (GstElement * element)
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

View file

@ -117,6 +117,7 @@ GType gst_rtsp_media_get_type (void);
/* 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);