mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
Add movie file video source filter.
Commited in SoC by Víctor Paesa on 2008-01-31 20:55:50 Originally committed as revision 11954 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
223c84acf4
commit
0d6423514b
@ -1,6 +1,6 @@
|
||||
include ../config.mak
|
||||
|
||||
CFLAGS+=-I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libswscale
|
||||
CFLAGS+=-I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libswscale
|
||||
|
||||
OBJS = avfilter.o \
|
||||
avfiltergraph.o \
|
||||
@ -25,12 +25,18 @@ OBJS-yes = vf_crop.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)
|
||||
|
Loading…
Reference in New Issue
Block a user