From: Sebastian Dröge Date: Mon, 25 Feb 2008 10:32:35 +0000 (+0000) Subject: gst/goom/plugin_info.c: Use extended MMX for draw_line() too if available, not only... X-Git-Tag: RELEASE-0_10_8~95 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=58a68b1823c7f6c0f995775034fb2b31e2929c12;p=platform%2Fupstream%2Fgst-plugins-good.git 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. --- diff --git a/ChangeLog b/ChangeLog index 80e5ac8..89895f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2008-02-25 Sebastian Dröge + * 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 + * 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 0fba325..420f45a 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!");