[gst-cvs] gst-plugins-good: videomixer: Fix assembly register constraints

Sebastian Dröge slomo at kemper.freedesktop.org
Wed Jan 27 07:35:14 PST 2010


Module: gst-plugins-good
Branch: master
Commit: 41b17ec2a785feed4decea1ecafe896d7949a146
URL:    http://cgit.freedesktop.org/gstreamer/gst-plugins-good/commit/?id=41b17ec2a785feed4decea1ecafe896d7949a146

Author: Sebastian Dröge <sebastian.droege at collabora.co.uk>
Date:   Wed Jan 27 16:34:21 2010 +0100

videomixer: Fix assembly register constraints

Fixes bug #608209.

---

 gst/videomixer/blend_mmx.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gst/videomixer/blend_mmx.h b/gst/videomixer/blend_mmx.h
index 90cb33b..df98062 100644
--- a/gst/videomixer/blend_mmx.h
+++ b/gst/videomixer/blend_mmx.h
@@ -191,7 +191,7 @@ _memcpy_u8_mmx (guint8 * dest, const guint8 * src, guint count)
     "jne        4b            \n\t"
     "5:                       \n\t"
     "emms                     \n\t"
-    : "=r" (count), "=r" (dest), "=r" (src)
+    : "=r" (count), "=R" (dest), "=R" (src)
     : "0" (count), "1" (dest), "2" (src)
     : "memory", "ah"
 #ifdef __MMX__





More information about the Gstreamer-commits mailing list