From 2aae0b43275efe54a464a755baecd25cd23a2d02 Mon Sep 17 00:00:00 2001 From: gichan2-jang Date: Thu, 23 May 2024 18:03:35 +0900 Subject: [PATCH] [ml-service] Change caps prop to caps filter of appsrc The ml-service-query-client test sometimes fails. Let's revert the change and repeat the tests. Related issue: https://github.com/nnstreamer/api/issues/421 Signed-off-by: gichan2-jang --- c/src/ml-api-service-query-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/src/ml-api-service-query-client.c b/c/src/ml-api-service-query-client.c index a26a56a2..40b80e82 100644 --- a/c/src/ml-api-service-query-client.c +++ b/c/src/ml-api-service-query-client.c @@ -176,7 +176,7 @@ ml_service_query_create (ml_option_h option, ml_service_h * handle) prop = g_string_free (tensor_query_client_prop, FALSE); description = g_strdup_printf - ("appsrc name=srcx caps=%s ! tensor_query_client %s name=qcx ! tensor_sink name=sinkx async=false sync=false", + ("appsrc name=srcx ! %s ! tensor_query_client %s name=qcx ! tensor_sink name=sinkx async=false sync=false", caps, prop); status = ml_pipeline_construct (description, NULL, NULL, &pipe_h);