You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mlt/src/modules/xine/configure

19 lines
322 B

#!/bin/sh
if [ "$help" != "1" ]
then
# Horrible hack
grep mmx /proc/cpuinfo > /dev/null 2>&1
disable_xine=$?
if [ "$disable_xine" = "0" ]
then
echo "deinterlace libmltxine$LIBSUF" >> ../filters.dat
else
echo "- MMX Capabalities not found: disabling xine deinterlacing module"
touch ../disable-xine
fi
fi