* @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;