diff options
author | jstebbins <[email protected]> | 2009-11-11 17:32:37 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-11-11 17:32:37 +0000 |
commit | 076050f1904ac38834352fde96c19685c8a6caea (patch) | |
tree | 007ed9f5534aa593597184235d685b321ddfd7b0 | |
parent | 5cc0054c9778fcb8b952e14abeab94a532e1bf5c (diff) |
update x264 to r1332
Default weightp to none for baseline. user can override.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2922 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | contrib/x264/module.defs | 2 | ||||
-rw-r--r-- | libhb/encx264.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/x264/module.defs b/contrib/x264/module.defs index 35efddb8c..accbb20e2 100644 --- a/contrib/x264/module.defs +++ b/contrib/x264/module.defs @@ -1,7 +1,7 @@ $(eval $(call import.MODULE.defs,X264,x264,PTHREADW32)) $(eval $(call import.CONTRIB.defs,X264)) -X264.FETCH.url = http://download.m0k.org/handbrake/contrib/x264-r1318-fe83a90.tar.gz +X264.FETCH.url = http://download.handbrake.fr/handbrake/contrib/x264-r1332-70f8869.tar.gz X264.EXTRACT.tarbase = x264 X264.CONFIGURE.deps = diff --git a/libhb/encx264.c b/libhb/encx264.c index 56bdd5ff4..bd41839a1 100644 --- a/libhb/encx264.c +++ b/libhb/encx264.c @@ -86,7 +86,7 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job ) x264_param_default( ¶m ); - /* Temporarily default mbtree to off for baseline, + /* Default weightp to off for baseline, overridable through x264 option strings. */ if( job->x264opts != NULL && *job->x264opts != '\0' ) { @@ -124,7 +124,7 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job ) { if( atoi( value ) == 0 ) { - param.rc.b_mb_tree = 0; + param.analyse.i_weighted_pred = X264_WEIGHTP_NONE; } } } |