summaryrefslogtreecommitdiff
path: root/libavcodec/i386
diff options
context:
space:
mode:
authorFrancisco Javier Cabello Torres <fjcabello@visual-tools.com>2002-11-26 16:26:58 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-11-26 16:26:58 +0000
commit7ca413b44a83d71d879ca9a75be0c88cbe99189b (patch)
tree3457555c9721acd98702df7a74e5752808f179d2 /libavcodec/i386
parentf78ebb51ecef00d1d10098e1540684d73029a662 (diff)
via c3 fix patch by (Francisco Javier Cabello Torres <fjcabello at visual-tools dot com>)
Originally committed as revision 1285 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386')
-rw-r--r--libavcodec/i386/cputest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/i386/cputest.c b/libavcodec/i386/cputest.c
index f186d95c9d..b50d653c4d 100644
--- a/libavcodec/i386/cputest.c
+++ b/libavcodec/i386/cputest.c
@@ -91,7 +91,8 @@ int mm_support(void)
if( edx & ( 1 << 23) )
rval |= MM_MMX;
if( edx & ( 1 << 24) )
- rval |= MM_MMXEXT;
+ rval |= MM_MMXEXT;
+ return rval;
} else if (ebx == 0x69727943 &&
edx == 0x736e4978 &&
ecx == 0x64616574) {