Browse Source

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
tags/v0.5
Diego Biurrun 17 years ago
parent
commit
ebb160a0b0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/i386/dsputil_mmx.c

+ 1
- 1
libavcodec/i386/dsputil_mmx.c View File

@@ -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


Loading…
Cancel
Save