[Tizen/API] Make a consistency in naming of GStreamer
authorSangjung Woo <sangjung.woo@samsung.com>
Fri, 10 May 2019 02:34:34 +0000 (11:34 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Wed, 15 May 2019 13:02:40 +0000 (22:02 +0900)
This patch makes a consistency in naming of GStreamer.
* Normal case: GStreamer
* URL only: gstreamer

Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
tizen-api/doc/nnstreamer_doc.h
tizen-api/include/nnstreamer.h
tizen-api/src/tizen-api-pipeline.c

index f366e24..a09ab1b 100644 (file)
  * https://github.com/nnsuite/nnstreamer/ \n
  * \n
  * Main objectives of NNStreamer include:\n
- * * Provide neural network framework connectivities (e.g., tensorflow, caffe) for gstreamer streams.\n
+ * * Provide neural network framework connectivities (e.g., tensorflow, caffe) for GStreamer streams.\n
  *     * **Efficient Streaming for AI Projects**: Apply efficient and flexible stream pipeline to neural networks.\n
  *     * **Intelligent Media Filters!**: Use a neural network model as a media filter / converter.\n
  *     * **Composite Models!**: Multiple neural network models in a single stream pipeline instance.\n
  *     * **Multi Modal Intelligence!**: Multiple sources and stream paths for neural network models.\n
  * * Provide easy methods to construct media streams with neural network models using the de-facto-standard media stream framework, **GStreamer**.\n
- *     * Gstreamer users: use neural network models as if they are yet another media filters.\n
+ *     * GStreamer users: use neural network models as if they are yet another media filters.\n
  *     * Neural network developers: manage media streams easily and efficiently.\n
  * \n
  * There are following sub groups proposed:\n
index 85ec22f..e38f6fe 100644 (file)
@@ -110,7 +110,7 @@ typedef enum {
   NNS_ERROR_NONE                               = TIZEN_ERROR_NONE, /**< Success! */
   NNS_ERROR_INVALID_PARAMETER                  = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */
   NNS_ERROR_NOT_SUPPORTED                      = TIZEN_ERROR_NOT_SUPPORTED, /**< The feature is not supported */
-  NNS_ERROR_STREAMS_PIPE                       = TIZEN_ERROR_STREAMS_PIPE, /**< Cannot create or access Gstreamer pipeline. */
+  NNS_ERROR_STREAMS_PIPE                       = TIZEN_ERROR_STREAMS_PIPE, /**< Cannot create or access GStreamer pipeline. */
   NNS_ERROR_TRY_AGAIN                          = TIZEN_ERROR_TRY_AGAIN, /**< The pipeline is not ready, yet (not negotiated, yet) */
 } nns_error_e;
 
@@ -342,7 +342,7 @@ int nns_pipeline_src_inputdata (nns_src_h h, nns_buf_policy_e policy, char *buf[
 
 /**
  * @brief Get a handle to operate a "GstInputSelector / GstOutputSelector" node of nnstreamer pipelines.
- * @detail Refer to gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-bad-plugins/html/gst-plugins-bad-plugins-input-selector.html for input selectors.
+ * @detail Refer to https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-bad-plugins/html/gst-plugins-bad-plugins-input-selector.html for input selectors.
  *         Refer to https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer-plugins/html/gstreamer-plugins-output-selector.html for output selectors.
  * @param[in] pipe The pipeline to be managed.
  * @param[in] switchname The name of switch (InputSelector/OutputSelector)
index 8fc3452..2b4de6a 100644 (file)
@@ -284,11 +284,11 @@ nns_pipeline_construct (const char *pipeline_description, nns_pipeline_h * pipe)
   if (FALSE == gst_init_check (NULL, NULL, &err)) {
     if (err) {
       dlog_print (DLOG_ERROR, DLOG_TAG,
-          "Gstreamer has the following error: %s", err->message);
+          "GStreamer has the following error: %s", err->message);
       g_error_free (err);
     } else {
       dlog_print (DLOG_ERROR, DLOG_TAG,
-          "Cannot initialize gstreamer. Unknown reason.");
+          "Cannot initialize GStreamer. Unknown reason.");
     }
     return NNS_ERROR_STREAMS_PIPE;
   }