summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-09-04 22:16:13 +0200
committerwm4 <wm4@nowhere>2015-09-04 22:16:13 +0200
commit23f6f3f50c4ff7a0fb5f294e1cdaa99d0b5f4e69 (patch)
treec31e549b0beaa1e3f77e4bfd8d7454d0c5e0ab95
parent215afe7a41a20d7de1ca96cabfb89b2234b564ff (diff)
downloadmpv-23f6f3f50c4ff7a0fb5f294e1cdaa99d0b5f4e69.tar.bz2
mpv-23f6f3f50c4ff7a0fb5f294e1cdaa99d0b5f4e69.tar.xz
af_lavrresample: add missing include statement
Apparently, this broke compilation with Libav under some circumstances. Looking at it again, it shouldn't have, but this change doesn't hurt anyway.
-rw-r--r--audio/filter/af_lavrresample.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/filter/af_lavrresample.c b/audio/filter/af_lavrresample.c
index 39f39433f3..706ed87eb7 100644
--- a/audio/filter/af_lavrresample.c
+++ b/audio/filter/af_lavrresample.c
@@ -30,6 +30,7 @@
#include <libavutil/opt.h>
#include <libavutil/common.h>
#include <libavutil/samplefmt.h>
+#include <libavutil/channel_layout.h>
#include <libavutil/mathematics.h>
#include "common/common.h"