diff options
author | sr55 <[email protected]> | 2019-11-09 11:45:20 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2019-11-09 11:45:20 +0000 |
commit | fdb82e94afb69e0db862800de474e493503ab21e (patch) | |
tree | bf5a75547fe3ec6b9c1645ba1f8cab525b6b69de /libhb | |
parent | 5e15aece8038c7f7092d4c9fceed2366868fb48c (diff) |
Nvenc: Unbound rate control removing qmin and qmax. Should reduce file sizes in some circumstances. #2392
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/encavcodec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libhb/encavcodec.c b/libhb/encavcodec.c index a47ca7ce2..f462650c8 100644 --- a/libhb/encavcodec.c +++ b/libhb/encavcodec.c @@ -364,8 +364,6 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job ) av_dict_set( &av_opts, "rc", "vbr_hq", 0 ); av_dict_set( &av_opts, "cq", quality, 0 ); - av_dict_set( &av_opts, "qmin", quality, 0 ); - av_dict_set( &av_opts, "qmax", quality, 0 ); // further Advanced Quality Settings in Constant Quality Mode av_dict_set( &av_opts, "init_qpP", quality, 0 ); |