comparison libmpcodecs/Makefile @ 17882:8dd9503e4d19

compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
author nicodvb
date Thu, 16 Mar 2006 21:56:24 +0000
parents cc6cf286e337
children 2fa15de8806b
comparison
equal deleted inserted replaced
17881:76b492415fd6 17882:8dd9503e4d19
148 vf_yuvcsp.c \ 148 vf_yuvcsp.c \
149 vf_yuy2.c \ 149 vf_yuy2.c \
150 vf_yvu9.c \ 150 vf_yvu9.c \
151 vf_screenshot.c \ 151 vf_screenshot.c \
152 152
153 VFILTER_LAVC_SRCS += vf_uspp.c \ 153 VFILTER_LAVC_SRCS += vf_lavc.c \
154 vf_fspp.c \
155 vf_lavc.c \
156 vf_lavcdeint.c \ 154 vf_lavcdeint.c \
157 vf_qp.c \ 155
158 vf_spp.c \ 156 VFILTER_LAVC_DSPUTIL_SRCS += vf_uspp.c \
157 vf_fspp.c \
158 vf_qp.c \
159 vf_spp.c \
159 160
160 ifeq ($(CONFIG_LIBPOSTPROC),yes) 161 ifeq ($(CONFIG_LIBPOSTPROC),yes)
161 VFILTER_SRCS += vf_pp.c 162 VFILTER_SRCS += vf_pp.c
162 endif 163 endif
163 ifeq ($(CONFIG_LIBPOSTPROC_SO),yes) 164 ifeq ($(CONFIG_LIBPOSTPROC_SO),yes)
164 VFILTER_SRCS += vf_pp.c 165 VFILTER_SRCS += vf_pp.c
165 endif 166 endif
166 167
167 ifeq ($(CONFIG_LIBAVCODEC),yes) 168 ifeq ($(CONFIG_LIBAVCODEC),yes)
168 VFILTER_SRCS += $(VFILTER_LAVC_SRCS) 169 VFILTER_SRCS += $(VFILTER_LAVC_SRCS)
170 VFILTER_SRCS += $(VFILTER_LAVC_DSPUTIL_SRCS)
169 endif 171 endif
170 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) 172 ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
171 VFILTER_SRCS += $(VFILTER_LAVC_SRCS) 173 VFILTER_SRCS += $(VFILTER_LAVC_SRCS)
172 endif 174 endif
173 175