This patch renames ml_pipeline_get_element() to
ml_pipeline_get_gst_element(). It is only used for demo application
internally and the name 'ml_pipeline_get_element' is going to use for
other purposes.
Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
* Note that caller should release the returned reference using gst_object_unref().
* @return The reference of pipeline itself. Null if the pipeline is not constructed or closed.
*/
-GstElement* ml_pipeline_get_element (ml_pipeline_h pipe);
+GstElement* ml_pipeline_get_gst_element (ml_pipeline_h pipe);
#if defined (__TIZEN__)
/**
* @brief Gets the element of pipeline itself (GstElement).
*/
GstElement *
-ml_pipeline_get_element (ml_pipeline_h pipe)
+ml_pipeline_get_gst_element (ml_pipeline_h pipe)
{
ml_pipeline *p = (ml_pipeline *) pipe;
GstElement *element = NULL;