Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Aug 2012 17:10:15 +0000 (UTC)
From:      Juergen Lock <nox@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r303344 - head/multimedia/libxine/files
Message-ID:  <201208291710.q7THAFlu083209@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nox
Date: Wed Aug 29 17:10:15 2012
New Revision: 303344
URL: http://svn.freebsd.org/changeset/ports/303344

Log:
  Fix build on non-x86.
  
  Submitted by:	jhibbits
  Obtained from:	http://anonscm.debian.org/hg/xine-lib/xine-lib-1.2/rev/b0df4b6003ad

Added:
  head/multimedia/libxine/files/patch-b0df4b6003ad   (contents, props changed)

Added: head/multimedia/libxine/files/patch-b0df4b6003ad
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/libxine/files/patch-b0df4b6003ad	Wed Aug 29 17:10:15 2012	(r303344)
@@ -0,0 +1,45 @@
+
+# HG changeset patch
+# User Petri Hintukainen <phintuka@users.sourceforge.net>
+# Date 1339310702 -10800
+# Node ID b0df4b6003ad2b7454059c2d82ef7f8f29e48e9e
+# Parent  52a99e60c2c9aa7e03be894b4396f229f881025c
+Fix building on non-x86 systems
+
+diff -r 52a99e60c2c9 -r b0df4b6003ad src/post/deinterlace/plugins/greedy2frame_template.c
+--- src/post/deinterlace/plugins/greedy2frame_template.c	Sat Jun 09 18:58:05 2012 +0100
++++ src/post/deinterlace/plugins/greedy2frame_template.c	Sun Jun 10 09:45:02 2012 +0300
+@@ -85,6 +85,7 @@
+ */
+ 
+ 
++#if defined(ARCH_X86) || defined(ARCH_X86_64)
+ #if !defined(MASKS_DEFINED)
+ #define MASKS_DEFINED
+ static const mmx_t Mask = { uq: 0x7f7f7f7f7f7f7f7fll };
+@@ -92,6 +93,7 @@
+ static const mmx_t GreedyTwoFrameThreshold = { ub: {TP, TP, TP, TP} };
+ #undef TP
+ #endif
++#endif
+ 
+ #if defined(IS_MMXEXT)
+ static void DeinterlaceGreedy2Frame_MMXEXT(uint8_t *output, int outstride,
+diff -r 52a99e60c2c9 -r b0df4b6003ad src/post/deinterlace/plugins/greedy2frame_template_sse2.c
+--- src/post/deinterlace/plugins/greedy2frame_template_sse2.c	Sat Jun 09 18:58:05 2012 +0100
++++ src/post/deinterlace/plugins/greedy2frame_template_sse2.c	Sun Jun 10 09:45:02 2012 +0300
+@@ -84,11 +84,12 @@
+ **   B0    |         |    B1   |         |
+ */
+ 
+-
++#if defined(ARCH_X86) || defined(ARCH_X86_64)
+ static const sse_t Mask128 = { uq: { 0x7f7f7f7f7f7f7f7fll, 0x7f7f7f7f7f7f7f7fll} };
+ #define TP GREEDYTWOFRAMETHRESHOLD, GREEDYTWOFRAMETHRESHOLD2
+ static const sse_t GreedyTwoFrameThreshold128 = { ub: {TP, TP, TP, TP, TP, TP, TP, TP} };
+ #undef TP
++#endif
+ 
+ static void DeinterlaceGreedy2Frame_SSE2(uint8_t *output, int outstride,
+                                          deinterlace_frame_data_t *data,
+



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208291710.q7THAFlu083209>