summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-01-12 01:41:29 +0100
committerKevin Mitchell <kevmitch@gmail.com>2018-01-13 03:26:45 -0800
commit23edaf4412e378dabf061b6e852f7314b38b8020 (patch)
tree1684516fbccb01fb631dea09565b6c3c98998e32
parent83ab873497e8b295d32ee364ef64c4533db5a048 (diff)
downloadmpv-23edaf4412e378dabf061b6e852f7314b38b8020.tar.bz2
mpv-23edaf4412e378dabf061b6e852f7314b38b8020.tar.xz
audio/aframe: add missing include statements
Otherwise it doesn't compile if they are not indirectly included before.
-rw-r--r--audio/aframe.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/audio/aframe.h b/audio/aframe.h
index 9ce19cdee1..8ea676c198 100644
--- a/audio/aframe.h
+++ b/audio/aframe.h
@@ -1,6 +1,8 @@
#pragma once
#include <stdint.h>
+#include <stddef.h>
+#include <stdbool.h>
struct mp_aframe;
struct AVFrame;