summaryrefslogtreecommitdiff
path: root/libavcodec/x86/mpegvideo_mmx.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-04-04 13:20:53 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-04-04 13:20:53 +0000
commit6b4343616cf425e803b3cba2d898b611de3bbf02 (patch)
tree82974c5ebb63a1a0f5b6ead2e97ca34ef9f1fa46 /libavcodec/x86/mpegvideo_mmx.c
parent1b2120c39db33976eaa8ea1abb9fd67a19b00a36 (diff)
Rename FF_MM_MMXEXT to FF_MM_MMX2, for both clarity and consistency
with libswscale. Originally committed as revision 18330 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/mpegvideo_mmx.c')
-rw-r--r--libavcodec/x86/mpegvideo_mmx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/mpegvideo_mmx.c b/libavcodec/x86/mpegvideo_mmx.c
index cbd5a17e7f..5deb68d28d 100644
--- a/libavcodec/x86/mpegvideo_mmx.c
+++ b/libavcodec/x86/mpegvideo_mmx.c
@@ -650,7 +650,7 @@ void MPV_common_init_mmx(MpegEncContext *s)
#endif
if(mm_flags & FF_MM_SSE2){
s->dct_quantize= dct_quantize_SSE2;
- } else if(mm_flags & FF_MM_MMXEXT){
+ } else if(mm_flags & FF_MM_MMX2){
s->dct_quantize= dct_quantize_MMX2;
} else {
s->dct_quantize= dct_quantize_MMX;