From owner-svn-ports-all@freebsd.org Mon Jan 4 15:04:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C64AA60D38; Mon, 4 Jan 2016 15:04:56 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 404081D5C; Mon, 4 Jan 2016 15:04:56 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04F4tUN031506; Mon, 4 Jan 2016 15:04:55 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04F4t1I031504; Mon, 4 Jan 2016 15:04:55 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201601041504.u04F4t1I031504@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Mon, 4 Jan 2016 15:04:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405243 - head/multimedia/x264/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 15:04:56 -0000 Author: andrew (src committer) Date: Mon Jan 4 15:04:55 2016 New Revision: 405243 URL: https://svnweb.freebsd.org/changeset/ports/405243 Log: Fix x264 on AArch64. quant-a.S and deblock-a.S have syntax the LLVM assembler complains about. Pull in two upstream changes to fix these until they are on the stable branch. Without these these ports fail to build on AArch64. Approved by: koobs Differential Revision: https://reviews.freebsd.org/D4781 Added: head/multimedia/x264/files/patch-deblock-a.S (contents, props changed) head/multimedia/x264/files/patch-quant-a.S (contents, props changed) Added: head/multimedia/x264/files/patch-deblock-a.S ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/x264/files/patch-deblock-a.S Mon Jan 4 15:04:55 2016 (r405243) @@ -0,0 +1,20 @@ +--- common/aarch64/deblock-a.S.orig 2016-01-04 11:21:40.265233000 +0000 ++++ common/aarch64/deblock-a.S 2016-01-04 11:27:19.291080000 +0000 +@@ -538,7 +538,7 @@ + ret + endfunc + +-.macro h264_loop_filter_chroma_intra, width=16 ++.macro h264_loop_filter_chroma_intra width=16 + uabd v26.16b, v16.16b, v17.16b // abs(p0 - q0) + uabd v27.16b, v18.16b, v16.16b // abs(p1 - p0) + uabd v28.16b, v19.16b, v17.16b // abs(q1 - q0) +@@ -604,7 +604,7 @@ + + transpose4x4.h v18, v16, v17, v19, v26, v27, v28, v29 + +- h264_loop_filter_chroma_intra, width=8 ++ h264_loop_filter_chroma_intra width=8 + + st2 {v16.h,v17.h}[0], [x0], x1 + st2 {v16.h,v17.h}[1], [x0], x1 Added: head/multimedia/x264/files/patch-quant-a.S ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/x264/files/patch-quant-a.S Mon Jan 4 15:04:55 2016 (r405243) @@ -0,0 +1,24 @@ +--- common/aarch64/quant-a.S.orig 2016-01-04 11:28:55.378084000 +0000 ++++ common/aarch64/quant-a.S 2016-01-04 11:30:55.055050000 +0000 +@@ -546,12 +546,10 @@ + sub x0, x0, #2 + .endif + .if \size < 15 +- .equ shiftw, 3 + ld1 {v0.8h}, [x0] + uqxtn v0.8b, v0.8h + cmtst v0.8b, v0.8b, v0.8b + .else +- .equ shiftw, 2 + ld1 {v0.8h,v1.8h}, [x0] + uqxtn v0.8b, v0.8h + uqxtn2 v0.16b, v1.8h +@@ -565,7 +563,7 @@ + + coeff_level_run_start \size + +- coeff_level_run shiftw ++ coeff_level_run (4 - (\size + 1) / 8) + + ret + endfunc