diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-14 03:18:09 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-14 03:18:09 +0000 |
commit | 486497e07b4617d9548a5b7347076f1b329bd417 (patch) | |
tree | 62d096ce30698a41d0e1891814636154a962b92f /libavcodec/i386/motion_est_mmx.c | |
parent | be6ed6fff4cace79a2c17094ad716bc0944a4274 (diff) | |
download | ffmpeg-486497e07b4617d9548a5b7347076f1b329bd417.tar.gz |
revert bad checkin
Originally committed as revision 7044 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/motion_est_mmx.c')
-rw-r--r-- | libavcodec/i386/motion_est_mmx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/i386/motion_est_mmx.c b/libavcodec/i386/motion_est_mmx.c index b540dfa711..e33870e0ff 100644 --- a/libavcodec/i386/motion_est_mmx.c +++ b/libavcodec/i386/motion_est_mmx.c @@ -376,7 +376,7 @@ PIX_SAD(mmx2) void dsputil_init_pix_mmx(DSPContext* c, AVCodecContext *avctx) { - if (ff_mm_flags & MM_MMX) { + if (mm_flags & MM_MMX) { c->pix_abs[0][0] = sad16_mmx; c->pix_abs[0][1] = sad16_x2_mmx; c->pix_abs[0][2] = sad16_y2_mmx; @@ -389,7 +389,7 @@ void dsputil_init_pix_mmx(DSPContext* c, AVCodecContext *avctx) c->sad[0]= sad16_mmx; c->sad[1]= sad8_mmx; } - if (ff_mm_flags & MM_MMXEXT) { + if (mm_flags & MM_MMXEXT) { c->pix_abs[0][0] = sad16_mmx2; c->pix_abs[1][0] = sad8_mmx2; |