summaryrefslogtreecommitdiffstats
path: root/av_log.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@mplayer2.org>2012-02-27 18:18:49 +0200
committerUoti Urpala <uau@mplayer2.org>2012-02-27 18:18:49 +0200
commita43a4aafd08650254a4b91fe73f82ec96bf2a6ef (patch)
treea6a1fd4c9630add86b40df14c1f979832e49ff89 /av_log.c
parent9ab501443c37888ee0d286897ebb985b2056ba49 (diff)
downloadmpv-a43a4aafd08650254a4b91fe73f82ec96bf2a6ef.tar.bz2
mpv-a43a4aafd08650254a4b91fe73f82ec96bf2a6ef.tar.xz
configure, build: support compiling without libpostproc
libpostproc has been removed from Libav and the library now exists as a separate project. Because it's not essential, separate it from the Libav library check and allow compiling without it.
Diffstat (limited to 'av_log.c')
-rw-r--r--av_log.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/av_log.c b/av_log.c
index b804cd18d0..63f8fd7dc3 100644
--- a/av_log.c
+++ b/av_log.c
@@ -32,7 +32,6 @@
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libswscale/swscale.h>
-#include <libpostproc/postprocess.h>
static int av_log_level_to_mp_level(int av_level)
{
@@ -134,5 +133,4 @@ void print_libav_versions(void)
print_version("libavcodec", LIBAVCODEC_VERSION_INT, avcodec_version());
print_version("libavformat", LIBAVFORMAT_VERSION_INT, avformat_version());
print_version("libswscale", LIBSWSCALE_VERSION_INT, swscale_version());
- print_version("libpostproc", LIBPOSTPROC_VERSION_INT, postproc_version());
}