aboutsummaryrefslogtreecommitdiff
path: root/lib/DllAvUtil.h
diff options
context:
space:
mode:
authorMemphiz <memphis@machzwo.de>2012-06-11 18:25:03 +0200
committerMemphiz <memphis@machzwo.de>2012-06-11 18:25:03 +0200
commit7d363cd3415ee38bb6c3024249252f4b8f9c1713 (patch)
treea408b56ea79d1f3655517ce18b1c132c8f65d1cc /lib/DllAvUtil.h
parent4ec793f425ea40d2be09581d2a075d40279ce377 (diff)
[ffmpeg/libavutil] - fix compilation when using external ffmpeg/libav after e064049 - fixes #13096
Diffstat (limited to 'lib/DllAvUtil.h')
-rw-r--r--lib/DllAvUtil.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/DllAvUtil.h b/lib/DllAvUtil.h
index 336f53732a..f6b78b2918 100644
--- a/lib/DllAvUtil.h
+++ b/lib/DllAvUtil.h
@@ -36,12 +36,16 @@ extern "C" {
#if (defined USE_EXTERNAL_FFMPEG)
#if (defined HAVE_LIBAVUTIL_AVUTIL_H)
#include <libavutil/avutil.h>
+ // for av_get_default_channel_layout
+ #include <libavutil/audioconvert.h>
#include <libavutil/crc.h>
#include <libavutil/fifo.h>
// for LIBAVCODEC_VERSION_INT:
#include <libavcodec/avcodec.h>
#elif (defined HAVE_FFMPEG_AVUTIL_H)
#include <ffmpeg/avutil.h>
+ // for av_get_default_channel_layout
+ #include <ffmpeg/audioconvert.h>
#include <ffmpeg/crc.h>
#include <ffmpeg/fifo.h>
// for LIBAVCODEC_VERSION_INT:
@@ -64,6 +68,7 @@ extern "C" {
#endif
#else
#include "libavutil/avutil.h"
+ //for av_get_default_channel_layout
#include "libavutil/audioconvert.h"
#include "libavutil/crc.h"
#include "libavutil/opt.h"