[C-API] Set omitted enum value in pipeline buffer policy
authorSangjung Woo <sangjung.woo@samsung.com>
Mon, 6 Jan 2020 07:30:16 +0000 (16:30 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Tue, 7 Jan 2020 03:50:21 +0000 (12:50 +0900)
This patch explicitly set the enum value in pipeline buffer policy as
below.
* ML_PIPELINE_BUF_POLICY_AUTO_FREE: 0
* ML_PIPELINE_BUF_POLICY_DO_NOT_FREE: 1

Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
api/capi/include/nnstreamer.h

index 7c66961..f62a486 100644 (file)
@@ -189,8 +189,8 @@ typedef enum {
  * @since_tizen 5.5
  */
 typedef enum {
-  ML_PIPELINE_BUF_POLICY_AUTO_FREE,    /**< Default. Application should not deallocate this buffer. NNStreamer will deallocate when the buffer is no more needed */
-  ML_PIPELINE_BUF_POLICY_DO_NOT_FREE,          /**< This buffer is not to be freed by NNStreamer (i.e., it's a static object). However, be careful: NNStreamer might be accessing this object after the return of the API call. */
+  ML_PIPELINE_BUF_POLICY_AUTO_FREE      = 0, /**< Default. Application should not deallocate this buffer. NNStreamer will deallocate when the buffer is no more needed */
+  ML_PIPELINE_BUF_POLICY_DO_NOT_FREE    = 1, /**< This buffer is not to be freed by NNStreamer (i.e., it's a static object). However, be careful: NNStreamer might be accessing this object after the return of the API call. */
   ML_PIPELINE_BUF_POLICY_MAX,   /**< Max size of ml_pipeline_buf_policy_e structure */
 } ml_pipeline_buf_policy_e;