Commit a8150374 authored by Diego Biurrun's avatar Diego Biurrun

Classify mlib as a configurable option, not as a hardware feature.

Originally committed as revision 12589 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5ce265a1
......@@ -658,6 +658,7 @@ CONFIG_LIST="
libx264
libxvid
memalign_hack
mlib
mpegaudio_hp
network
nonfree
......@@ -748,7 +749,6 @@ HAVE_LIST="
malloc_h
memalign
mkstemp
mlib
pld
ppc64
round
......@@ -1027,8 +1027,6 @@ for opt do
;;
--cpu=*) cpu="$optval"
;;
--enable-mlib) enable mlib
;;
--disable-devices) disable $INDEV_LIST $OUTDEV_LIST
;;
--enable-debug=*) debuglevel="$optval"
......
......@@ -410,7 +410,7 @@ ASM_OBJS-$(HAVE_ARMV6) += armv4l/simple_idct_armv6.o \
OBJS-$(HAVE_VIS) += sparc/dsputil_vis.o \
sparc/simple_idct_vis.o \
OBJS-$(HAVE_MLIB) += mlib/dsputil_mlib.o \
OBJS-$(CONFIG_MLIB) += mlib/dsputil_mlib.o \
OBJS-$(ARCH_ALPHA) += alpha/dsputil_alpha.o \
alpha/motion_est_alpha.o \
......
......@@ -125,7 +125,7 @@ int ff_dct_common_init(MpegEncContext *s)
MPV_common_init_mmx(s);
#elif defined(ARCH_ALPHA)
MPV_common_init_axp(s);
#elif defined(HAVE_MLIB)
#elif defined(CONFIG_MLIB)
MPV_common_init_mlib(s);
#elif defined(HAVE_MMI)
MPV_common_init_mmi(s);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment