[Decoder] Minor style fix (variable types)
authorMyungJoo Ham <myungjoo.ham@samsung.com>
Thu, 13 Sep 2018 01:51:54 +0000 (10:51 +0900)
committerMyungJoo Ham <myungjoo.ham@gmail.com>
Thu, 13 Sep 2018 09:33:19 +0000 (18:33 +0900)
Let's constify mode names as they are not going to be edited in runtime, but switched between predefined strings only.

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
gst/tensor_decoder/tensordec.h

index cf62aa7..092a6ff 100644 (file)
@@ -61,7 +61,7 @@ struct _GstTensorDec
   gboolean add_padding; /**< If TRUE, zero-padding must be added during transform */
   gboolean silent; /**< True if logging is minimized */
   guint output_type; /**< Denotes the output type */
-  gchar *mode; /** Mode for tensor decoder "direct_video" or "image_labeling" */
+  const gchar *mode; /** Mode for tensor decoder "direct_video" or "image_labeling" */
 
   /** For Tensor */
   gboolean configured; /**< TRUE if already successfully configured tensor metadata */
@@ -83,7 +83,7 @@ struct _GstTensorDecClass
 /**
  * @brief Tensor decoder modes
  */
-gchar *Mode[] = {
+static const gchar *Mode[] = {
   "direct_video",
   "image_labeling"
 };