summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-28 19:31:04 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-28 19:31:04 +0000
commit2d28fdd64cf1aef1a80d87c124f9f60a277391b0 (patch)
tree85d7368aa74cbfbd85c5e7e23e8ca820751fa22c /configure
parenta64160a3bdc601dc45d4ebf47ebbc7faaf4f8095 (diff)
downloadmpv-2d28fdd64cf1aef1a80d87c124f9f60a277391b0.tar.bz2
mpv-2d28fdd64cf1aef1a80d87c124f9f60a277391b0.tar.xz
postprocessing cleanup:
remove opendivx #ifdefs remove rk1 filter remove unused / obsolete stuff add -1,4,2,4,-1 deinterlacing filter (ffmpeg uses that) threadsafe / no more non-const globals some optimizations different strides for Y,U,V possible remove ebx usage (someone really should fix gcc, this is really lame) change the dering filter slightly (tell me if its worse for any files) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7947 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure15
1 files changed, 15 insertions, 0 deletions
diff --git a/configure b/configure
index f05dbe7911..9a59980bfa 100755
--- a/configure
+++ b/configure
@@ -216,6 +216,7 @@ Miscellaneous options:
options with --enable-static="-lslang -lncurses"
--language=xx select a language (for translated messages/gui) [en]
(Available: $LANGUAGES)
+ --enabled-shared-pp install & use shared postprocessing lib
Advanced options:
--enable-mmx build with mmx support [autodetect]
@@ -1006,6 +1007,7 @@ _libdv=auto
_cdparanoia=auto
_big_endian=auto
_freetype=no
+_shared_pp=no
for ac_option do
case "$ac_option" in
@@ -1181,6 +1183,9 @@ for ac_option do
--enable-dga=*) _dga=`echo $ac_option | cut -d '=' -f 2` ;;
--disable-dga) _dga=no ;;
+ --enable-shared-pp) _shared_pp=yes ;;
+ --disable-shared-pp) _shared_pp=no ;;
+
--language=*)
LINGUAS=`echo $ac_option | cut -d '=' -f 2`
;;
@@ -4164,6 +4169,14 @@ else
fi
echores "$_byte_order"
+echocheck "shared postprocess lib"
+if test "$_shared_pp" = yes ; then
+ _ld_pp='-lpostproc'
+else
+ _ld_pp='postproc/libpostproc.a'
+fi
+echores "$_shared_pp"
+
# --------------- GUI specific tests begin -------------------
echocheck "GUI"
echo "$_gui"
@@ -4431,6 +4444,8 @@ STREAMING = $_streaming
STREAMING_LIVE_DOT_COM = $_live
STREAMING_LIB = $_ld_streaming $_ld_live
VIDIX = $_vidix
+PP_LIB = $_ld_pp
+SHARED_PP = $_shared_pp
OPENDIVX = $_opendivx