mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-27 01:42:20 +00:00
c38ae71f54
Originally committed as revision 20352 to svn://svn.ffmpeg.org/ffmpeg/trunk
19 lines
605 B
Makefile
19 lines
605 B
Makefile
include $(SUBDIR)../config.mak
|
|
|
|
NAME = avfilter
|
|
FFLIBS = avcodec avutil swscale
|
|
FFLIBS-$(CONFIG_AVFILTER_LAVF) += avformat
|
|
|
|
HEADERS = avfilter.h
|
|
|
|
OBJS = allfilters.o \
|
|
avfilter.o \
|
|
defaults.o \
|
|
formats.o \
|
|
|
|
OBJS-$(CONFIG_CROP_FILTER) += vf_crop.o
|
|
OBJS-$(CONFIG_NULL_FILTER) += vf_null.o
|
|
OBJS-$(CONFIG_VFLIP_FILTER) += vf_vflip.o
|
|
|
|
include $(SUBDIR)../subdir.mak
|