summaryrefslogtreecommitdiffstats
path: root/libhb/encx264.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/encx264.c')
-rw-r--r--libhb/encx264.c8
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 )
{