[C-API] Rename ml_pipeline_get_element() to ml_pipeline_get_gst_element()
authorSangjung Woo <sangjung.woo@samsung.com>
Wed, 17 Jun 2020 10:22:23 +0000 (19:22 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Thu, 2 Jul 2020 07:29:20 +0000 (16:29 +0900)
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>
api/capi/include/nnstreamer-capi-private.h
api/capi/src/nnstreamer-capi-pipeline.c

index 752ac7c..22f83b8 100644 (file)
@@ -357,7 +357,7 @@ const char* ml_get_nnfw_subplugin_name (ml_nnfw_type_e nnfw);
  *          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__)
 /**
index 0aab246..899c390 100644 (file)
@@ -1562,7 +1562,7 @@ ml_pipeline_valve_set_open (ml_pipeline_valve_h h, bool open)
  * @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;