diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-02-23 17:17:01 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-02-23 19:36:16 +0100 |
commit | b315042c8ce984bec431c5965120853a843cbfa5 (patch) | |
tree | 0860cd8e9954b7cdff910633b272022ca1436f71 /Makefile | |
parent | 01cb62aba2503b4173f101154f9f840f04f9c7f8 (diff) | |
download | ffmpeg-b315042c8ce984bec431c5965120853a843cbfa5.tar.gz |
Remove libpostproc.
This library does not fit into Libav as a whole and its code is just a
maintenance burden. Furthermore it is now available as an external project,
which completely obviates any reason to keep it around.
URL: http://git.videolan.org/?p=libpostproc.git
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -20,7 +20,7 @@ $(foreach VAR,$(SILENT),$(eval override $(VAR) = @$($(VAR)))) $(eval INSTALL = @$(call ECHO,INSTALL,$$(^:$(SRC_PATH)/%=%)); $(INSTALL)) endif -ALLFFLIBS = avcodec avdevice avfilter avformat avutil postproc swscale +ALLFFLIBS = avcodec avdevice avfilter avformat avutil swscale IFLAGS := -I. -I$(SRC_PATH) CPPFLAGS := $(IFLAGS) $(CPPFLAGS) @@ -72,7 +72,6 @@ FFLIBS-$(CONFIG_AVDEVICE) += avdevice FFLIBS-$(CONFIG_AVFILTER) += avfilter FFLIBS-$(CONFIG_AVFORMAT) += avformat FFLIBS-$(CONFIG_AVCODEC) += avcodec -FFLIBS-$(CONFIG_POSTPROC) += postproc FFLIBS-$(CONFIG_SWSCALE) += swscale FFLIBS := avutil |