Filter/API: Fix wrong indentation accepted/tizen/unified/20230103.164729
authorWook Song <wook16.song@samsung.com>
Mon, 26 Dec 2022 04:16:29 +0000 (13:16 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Mon, 26 Dec 2022 06:09:59 +0000 (15:09 +0900)
This is a trivial patch that fixes the wrong indentation.

Signed-off-by: Wook Song <wook16.song@samsung.com>
gst/nnstreamer/include/nnstreamer_plugin_api_filter.h

index ac9c1de..90dc126 100644 (file)
@@ -399,12 +399,12 @@ struct _GstTensorFilterFramework
        * @return 0 if supported. -errno if not supported.
        */
 
-       int (*allocateInInvoke) (void **private_data);
-       /**< Optional. tensor_filter_common.c will call it when allocate_in_invoke is set to TRUE. This check if the provided model for the framework supports allocation at invoke or not. If this is not defined, then the value of allocate_in_invoke is assumed to be final for all models.
-        *
-        * @param[in] private_data A subplugin may save its internal private data here.
-        * @return 0 if supported. -errno if not supported.
-        */
+      int (*allocateInInvoke) (void **private_data);
+      /**< Optional. tensor_filter_common.c will call it when allocate_in_invoke is set to TRUE. This check if the provided model for the framework supports allocation at invoke or not. If this is not defined, then the value of allocate_in_invoke is assumed to be final for all models.
+       *
+       * @param[in] private_data A subplugin may save its internal private data here.
+       * @return 0 if supported. -errno if not supported.
+       */
     }
 #ifdef NO_ANONYMOUS_NESTED_STRUCT
         v0