diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-06-28 21:12:00 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-06-28 21:12:00 +0000 |
commit | 50f70541d36b3ff477b63b3ec754e28ace824d8e (patch) | |
tree | 9c57c11488553c74e39cd1ffb08b8044da5c2661 /libavcodec/x86/vp8dsp-init.c | |
parent | 2209ffacb974db22c8798a9ca9f3754efec41bc4 (diff) | |
download | ffmpeg-50f70541d36b3ff477b63b3ec754e28ace824d8e.tar.gz |
Change MMXEXT to MMX2, MMXEXT is deprecated
Originally committed as revision 23865 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/vp8dsp-init.c')
-rw-r--r-- | libavcodec/x86/vp8dsp-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/vp8dsp-init.c b/libavcodec/x86/vp8dsp-init.c index 308651d80a..7bb97ae3f8 100644 --- a/libavcodec/x86/vp8dsp-init.c +++ b/libavcodec/x86/vp8dsp-init.c @@ -236,7 +236,7 @@ av_cold void ff_vp8dsp_init_x86(VP8DSPContext* c) /* note that 4-tap width=16 functions are missing because w=16 * is only used for luma, and luma is always a copy or sixtap. */ - if (mm_flags & FF_MM_MMXEXT) { + if (mm_flags & FF_MM_MMX2) { VP8_LUMA_MC_FUNC(0, 16, mmxext); VP8_MC_FUNC(1, 8, mmxext); VP8_MC_FUNC(1, 4, mmxext); |