You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- include ../config.mak
-
- CFLAGS+=-I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libswscale
-
- OBJS = avfilter.o \
- avfiltergraph.o \
- avfiltergraphdesc.o \
- defaults.o \
- formats.o \
-
- # TODO: real conditional compilation
- OBJS-yes = vf_crop.o \
- vf_fifo.o \
- vf_fps.o \
- vf_hflip.o \
- vf_negate.o \
- vf_format.o \
- vf_overlay.o \
- vf_rotate.o \
- vf_scale.o \
- vf_setpts.o \
- vf_slicify.o \
- vf_split.o \
- vf_transpose.o \
- vf_vflip.o \
- avfiltergraphfile.o \
-
- OBJS-$(CONFIG_AVFILTER_LAVF) += vsrc_movie.o
-
- HEADERS = avfilter.h
-
- EXTRALIBS := -L$(BUILD_ROOT)/libavcodec -lavcodec$(BUILDSUF) \
- -L$(BUILD_ROOT)/libswscale -lswscale$(BUILDSUF) \
- -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
-
- ifeq ($(CONFIG_AVFILTER_LAVF),yes)
- EXTRALIBS := -L$(BUILD_ROOT)/libavformat -lavformat$(BUILDSUF) $(EXTRALIBS)
- endif
-
- NAME=avfilter
- LIBVERSION=$(LAVFILTERVERSION)
- LIBMAJOR=$(LAVFILTERMAJOR)
-
- include ../common.mak
|