summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-03-30 04:01:17 +0100
committerwm4 <wm4@nowhere>2013-03-30 04:01:17 +0100
commitd39b131bde2f90c1607e1d9292c1a4ce291eb148 (patch)
tree8b06c3e2db6b9e8964608e9d79c03e38abf18f16 /video
parent624fe1736ea9d088bfa1490d60a31868418561fc (diff)
downloadmpv-d39b131bde2f90c1607e1d9292c1a4ce291eb148.tar.bz2
mpv-d39b131bde2f90c1607e1d9292c1a4ce291eb148.tar.xz
gl_video: add some missing includes
On most platforms, they are recursively included, but not all.
Diffstat (limited to 'video')
-rw-r--r--video/out/gl_video.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/video/out/gl_video.c b/video/out/gl_video.c
index 22f4100e9a..875eb7eb38 100644
--- a/video/out/gl_video.c
+++ b/video/out/gl_video.c
@@ -21,8 +21,16 @@
*/
#include <assert.h>
+#include <math.h>
+#include <stdbool.h>
+#include <string.h>
+#include <assert.h>
+
+#include <libavutil/common.h>
#include "gl_video.h"
+
+#include "core/bstr.h"
#include "gl_common.h"
#include "gl_osd.h"
#include "filter_kernels.h"