From 191580d8a183152623e18e41489c3c10fbeb7466 Mon Sep 17 00:00:00 2001 From: gichan Date: Mon, 29 Aug 2022 16:47:12 +0900 Subject: [PATCH] [TEMP] Temporarily disable aitt_option `aitt_option` is newest feature of the aitt. It's not refelected on latest image. Temporarily remove aitt_option feature. Signed-off-by: gichan --- src/libnnstreamer-edge/nnstreamer-edge-aitt.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/libnnstreamer-edge/nnstreamer-edge-aitt.c b/src/libnnstreamer-edge/nnstreamer-edge-aitt.c index 64fc986..b0a775d 100644 --- a/src/libnnstreamer-edge/nnstreamer-edge-aitt.c +++ b/src/libnnstreamer-edge/nnstreamer-edge-aitt.c @@ -43,7 +43,6 @@ nns_edge_aitt_connect (nns_edge_h edge_h) { nns_edge_handle_s *eh; nns_edge_aitt_handle_s *ah; - aitt_option_h option; eh = (nns_edge_handle_s *) edge_h; @@ -60,10 +59,7 @@ nns_edge_aitt_connect (nns_edge_h edge_h) return NNS_EDGE_ERROR_OUT_OF_MEMORY; } - option = aitt_option_new (); - aitt_option_set (option, AITT_OPT_MY_IP, eh->host); - - ah->aitt_h = aitt_new (eh->id, option); + ah->aitt_h = aitt_new (eh->id, eh->host); if (!ah->aitt_h) { nns_edge_loge ("Failed to create AITT handle. AITT internal error."); SAFE_FREE (ah); -- 2.34.1