diff options
author | nox <nox@FreeBSD.org> | 2012-08-30 01:10:15 +0800 |
---|---|---|
committer | nox <nox@FreeBSD.org> | 2012-08-30 01:10:15 +0800 |
commit | 5aca31d9eb17c44e351fea55be4911aacb495ee9 (patch) | |
tree | e00f68a1305df291eb7a37d05483c52cc8302fef /multimedia | |
parent | 32ab0c88d45deefea6e1aa5373c914c3d34279b6 (diff) | |
download | freebsd-ports-gnome-5aca31d9eb17c44e351fea55be4911aacb495ee9.tar.gz freebsd-ports-gnome-5aca31d9eb17c44e351fea55be4911aacb495ee9.tar.zst freebsd-ports-gnome-5aca31d9eb17c44e351fea55be4911aacb495ee9.zip |
Fix build on non-x86.
Submitted by: jhibbits
Obtained from: http://anonscm.debian.org/hg/xine-lib/xine-lib-1.2/rev/b0df4b6003ad
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/libxine/files/patch-b0df4b6003ad | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/multimedia/libxine/files/patch-b0df4b6003ad b/multimedia/libxine/files/patch-b0df4b6003ad new file mode 100644 index 000000000000..c8938e6d8f3a --- /dev/null +++ b/multimedia/libxine/files/patch-b0df4b6003ad @@ -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, + |