[CodeClean] remove unnecessary code
authorJaeyun <jy1210.jung@samsung.com>
Fri, 10 Jan 2020 09:26:17 +0000 (18:26 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Tue, 14 Jan 2020 00:47:41 +0000 (09:47 +0900)
Now single API does not use the pipeline. Remove unnecessary function to get caps from tensor-info.

Signed-off-by: Jaeyun Jung <jy1210.jung@samsung.com>
api/capi/include/nnstreamer-capi-private.h
api/capi/src/nnstreamer-capi-util.c

index 2bf7d6c..36d7cd7 100644 (file)
@@ -326,11 +326,6 @@ void ml_tensors_info_copy_from_gst (ml_tensors_info_s *ml_info, const GstTensors
 void ml_tensors_info_copy_from_ml (GstTensorsInfo *gst_info, const ml_tensors_info_s *ml_info);
 
 /**
- * @brief Gets caps from tensors info.
- */
-GstCaps * ml_tensors_info_get_caps (const ml_tensors_info_s *info);
-
-/**
  * @brief Creates a tensor data frame wihout buffer with the given tensors information.
  * @details If @a info is null, this allocates data handle with empty tensor data.
  * @param[in] info The handle of tensors information for the allocation.
index 5c53283..d2d41e6 100644 (file)
@@ -844,42 +844,6 @@ ml_tensors_info_copy_from_ml (GstTensorsInfo * gst_info,
 }
 
 /**
- * @brief Gets caps from tensors info.
- */
-GstCaps *
-ml_tensors_info_get_caps (const ml_tensors_info_s * info)
-{
-  GstCaps *caps;
-  GstTensorsConfig config;
-
-  if (!info)
-    return NULL;
-
-  ml_tensors_info_copy_from_ml (&config.info, info);
-
-  /* set framerate 0/1 */
-  config.rate_n = 0;
-  config.rate_d = 1;
-
-  /* Supposed input type is single tensor if the number of tensors is 1. */
-  if (config.info.num_tensors == 1) {
-    GstTensorConfig c;
-
-    gst_tensor_info_copy (&c.info, &config.info.info[0]);
-    c.rate_n = 0;
-    c.rate_d = 1;
-
-    caps = gst_tensor_caps_from_config (&c);
-    gst_tensor_info_free (&c.info);
-  } else {
-    caps = gst_tensors_caps_from_config (&config);
-  }
-
-  gst_tensors_info_free (&config.info);
-  return caps;
-}
-
-/**
  * @brief Initializes the GStreamer library. This is internal function.
  */
 int