diff options
-rw-r--r-- | libhb/encx265.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libhb/encx265.c b/libhb/encx265.c index e3160c589..ad9f5ff86 100644 --- a/libhb/encx265.c +++ b/libhb/encx265.c @@ -198,12 +198,8 @@ int encx265Init(hb_work_object_t *w, hb_job_t *job) 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); |