diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-01-06 22:18:24 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-01-06 22:18:24 +0000 |
commit | 3080a80b5a0791bd8e0fba3ad73fc2bdcd6754e4 (patch) | |
tree | 59a698e26b16aad1f3d5dd3710f128452c427e6d | |
parent | 25a2d4a6f6a81a0910171b73bc320e63dcba3811 (diff) | |
download | xine-lib-3080a80b5a0791bd8e0fba3ad73fc2bdcd6754e4.tar.gz xine-lib-3080a80b5a0791bd8e0fba3ad73fc2bdcd6754e4.tar.bz2 |
Goom optimizations for x86 use Extended MMX.
CVS patchset: 3802
CVS date: 2003/01/06 22:18:24
-rw-r--r-- | src/post/goom/xine_goom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post/goom/xine_goom.c b/src/post/goom/xine_goom.c index 76461d056..70e976bd6 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.19 2003/01/05 22:50:37 tmattern Exp $ + * $Id: xine_goom.c,v 1.20 2003/01/06 22:18:24 tmattern Exp $ * * GOOM post plugin. * @@ -156,7 +156,7 @@ static void *goom_init_plugin(xine_t *xine, void *data) NULL, 20, NULL, NULL); #ifdef ARCH_X86 - if (xine_mm_accel() & MM_ACCEL_X86_MMX) { + if (xine_mm_accel() & MM_ACCEL_X86_MMXEXT) { this->use_asm = cfg->register_bool (cfg, "post.goom_use_asm", 1, _("Use Goom asm optimizations"), NULL, 10, NULL, NULL); |