382 if (NULL == param || *param == '\0' || bdata->mode < 0) {
383 GST_ERROR ("Please set the valid mode at option1");
384 return FALSE;
385 }
bdata->mode is a variable of enum type so that it is always a positive value or zero.
Some compilers (i.e., clang) would complain about it. Need to fix this logical bug.
bdata->mode is a variable of enum type so that it is always a positive value or zero. Some compilers (i.e., clang) would complain about it. Need to fix this logical bug.