Browse Source

Replace HAVE_BFIN with ARCH_BFIN. Blackfin is a CPU architecture, not an

instruction set extension and configure sets ARCH_BFIN, not HAVE_BFIN.

Originally committed as revision 10572 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 18 years ago
parent
commit
e0a5d77132
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mpegvideo.c

+ 1
- 1
libavcodec/mpegvideo.c View File

@@ -153,7 +153,7 @@ static int DCT_common_init(MpegEncContext *s)
MPV_common_init_armv4l(s);
#elif defined(ARCH_POWERPC)
MPV_common_init_ppc(s);
#elif defined(HAVE_BFIN)
#elif defined(ARCH_BFIN)
MPV_common_init_bfin(s);
#endif



Loading…
Cancel
Save