From 2396e6a52be957a34227750acfd9e3c5322f07a1 Mon Sep 17 00:00:00 2001 From: Hwansoon Sung Date: Sat, 17 Nov 2018 21:04:45 +0900 Subject: [PATCH] [Example/FilterPerformanceProfile] Fix on capsfilter This patch fixed a typo found at capsfilter's "height" property. Having it fixed, we were able to run the example successfully along with our MIPI camera on ARTIK devkit. Signed-off-by: Hwansoon Sung --- .../nnstreamer_example_filter_performance_profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nnstreamer_example/example_filter_performance_profile/nnstreamer_example_filter_performance_profile.c b/nnstreamer_example/example_filter_performance_profile/nnstreamer_example_filter_performance_profile.c index 8da4444..63b98d3 100644 --- a/nnstreamer_example/example_filter_performance_profile/nnstreamer_example_filter_performance_profile.c +++ b/nnstreamer_example/example_filter_performance_profile/nnstreamer_example_filter_performance_profile.c @@ -518,7 +518,7 @@ _construct_v4l2src_pipeline (nnstrmr_app_context_t * ctx) } str_caps = - g_strdup_printf ("video/x-raw,width=%d,hegith=%d,framerate=%s", + g_strdup_printf ("video/x-raw,width=%d,height=%d,framerate=%s", ctx->input_src_width, ctx->input_src_height, ctx->input_src_framerates); caps = gst_caps_from_string (str_caps); g_object_set (G_OBJECT (pipeline_cntnr->input_capsfilter), -- 2.7.4