mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-05 14:26:17 +00:00
18 lines
561 B
Makefile
18 lines
561 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
|
|
|
|
include $(SUBDIR)../subdir.mak
|