summaryrefslogtreecommitdiffstats
path: root/video/filter
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-19 17:18:10 +0200
committerwm4 <wm4@nowhere>2014-04-19 17:18:10 +0200
commit85998f6121edb44672f51c4745fb243f3c567d3f (patch)
tree64ff8dd5ed267b9d8e51330ead013ca7ff141564 /video/filter
parent0cff5836c3f410136e3fdb3e2f9e24bb81dd9a87 (diff)
downloadmpv-85998f6121edb44672f51c4745fb243f3c567d3f.tar.bz2
mpv-85998f6121edb44672f51c4745fb243f3c567d3f.tar.xz
Fix some libav* include statements
Fix all include statements of the form: #include "libav.../..." These come from MPlayer times, when FFmpeg was somehow part of the MPlayer build tree, and this form was needed to prefer the local files over system FFmpeg. In some cases, the include statement wasn't needed or could be replaced with mpv defined symbols.
Diffstat (limited to 'video/filter')
-rw-r--r--video/filter/vf_divtc.c1
-rw-r--r--video/filter/vf_noise.c3
-rw-r--r--video/filter/vf_stereo3d.c3
3 files changed, 4 insertions, 3 deletions
diff --git a/video/filter/vf_divtc.c b/video/filter/vf_divtc.c
index 8e21df1f82..662106274c 100644
--- a/video/filter/vf_divtc.c
+++ b/video/filter/vf_divtc.c
@@ -26,7 +26,6 @@
#include "config.h"
#include "common/msg.h"
#include "options/m_option.h"
-#include "libavutil/common.h"
#include "compat/mpbswap.h"
#include "video/img_format.h"
diff --git a/video/filter/vf_noise.c b/video/filter/vf_noise.c
index 178c1c1c8f..3046315219 100644
--- a/video/filter/vf_noise.c
+++ b/video/filter/vf_noise.c
@@ -24,6 +24,8 @@
#include <inttypes.h>
#include <math.h>
+#include <libavutil/mem.h>
+
#include "config.h"
#include "common/msg.h"
#include "options/m_option.h"
@@ -32,7 +34,6 @@
#include "video/mp_image.h"
#include "vf.h"
#include "video/memcpy_pic.h"
-#include "libavutil/mem.h"
#include "vf_lavfi.h"
diff --git a/video/filter/vf_stereo3d.c b/video/filter/vf_stereo3d.c
index e809c54818..4126cd2f4e 100644
--- a/video/filter/vf_stereo3d.c
+++ b/video/filter/vf_stereo3d.c
@@ -23,6 +23,8 @@
#include <stdlib.h>
#include <string.h>
+#include <libavutil/common.h>
+
#include "config.h"
#include "common/msg.h"
#include "options/options.h"
@@ -32,7 +34,6 @@
#include "vf.h"
#include "options/m_option.h"
-#include "libavutil/common.h"
#include "video/memcpy_pic.h"
#include "vf_lavfi.h"