[MPlayer-cvslog] r21000 - in trunk: configure libmpcodecs/Makefile libmpcodecs/vd.c libmpcodecs/vd_xvid.c libmpcodecs/ve.c libmpcodecs/ve_xvid.c
diego
subversion at mplayerhq.hu
Sat Nov 18 03:40:19 CET 2006
Author: diego
Date: Sat Nov 18 03:40:19 2006
New Revision: 21000
Removed:
trunk/libmpcodecs/vd_xvid.c
trunk/libmpcodecs/ve_xvid.c
Modified:
trunk/configure
trunk/libmpcodecs/Makefile
trunk/libmpcodecs/vd.c
trunk/libmpcodecs/ve.c
Log:
Remove obsolete Xvid 3 support.
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Sat Nov 18 03:40:19 2006
@@ -275,7 +275,6 @@
--disable-xanim disable XAnim codecs support [enabled]
--disable-real disable RealPlayer codecs support [enabled]
--disable-xvid disable XviD [autodetect]
- --disable-xvid3 disable XviD 3 [autodetect]
--disable-x264 disable x264 [autodetect]
--disable-nut disable libnut [autodetect]
--disable-libavutil disable libavutil [autodetect]
@@ -1659,7 +1658,6 @@
_vidix_internal=auto
_vidix_external=auto
_joystick=no
-_xvid3=auto
_xvid=auto
_x264=auto
_nut=auto
@@ -1922,8 +1920,6 @@
--disable-vidix-external) _vidix_external=no ;;
--enable-joystick) _joystick=yes ;;
--disable-joystick) _joystick=no ;;
- --enable-xvid3) _xvid3=yes ;;
- --disable-xvid3) _xvid3=no ;;
--enable-xvid) _xvid=yes ;;
--disable-xvid) _xvid=no ;;
--enable-x264) _x264=yes ;;
@@ -6409,28 +6405,6 @@
echores "$_bl"
-echocheck "XviD 3"
- if test "$_xvid3" = auto ; then
- cat > $TMPC << EOF
-#include <xvid.h>
-int main(void) { xvid_init(0, 0, 0, 0); return 0; }
-EOF
- _ld_xvid="$_ld_xvid -lxvidcore"
- _xvid3=no
- cc_check $_ld_xvid -lxvidcore $_ld_lm && _xvid3=yes
-fi
-
-if test "$_xvid3" = yes ; then
- _def_xvid3='#define HAVE_XVID3 1'
- _codecmodules="xvid3 $_codecmodules"
-else
- _def_xvid3='#undef HAVE_XVID3'
- _nocodecmodules="xvid3 $_nocodecmodules"
- _ld_xvid=""
-fi
-echores "$_xvid3"
-
-
echocheck "XviD"
if test "$_xvid" = auto ; then
_xvid=no
@@ -7484,7 +7458,6 @@
CONFIG_LIBPOSTPROC_SO = $_libpostproc_so
ZORAN = $_zr
LIBDV = $_libdv
-XVID3 = $_xvid3
XVID4 = $_xvid
X264 = $_x264
LIBNUT = $_nut
@@ -7653,7 +7626,6 @@
#define USE_STREAM_CACHE 1
/* Define if you are using XviD library */
-$_def_xvid3
$_def_xvid
/* Define if you are using the X.264 library */
Modified: trunk/libmpcodecs/Makefile
==============================================================================
--- trunk/libmpcodecs/Makefile (original)
+++ trunk/libmpcodecs/Makefile Sat Nov 18 03:40:19 2006
@@ -107,9 +107,6 @@
ifeq ($(XVID4),yes)
VIDEO_SRCS+=vd_xvid4.c
endif
-ifeq ($(XVID3),yes)
-VIDEO_SRCS+=vd_xvid.c
-endif
ifeq ($(ZORAN),yes)
VIDEO_SRCS+=vd_zrmjpeg.c
endif
@@ -235,9 +232,6 @@
ifeq ($(XVID4),yes)
ENCODER_SRCS+=ve_xvid4.c
endif
-ifeq ($(XVID3),yes)
-ENCODER_SRCS+=ve_xvid.c
-endif
ifeq ($(X264),yes)
ENCODER_SRCS+=ve_x264.c
endif
Modified: trunk/libmpcodecs/vd.c
==============================================================================
--- trunk/libmpcodecs/vd.c (original)
+++ trunk/libmpcodecs/vd.c Sat Nov 18 03:40:19 2006
@@ -90,7 +90,7 @@
#ifdef USE_REALCODECS
&mpcodecs_vd_realvid,
#endif
-#if defined(HAVE_XVID3) || defined(HAVE_XVID4)
+#ifdef HAVE_XVID4
&mpcodecs_vd_xvid,
#endif
#ifdef HAVE_LIBDV095
Modified: trunk/libmpcodecs/ve.c
==============================================================================
--- trunk/libmpcodecs/ve.c (original)
+++ trunk/libmpcodecs/ve.c Sat Nov 18 03:40:19 2006
@@ -32,7 +32,7 @@
&ve_info_libdv,
#endif
&ve_info_raw,
-#if defined(HAVE_XVID3) || defined(HAVE_XVID4)
+#ifdef HAVE_XVID4
&ve_info_xvid,
#endif
&ve_info_nuv,
More information about the MPlayer-cvslog
mailing list