blob: 38bd9fa409c44752815b114256e945fc93fdfe07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
include ../config.mak
OBJS = allfilters.o \
avfilter.o \
defaults.o \
formats.o \
#OBJS-$(CONFIG_XXX_FILTER) += vf_xxx.o
HEADERS = avfilter.h
FFLIBS = avcodec avutil
FFLIBS-$(CONFIG_SWSCALER) += swscale
FFLIBS-$(CONFIG_AVFILTER_LAVF) += avformat
NAME=avfilter
include ../common.mak
|