From ec2f6f4f93df9fb7c67a172669a2b629335391d5 Mon Sep 17 00:00:00 2001 From: Fiona Glaser Date: Mon, 31 Aug 2009 22:44:45 -0700 Subject: [PATCH] Get rid of "CBR" descriptor from qcomp Though technically accurate in some vague way, I have never actually seen this option used correctly, rather it has been used by hundreds of people who can't read the documentation and believe that qcomp=0 is what should be used for CBR encoding. --- x264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x264.c b/x264.c index b7083c02..76e53072 100644 --- a/x264.c +++ b/x264.c @@ -233,7 +233,7 @@ static void Help( x264_param_t *defaults, int b_longhelp ) " - 3: Nth pass, overwrites stats file\n" ); H0( " --stats Filename for 2 pass stats [\"%s\"]\n", defaults->rc.psz_stat_out ); H0( " --no-mbtree Disable mb-tree ratecontrol.\n"); - H0( " --qcomp QP curve compression: 0.0 => CBR, 1.0 => CQP [%.2f]\n", defaults->rc.f_qcompress ); + H1( " --qcomp QP curve compression [%.2f]\n", defaults->rc.f_qcompress ); H1( " --cplxblur Reduce fluctuations in QP (before curve compression) [%.1f]\n", defaults->rc.f_complexity_blur ); H1( " --qblur Reduce fluctuations in QP (after curve compression) [%.1f]\n", defaults->rc.f_qblur ); H0( " --zones //... Tweak the bitrate of some regions of the video\n" ); -- 2.50.1