diff options
author | Koop Mast <kwm@FreeBSD.org> | 2013-02-08 00:17:38 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2013-02-08 00:17:38 +0000 |
commit | 9d2b10cfa80905606f603eeb061575b0f09f2303 (patch) | |
tree | d2a3ccf9a099d8fae7378cdf2632fd47001ad575 /multimedia | |
parent | 237fa6c0d4f0bdc61e38ed22ff48011a7e7c06d0 (diff) | |
download | ports-9d2b10cfa80905606f603eeb061575b0f09f2303.tar.gz ports-9d2b10cfa80905606f603eeb061575b0f09f2303.zip |
Notes
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/gstreamer-plugins-good/files/patch-gst_goom_mmx.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/multimedia/gstreamer-plugins-good/files/patch-gst_goom_mmx.h b/multimedia/gstreamer-plugins-good/files/patch-gst_goom_mmx.h new file mode 100644 index 000000000000..3016bfb23d3d --- /dev/null +++ b/multimedia/gstreamer-plugins-good/files/patch-gst_goom_mmx.h @@ -0,0 +1,18 @@ +--- gst/goom/mmx.h.orig 2011-12-11 19:48:11.000000000 +0100 ++++ gst/goom/mmx.h 2013-02-08 00:54:14.000000000 +0100 +@@ -715,13 +715,13 @@ void zoom_filter_xmmx (int prevX, int pr + { \ + printf("emms()\n"); \ + __asm__ __volatile__ ("emms" \ +- "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)"); \ ++ "st", "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)"); \ + } + + #else + + #define emms() __asm__ __volatile__ ("emms"::: \ +- "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)") ++ "st", "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)") + + #endif + |