[vlc-devel] commit: x264: when partitions=all, just set partitions~0 (Ilkka Ollakka )

git version control git at videolan.org
Thu Jul 30 13:07:39 CEST 2009


vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Thu Jul 30 14:00:47 2009 +0300| [ca4d2fc9c6b3ff557e21ad47111a5db867db3df0] | committer: Ilkka Ollakka 

x264: when partitions=all, just set partitions~0

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ca4d2fc9c6b3ff557e21ad47111a5db867db3df0
---

 modules/codec/x264.c |    9 +--------
 1 files changed, 1 insertions(+), 8 deletions(-)

diff --git a/modules/codec/x264.c b/modules/codec/x264.c
index b82dadd..782d46a 100644
--- a/modules/codec/x264.c
+++ b/modules/codec/x264.c
@@ -1225,14 +1225,7 @@ static int  Open ( vlc_object_t *p_this )
     }
     else if( !strcmp( val.psz_string, "all" ) )
     {
-        p_sys->param.analyse.inter =
-            X264_ANALYSE_I4x4 |
-            X264_ANALYSE_PSUB16x16 |
-            X264_ANALYSE_BSUB16x16 |
-            X264_ANALYSE_PSUB8x8;
-#ifdef X264_ANALYSE_I8x8
-        p_sys->param.analyse.inter |= X264_ANALYSE_I8x8;
-#endif
+        p_sys->param.analyse.inter = ~0;
     }
     free( val.psz_string );
 




More information about the vlc-devel mailing list