summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-19 16:38:12 +0200
committerwm4 <wm4@nowhere>2014-04-19 17:10:20 +0200
commit061c7eba9770ca5f29dd3c0e5b64a276feca30cc (patch)
tree283943b0255cee92bd84ba27be0d66819caf317e
parentc56b1f2d906042d9dd77798e25b592083454f047 (diff)
downloadmpv-061c7eba9770ca5f29dd3c0e5b64a276feca30cc.tar.bz2
mpv-061c7eba9770ca5f29dd3c0e5b64a276feca30cc.tar.xz
vf_pp: fix include statement
-rw-r--r--video/filter/vf_pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/filter/vf_pp.c b/video/filter/vf_pp.c
index 1d9abd8ce2..23d43eccce 100644
--- a/video/filter/vf_pp.c
+++ b/video/filter/vf_pp.c
@@ -22,6 +22,7 @@
#include <inttypes.h>
#include <errno.h>
#include <assert.h>
+#include <libpostproc/postprocess.h>
#include "config.h"
#include "common/msg.h"
@@ -30,7 +31,6 @@
#include "video/img_format.h"
#include "video/mp_image.h"
#include "vf.h"
-#include "libpostproc/postprocess.h"
struct vf_priv_s {
int pp;