comparison libmpcodecs/Makefile @ 19082:a2f20562aac3

Remove support for obsolete and non-free divx4/odivx libraries.
author diego
date Fri, 14 Jul 2006 17:14:16 +0000
parents 7a9a9748e045
children e84360ee61c9
comparison
equal deleted inserted replaced
19081:273bdef43012 19082:a2f20562aac3
101 ifeq ($(LIBDV),yes) 101 ifeq ($(LIBDV),yes)
102 VIDEO_SRCS+=vd_libdv.c 102 VIDEO_SRCS+=vd_libdv.c
103 endif 103 endif
104 ifeq ($(LIBTHEORA),yes) 104 ifeq ($(LIBTHEORA),yes)
105 VIDEO_SRCS+=vd_theora.c 105 VIDEO_SRCS+=vd_theora.c
106 endif
107 ifeq ($(DIVX),yes)
108 VIDEO_SRCS+=vd_odivx.c
109 ifneq ($(OPENDIVX),yes)
110 VIDEO_SRCS+=vd_divx4.c
111 endif
112 endif 106 endif
113 ifeq ($(XVID4),yes) 107 ifeq ($(XVID4),yes)
114 VIDEO_SRCS+=vd_xvid4.c 108 VIDEO_SRCS+=vd_xvid4.c
115 else 109 else
116 ifeq ($(XVID),yes) 110 ifeq ($(XVID),yes)
242 else 236 else
243 ifeq ($(XVID),yes) 237 ifeq ($(XVID),yes)
244 ENCODER_SRCS+=ve_xvid.c 238 ENCODER_SRCS+=ve_xvid.c
245 endif 239 endif
246 endif 240 endif
247 ifeq ($(DIVX4ENCORE),yes)
248 ENCODER_SRCS+=ve_divx4.c
249 endif
250 ifeq ($(X264),yes) 241 ifeq ($(X264),yes)
251 ENCODER_SRCS+=ve_x264.c 242 ENCODER_SRCS+=ve_x264.c
252 endif 243 endif
253 244
254 245