From f5ccdf303420cf68de5e47341611cc3c6f1f1185 Mon Sep 17 00:00:00 2001 From: Jaeyun Date: Fri, 7 May 2021 19:39:18 +0900 Subject: [PATCH] [Decoder/BoundingBox] remove unnecessary value remove unnecessary global value in decoder-subplugin. Signed-off-by: Jaeyun --- ext/nnstreamer/tensor_decoder/tensordec-boundingbox.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/nnstreamer/tensor_decoder/tensordec-boundingbox.c b/ext/nnstreamer/tensor_decoder/tensordec-boundingbox.c index 3d55b86..4ad54a6 100644 --- a/ext/nnstreamer/tensor_decoder/tensordec-boundingbox.c +++ b/ext/nnstreamer/tensor_decoder/tensordec-boundingbox.c @@ -87,7 +87,6 @@ extern uint8_t rasters[][13]; * [Character (ASCII)][Height][Width] */ static singleLineSprite_t singleLineSprite; -int64_t start_time, stop_time; /** * @brief There can be different schemes for bounding boxes. @@ -1077,7 +1076,6 @@ bb_decode (void **pdata, const GstTensorsConfig * config, const guint num_tensors = config->info.num_tensors; gboolean need_output_alloc; - start_time = g_get_monotonic_time (); g_assert (outbuf); need_output_alloc = gst_buffer_get_size (outbuf) == 0; @@ -1201,7 +1199,6 @@ bb_decode (void **pdata, const GstTensorsConfig * config, else gst_memory_unref (out_mem); - stop_time = g_get_monotonic_time (); return GST_FLOW_OK; error_unmap: -- 2.7.4