From 25047b4042b18bfd7ef7d40fd48e904852da1ada Mon Sep 17 00:00:00 2001 From: Anton Mitrofanov Date: Tue, 13 Apr 2010 21:25:42 +0400 Subject: [PATCH] Enable --fast-pskip on fast firstpass --- common/common.c | 1 + x264.c | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/common/common.c b/common/common.c index d6c29913..924323a0 100644 --- a/common/common.c +++ b/common/common.c @@ -405,6 +405,7 @@ void x264_param_apply_fastfirstpass( x264_param_t *param ) param->analyse.i_me_method = X264_ME_DIA; param->analyse.i_subpel_refine = X264_MIN( 2, param->analyse.i_subpel_refine ); param->analyse.i_trellis = 0; + param->analyse.b_fast_pskip = 1; } } diff --git a/x264.c b/x264.c index add23b3b..3f46fd93 100644 --- a/x264.c +++ b/x264.c @@ -356,8 +356,9 @@ static void Help( x264_param_t *defaults, int longhelp ) " stillimage,psnr,ssim\n" " - other tunings: fastdecode,zerolatency\n" ); H2( " --slow-firstpass Don't force these faster settings with --pass 1:\n" - " --no-8x8dct --me dia --partitions none --ref 1\n" - " --subme {2 if >2 else unchanged} --trellis 0\n" ); + " --no-8x8dct --me dia --partitions none\n" + " --ref 1 --subme {2 if >2 else unchanged}\n" + " --trellis 0 --fast-pskip\n" ); else H1( " --slow-firstpass Don't force faster settings with --pass 1\n" ); H0( "\n" ); H0( "Frame-type options:\n" ); -- 2.40.0