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.

31 lines
748B

  1. include ../config.mak
  2. CFLAGS+=-I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libswscale
  3. OBJS = avfilter.o \
  4. avfiltergraph.o \
  5. avfiltergraphdesc.o \
  6. defaults.o \
  7. # TODO: real conditional compilation
  8. OBJS-yes = vf_crop.o \
  9. vf_fifo.o \
  10. vf_fps.o \
  11. vf_negate.o \
  12. vf_overlay.o \
  13. vf_passthrough.o \
  14. vf_scale.o \
  15. vf_slicify.o \
  16. vf_split.o \
  17. vf_vflip.o \
  18. HEADERS = avfilter.h
  19. EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) -L$(BUILD_ROOT)/libswscale -lswscale$(BUILDSUF) -L$(BUILD_ROOT)/libavcodec -lavcodec$(BUILDSUF) $(EXTRALIBS)
  20. NAME=avfilter
  21. LIBVERSION=$(LAVFILTERVERSION)
  22. LIBMAJOR=$(LAVFILTERMAJOR)
  23. include ../common.mak