[MPlayer-cvslog] CVS: main/libmpcodecs Makefile, 1.158, 1.159 ad_ffmpeg.c, 1.21, 1.22 vd_ffmpeg.c, 1.157, 1.158 ve_lavc.c, 1.130, 1.131 ve_x264.c, 1.44, 1.45 vf_fspp.c, 1.12, 1.13 vf_lavc.c, 1.19, 1.20 vf_lavcdeint.c, 1.8, 1.9 vf_qp.c, 1.5, 1.6 vf_spp.c, 1.33, 1.34 vf_uspp.c, 1.4, 1.5

Diego Biurrun CVS syncmail at mplayerhq.hu
Wed Feb 1 00:36:15 CET 2006


CVS change done by Diego Biurrun CVS

Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv31282

Modified Files:
	Makefile ad_ffmpeg.c vd_ffmpeg.c ve_lavc.c ve_x264.c vf_fspp.c 
	vf_lavc.c vf_lavcdeint.c vf_qp.c vf_spp.c vf_uspp.c 
Log Message:
Move conditional compilation out of the code and into the build system.


Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/Makefile,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -r1.158 -r1.159
--- Makefile	27 Jan 2006 00:06:38 -0000	1.158
+++ Makefile	31 Jan 2006 23:36:12 -0000	1.159
@@ -21,7 +21,6 @@
                ad_dmo.c \
                ad_dshow.c \
                ad_faad.c \
-               ad_ffmpeg.c \
                ad_libdv.c \
                ad_libmad.c \
                ad_libvorbis.c \
@@ -29,6 +28,13 @@
                ad_realaud.c \
                ad_twin.c \
 
+ifeq ($(CONFIG_LIBAVCODEC),yes)
+AUDIO_SRCS_OPT+=ad_ffmpeg.c
+endif
+ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
+AUDIO_SRCS_OPT+=ad_ffmpeg.c
+endif
+
 AUDIO_SRCS=dec_audio.c \
            ad.c \
            $(AUDIO_SRCS_LIB) \
@@ -49,7 +55,6 @@
 VIDEO_SRCS_OPT=vd_divx4.c \
                vd_dmo.c \
                vd_dshow.c \
-               vd_ffmpeg.c\
                vd_libdv.c \
                vd_odivx.c \
                vd_qtvideo.c \
@@ -62,6 +67,13 @@
                vd_xvid.c \
                vd_zrmjpeg.c \
 
+ifeq ($(CONFIG_LIBAVCODEC),yes)
+VIDEO_SRCS_OPT+=vd_ffmpeg.c
+endif
+ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
+VIDEO_SRCS_OPT+=vd_ffmpeg.c
+endif
+
 VIDEO_SRCS=dec_video.c \
            vd.c \
            $(VIDEO_SRCS_NAT) \
@@ -94,7 +106,6 @@
              vf_flip.c \
              vf_format.c \
              vf_framestep.c \
-             vf_fspp.c \
              vf_halfpack.c \
              vf_harddup.c \
              vf_hqdn3d.c \
@@ -103,8 +114,6 @@
              vf_ilpack.c \
              vf_ivtc.c \
              vf_kerndeint.c \
-             vf_lavc.c \
-             vf_lavcdeint.c \
              vf_mirror.c \
              vf_noformat.c \
              vf_noise.c \
@@ -113,7 +122,6 @@
              vf_phase.c \
              vf_pp7.c \
              vf_pullup.c \
-             vf_qp.c \
              vf_rectangle.c \
              vf_remove_logo.c \
              vf_rgb2bgr.c \
@@ -124,7 +132,6 @@
              vf_smartblur.c \
              vf_softpulldown.c \
              vf_softskip.c \
-             vf_spp.c \
              vf_swapuv.c \
              vf_telecine.c \
              vf_test.c \
@@ -132,13 +139,19 @@
              vf_tile.c \
              vf_tinterlace.c \
              vf_unsharp.c \
-             vf_uspp.c \
              vf_vo.c \
              vf_yuvcsp.c \
              vf_yuy2.c \
              vf_yvu9.c \
              vf_screenshot.c \
 
+VFILTER_LAVC_SRCS += vf_uspp.c \
+                     vf_fspp.c \
+                     vf_lavc.c \
+                     vf_lavcdeint.c \
+                     vf_qp.c \
+                     vf_spp.c \
+
 ifeq ($(CONFIG_LIBPOSTPROC),yes)
 VFILTER_SRCS += vf_pp.c
 endif
@@ -146,20 +159,36 @@
 VFILTER_SRCS += vf_pp.c
 endif
 
+ifeq ($(CONFIG_LIBAVCODEC),yes)
+VFILTER_SRCS += $(VFILTER_LAVC_SRCS)
+endif
+ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
+VFILTER_SRCS += $(VFILTER_LAVC_SRCS)
+endif
+
 ENCODER_SRCS=ae.c \
              ae_pcm.c \
              ve.c \
              ve_divx4.c \
-             ve_lavc.c \
              ve_libdv.c \
              ve_nuv.c \
              ve_qtvideo.c \
              ve_raw.c \
              ve_vfw.c \
-             ve_x264.c \
              ve_xvid4.c \
              ve_xvid.c \
 
+ifeq ($(CONFIG_LIBAVCODEC),yes)
+ENCODER_SRCS+=ve_lavc.c
+endif
+ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
+ENCODER_SRCS+=ve_lavc.c
+endif
+
+ifeq ($(X264),yes)
+ENCODER_SRCS+=ve_x264.c
+endif
+
 NATIVE_SRCS=native/minilzo.c \
             native/nuppelvideo.c \
             native/RTjpegN.c \
@@ -202,7 +231,6 @@
 LIBAV_INC += -I../libavcodec
 ENCODER_SRCS += ae_lavc.c
 endif
-
 ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
 ENCODER_SRCS += ae_lavc.c
 endif

Index: ad_ffmpeg.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/ad_ffmpeg.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ad_ffmpeg.c	19 Dec 2005 19:38:28 -0000	1.21
+++ ad_ffmpeg.c	31 Jan 2006 23:36:12 -0000	1.22
@@ -6,8 +6,6 @@
 #include "mp_msg.h"
 #include "help_mp.h"
 
-#ifdef USE_LIBAVCODEC
-
 #include "ad_internal.h"
 
 #include "bswap.h"
@@ -166,7 +164,3 @@
     }
   return len;
 }
-
-#endif
-
-

Index: vd_ffmpeg.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_ffmpeg.c,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -r1.157 -r1.158
--- vd_ffmpeg.c	22 Jan 2006 18:11:35 -0000	1.157
+++ vd_ffmpeg.c	31 Jan 2006 23:36:12 -0000	1.158
@@ -7,8 +7,6 @@
 #include "mp_msg.h"
 #include "help_mp.h"
 
-#ifdef USE_LIBAVCODEC
-
 #include "bswap.h"
 
 #include "vd_internal.h"
@@ -1121,5 +1119,3 @@
 }
 
 #endif // HAVE_XVMC
-
-#endif

Index: ve_lavc.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/ve_lavc.c,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ve_lavc.c	26 Jan 2006 19:32:06 -0000	1.130
+++ ve_lavc.c	31 Jan 2006 23:36:12 -0000	1.131
@@ -11,8 +11,6 @@
 
 #include "config.h"
 
-#ifdef USE_LIBAVCODEC
-
 #include "mp_msg.h"
 #include "help_mp.h"
 
@@ -1089,4 +1087,3 @@
 };
 
 //===========================================================================//
-#endif

Index: ve_x264.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/ve_x264.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ve_x264.c	26 Jan 2006 19:32:06 -0000	1.44
+++ ve_x264.c	31 Jan 2006 23:36:12 -0000	1.45
@@ -33,8 +33,6 @@
 #include "config.h"
 #include "mp_msg.h"
 
-#ifdef HAVE_X264
-
 #include "m_option.h"
 #include "codec-cfg.h"
 #include "stream.h"
@@ -553,4 +551,3 @@
     "(C) 2004 LINUX4MEDIA GmbH; (C) 2004 Ark Linux",
     vf_open
 };
-#endif

Index: vf_fspp.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_fspp.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- vf_fspp.c	13 Jan 2006 00:23:31 -0000	1.12
+++ vf_fspp.c	31 Jan 2006 23:36:12 -0000	1.13
@@ -38,8 +38,6 @@
 
 #include "config.h"
 
-#ifdef USE_LIBAVCODEC
-
 #include "mp_msg.h"
 #include "cpudetect.h"
 
@@ -2129,5 +2127,3 @@
 }
 
 #endif // HAVE_MMX
-
-#endif //USE_LIBAVCODEC

Index: vf_lavc.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_lavc.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- vf_lavc.c	18 Nov 2005 14:39:23 -0000	1.19
+++ vf_lavc.c	31 Jan 2006 23:36:12 -0000	1.20
@@ -7,8 +7,6 @@
 #include "mp_msg.h"
 #include "help_mp.h"
 
-#ifdef USE_LIBAVCODEC
-
 #include "img_format.h"
 #include "mp_image.h"
 #include "vf.h"
@@ -230,4 +228,3 @@
 };
 
 //===========================================================================//
-#endif

Index: vf_lavcdeint.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_lavcdeint.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- vf_lavcdeint.c	18 Nov 2005 14:39:23 -0000	1.8
+++ vf_lavcdeint.c	31 Jan 2006 23:36:12 -0000	1.9
@@ -7,8 +7,6 @@
 #include "mp_msg.h"
 #include "help_mp.h"
 
-#ifdef USE_LIBAVCODEC
-
 #include "img_format.h"
 #include "mp_image.h"
 #include "vf.h"
@@ -189,6 +187,3 @@
 
 
 //===========================================================================//
-
-#endif /* USE_LIBAVCODEC */
-

Index: vf_qp.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_qp.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vf_qp.c	13 Jan 2006 00:23:31 -0000	1.5
+++ vf_qp.c	31 Jan 2006 23:36:12 -0000	1.6
@@ -24,8 +24,6 @@
 
 #include "config.h"
 
-#ifdef USE_LIBAVCODEC
-
 #include "mp_msg.h"
 #include "cpudetect.h"
 
@@ -196,5 +194,3 @@
     open,
     NULL
 };
-
-#endif //USE_LIBAVCODEC

Index: vf_spp.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_spp.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- vf_spp.c	13 Jan 2006 00:23:31 -0000	1.33
+++ vf_spp.c	31 Jan 2006 23:36:12 -0000	1.34
@@ -32,8 +32,6 @@
 
 #include "config.h"
 
-#ifdef USE_LIBAVCODEC
-
 #include "mp_msg.h"
 #include "cpudetect.h"
 
@@ -629,5 +627,3 @@
     open,
     NULL
 };
-
-#endif //USE_LIBAVCODEC

Index: vf_uspp.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_uspp.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vf_uspp.c	13 Jan 2006 00:23:31 -0000	1.4
+++ vf_uspp.c	31 Jan 2006 23:36:12 -0000	1.5
@@ -24,8 +24,6 @@
 
 #include "config.h"
 
-#ifdef USE_LIBAVCODEC
-
 #include "mp_msg.h"
 #include "cpudetect.h"
 
@@ -408,5 +406,3 @@
     open,
     NULL
 };
-
-#endif //USE_LIBAVCODEC




More information about the MPlayer-cvslog mailing list