summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--gst/goom/plugin_info.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 80e5ac84..89895f17 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2008-02-25 Sebastian Dröge <slomo@circular-chaos.org>
+ * gst/goom/plugin_info.c: (setOptimizedMethods):
+ Use extended MMX for draw_line() too if available, not only
+ normal MMX.
+
+2008-02-25 Sebastian Dröge <slomo@circular-chaos.org>
+
* ext/jpeg/gstjpeg.c: (plugin_init):
Remove (commented out) smoke typefinder. This is in base now.
diff --git a/gst/goom/plugin_info.c b/gst/goom/plugin_info.c
index 0fba325b..420f45a1 100644
--- a/gst/goom/plugin_info.c
+++ b/gst/goom/plugin_info.c
@@ -47,7 +47,7 @@ setOptimizedMethods (PluginInfo * p)
GST_INFO ("have an x86");
if (cpuFlavour & OIL_IMPL_FLAG_MMXEXT) {
GST_INFO ("Extended MMX detected. Using the fastest methods!");
- p->methods.draw_line = draw_line_mmx;
+ p->methods.draw_line = draw_line_xmmx;
p->methods.zoom_filter = zoom_filter_xmmx;
} else if (cpuFlavour & OIL_IMPL_FLAG_MMX) {
GST_INFO ("MMX detected. Using fast methods!");