diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-01-25 11:44:19 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-01-25 11:44:19 +0000 |
commit | a20c1fce06f0d7f58e448afa39968bed4a4314a0 (patch) | |
tree | 0e76449f96481a372f12e5595bb4031c4f6f29a9 | |
parent | 9832b23c2ca45379eda65f711f53e3338a49d498 (diff) | |
download | xine-lib-a20c1fce06f0d7f58e448afa39968bed4a4314a0.tar.gz xine-lib-a20c1fce06f0d7f58e448afa39968bed4a4314a0.tar.bz2 |
- mmx optimizations don't use MMXEXT instructions
- be sure to initialize use_asm
CVS patchset: 4003
CVS date: 2003/01/25 11:44:19
-rw-r--r-- | src/post/goom/xine_goom.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/post/goom/xine_goom.c b/src/post/goom/xine_goom.c index 7f8e45dbd..b2b86da86 100644 --- a/src/post/goom/xine_goom.c +++ b/src/post/goom/xine_goom.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_goom.c,v 1.21 2003/01/14 21:00:23 miguelfreitas Exp $ + * $Id: xine_goom.c,v 1.22 2003/01/25 11:44:19 tmattern Exp $ * * GOOM post plugin. * @@ -156,13 +156,13 @@ static void *goom_init_plugin(xine_t *xine, void *data) _("Goom image height in pixels"), NULL, 20, NULL, NULL); + this->use_asm = 0; + #ifdef ARCH_X86 - if (xine_mm_accel() & MM_ACCEL_X86_MMXEXT) { + if (xine_mm_accel() & MM_ACCEL_X86_MMX) { this->use_asm = cfg->register_bool (cfg, "post.goom_use_asm", 1, _("Use Goom asm optimizations"), NULL, 10, NULL, NULL); - } else { - this->use_asm = 0; } #endif |