summaryrefslogtreecommitdiffstats
path: root/gst/goom
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-02-25 10:32:35 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-02-25 10:32:35 +0000
commit58a68b1823c7f6c0f995775034fb2b31e2929c12 (patch)
tree40da72025a5bf147c971a466a07eefff00d51d46 /gst/goom
parentcfee7319388dcafac9a5464606341c0d4b589122 (diff)
gst/goom/plugin_info.c: Use extended MMX for draw_line() too if available, not only normal MMX.
Original commit message from CVS: * gst/goom/plugin_info.c: (setOptimizedMethods): Use extended MMX for draw_line() too if available, not only normal MMX.
Diffstat (limited to 'gst/goom')
-rw-r--r--gst/goom/plugin_info.c2
1 files changed, 1 insertions, 1 deletions
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!");