summaryrefslogtreecommitdiff
path: root/cmdutils.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-02-23 17:17:01 +0100
committerDiego Biurrun <diego@biurrun.de>2012-02-23 19:36:16 +0100
commitb315042c8ce984bec431c5965120853a843cbfa5 (patch)
tree0860cd8e9954b7cdff910633b272022ca1436f71 /cmdutils.c
parent01cb62aba2503b4173f101154f9f840f04f9c7f8 (diff)
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 'cmdutils.c')
-rw-r--r--cmdutils.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/cmdutils.c b/cmdutils.c
index 8ee2cddf68..985931cce6 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -33,9 +33,6 @@
#include "libavfilter/avfilter.h"
#include "libavdevice/avdevice.h"
#include "libswscale/swscale.h"
-#if CONFIG_POSTPROC
-#include "libpostproc/postprocess.h"
-#endif
#include "libavutil/avstring.h"
#include "libavutil/mathematics.h"
#include "libavutil/parseutils.h"
@@ -496,9 +493,6 @@ static void print_all_libs_info(int flags, int level)
PRINT_LIB_INFO(avdevice, AVDEVICE, flags, level);
PRINT_LIB_INFO(avfilter, AVFILTER, flags, level);
PRINT_LIB_INFO(swscale, SWSCALE, flags, level);
-#if CONFIG_POSTPROC
- PRINT_LIB_INFO(postproc, POSTPROC, flags, level);
-#endif
}
void show_banner(void)