There were a few missing spots in the previous merge conflict resolve.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
g_assert (filter->prop.customProperties == NULL && value);
/* Once configures, it cannot be changed in runtime */
filter->prop.customProperties = g_value_dup_string (value);
- if (filter->prop.debug == TRUE)
+ if (filter->prop.silent == FALSE)
g_printerr ("Custom Option = %s\n", filter->prop.customProperties);
break;
default:
typedef struct _GstTensor_Filter_Properties
{
gboolean silent; /**< Verbose mode if FALSE */
- gboolean debug; /**< Print out more thinkgs if TRUE */
gboolean inputConfigured; /**< TRUE if input dimension is configured */
gboolean outputConfigured; /** < TRUE if output dimension is configured */
nnfw_type nnfw; /**< The enum value of corresponding NNFW. _T_F_UNDEFINED if not configured */