Unknown options and bad values were never fatal for any libhb encoder.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7278
b64f7644-9d1e-0410-96f1-
a4d463321fa5
char *str = hb_value_get_string_xform(value);
// here's where the strings are passed to libx265 for parsing
- if (param_parse(param, key, str))
- {
- free(str);
- hb_dict_free(&x265_opts);
- goto fail;
- }
+ // unknown options or bad values are non-fatal, see encx264.c
+ param_parse(param, key, str);
free(str);
}
hb_dict_free(&x265_opts);