[Demux/Split] update description
authorJaeyun <jy1210.jung@samsung.com>
Fri, 21 Sep 2018 11:09:51 +0000 (20:09 +0900)
committerjaeyun-jung <39614140+jaeyun-jung@users.noreply.github.com>
Sat, 22 Sep 2018 05:00:37 +0000 (14:00 +0900)
1. change the element classification string
2. remove unnecessary header
3. fix typo and duplicated tag

Signed-off-by: Jaeyun Jung <jy1210.jung@samsung.com>
gst/tensor_demux/gsttensordemux.c
gst/tensor_demux/gsttensordemux.h
gst/tensor_split/gsttensorsplit.c
gst/tensor_split/gsttensorsplit.h

index ec311a5..a950e4e 100644 (file)
@@ -19,8 +19,6 @@
  * @file       gsttensordemux.c
  * @date       03 July 2018
  * @brief      GStreamer plugin to demux tensors (as a filter for other general neural network filters)
- * @bug         No known bugs
- *
  * @see                https://github.com/nnsuite/nnstreamer
  * @see                https://github.sec.samsung.net/STAR/nnstreamer
  * @author     Jijoong Moon <jijoong.moon@samsung.com>
@@ -148,7 +146,7 @@ gst_tensor_demux_class_init (GstTensorDemuxClass * klass)
 
   gst_element_class_set_details_simple (gstelement_class,
       "TensorDemux",
-      "Demux other/tensors stream",
+      "Demuxer/Tensor",
       "Demux tensors stream to other/tensor stream",
       "Jijoong Moon <jijoong.moon@samsung.com>");
 }
@@ -632,7 +630,7 @@ gst_tensor_demux_plugin_init (GstPlugin * tensordemux)
 }
 
 /**
- * @brief gstreamer looks for this structure to register tensor_mux
+ * @brief gstreamer looks for this structure to register tensor_demux
  */
 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
     GST_VERSION_MINOR,
index 4018bfc..c225d1a 100644 (file)
@@ -19,8 +19,6 @@
  * @file       gsttensordemux.h
  * @date       03 July 2018
  * @brief      GStreamer plugin to demux tensors (as a filter for other general neural network filters)
- * @bug         No known bugs
- *
  * @see                https://github.com/nnsuite/nnstreamer
  * @see                https://github.sec.samsung.net/STAR/nnstreamer
  * @author     Jijoong Moon <jijoong.moon@samsung.com>
index c31d683..261cc1b 100644 (file)
@@ -19,9 +19,7 @@
  * @file       gsttensorsplit.c
  * @date       27 Aug 2018
  * @brief      GStreamer plugin to split tensor (as a filter for other general neural network filters)
- * @bug         No known bugs
- *
- * @see                http://github.com/nnsuite/nnstreamer
+ * @see                https://github.com/nnsuite/nnstreamer
  * @see                https://github.sec.samsung.net/STAR/nnstreamer
  * @author     Jijoong Moon <jijoong.moon@samsung.com>
  * @bug                No known bugs except for NYI items
@@ -56,7 +54,6 @@
 #include <glib.h>
 
 #include "gsttensorsplit.h"
-#include <tensor_meta.h>
 #include <tensor_common.h>
 
 GST_DEBUG_CATEGORY_STATIC (gst_tensor_split_debug);
@@ -141,7 +138,7 @@ gst_tensor_split_class_init (GstTensorSplitClass * klass)
 
   gst_element_class_set_details_simple (gstelement_class,
       "TensorSplit",
-      "Split other/tensor stream",
+      "Demuxer/Tensor",
       "Split tensor stream to other/tensor stream",
       "Jijoong Moon <jijoong.moon@samsung.com>");
 }
index d3e592d..0dcd39b 100644 (file)
@@ -19,9 +19,7 @@
  * @file       gsttensorsplit.h
  * @date       27 Aug 2018
  * @brief      GStreamer plugin to split tensor (as a filter for other general neural network filters)
- * @bug         No known bugs
- *
- * @see                http://github.com/nnsuite/nnstreamer
+ * @see                https://github.com/nnsuite/nnstreamer
  * @see                https://github.sec.samsung.net/STAR/nnstreamer
  * @author     Jijoong Moon <jijoong.moon@samsung.com>
  * @bug                No known bugs except for NYI items