diff options
author | Rodeo <[email protected]> | 2012-12-09 17:07:56 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-12-09 17:07:56 +0000 |
commit | e8fe42b7aa00a6a8929da0275a75f069729e632d (patch) | |
tree | fd3eb14a03940ef401322ca64a9f0cf6f25dd3c8 /libhb/encx264.c | |
parent | 37e64eff95e99c535eab605432ea90d572be17ea (diff) |
encx264: raise qpmin to 4. 3 has been found to fail on real sources.
Fixes https://forum.handbrake.fr/viewtopic.php?f=5&t=25735
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5094 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/encx264.c')
-rw-r--r-- | libhb/encx264.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libhb/encx264.c b/libhb/encx264.c index c82897df3..abdc235c3 100644 --- a/libhb/encx264.c +++ b/libhb/encx264.c @@ -97,10 +97,12 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job ) param.analyse.b_psnr = 1; param.analyse.b_ssim = 1; - /* QuickTime has trouble with very low QPs (resulting in visual artifacts). + /* + * QuickTime has trouble with very low QPs (resulting in visual artifacts). * Known to affect QuickTime 7, QuickTime X and iTunes. - * Testing shows that a qpmin of 3 works. */ - param.rc.i_qp_min = 3; + * Testing shows that a qpmin of 4 usually works. + */ + param.rc.i_qp_min = 4; if( job->pass == 2 && job->cfr != 1 ) { |