diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-12-22 00:03:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-22 00:03:30 +0000 |
commit | ebb160a0b089de41e8d0d868b0bc8aac0075ef48 (patch) | |
tree | 470e006fd3296ce8c10034bf31559f301a1dff7c | |
parent | 64bfc5845bd4361d91f5bb7a7d76f416ee357ab6 (diff) | |
download | ffmpeg-ebb160a0b089de41e8d0d868b0bc8aac0075ef48.tar.gz |
Use ARCH_X86_32 instead of !ARCH_X86_64, it is more straightforward.
Originally committed as revision 16262 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 0fd4f017f0..2ec8c3255d 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -2866,7 +2866,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx) #if defined(CONFIG_GPL) && defined(HAVE_YASM) if( mm_flags&FF_MM_MMXEXT ){ -#ifndef ARCH_X86_64 +#ifdef ARCH_X86_32 c->h264_v_loop_filter_luma_intra = ff_x264_deblock_v_luma_intra_mmxext; c->h264_h_loop_filter_luma_intra = ff_x264_deblock_h_luma_intra_mmxext; #endif |