From 9b8ab3f0029058ffe9bf4e785ac5cf7c123b142d Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Thu, 17 Mar 2016 10:41:30 +0100 Subject: [PATCH] Do not activate x264 when building with all codecs because of text relocation issues. --- prepare.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare.py b/prepare.py index 75c5ab375..0fd2c52c4 100755 --- a/prepare.py +++ b/prepare.py @@ -425,7 +425,7 @@ def main(argv=None): additional_args += ["-DENABLE_MPEG4=YES"] additional_args += ["-DENABLE_OPENH264=YES"] additional_args += ["-DENABLE_VPX=YES"] - additional_args += ["-DENABLE_X264=YES"] + #additional_args += ["-DENABLE_X264=YES"] # Do not activate x264 because it has text relocation issues if args.disable_gpl_third_parties is True: additional_args += ["-DENABLE_GPL_THIRD_PARTIES=NO"]