diff options
author | Memphiz <memphis@machzwo.de> | 2012-06-11 18:49:08 +0200 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2012-06-11 18:49:08 +0200 |
commit | b8f5f28ef93c551c1ebe83dc41424bdae989555d (patch) | |
tree | 58ec71249f7e3da8a30862ed7a550c73a6a9aba6 /lib/DllAvUtil.h | |
parent | 7d363cd3415ee38bb6c3024249252f4b8f9c1713 (diff) |
[ffmpeg/libavutil] - another missing include when using external ffmpeg/libav - addition to #13096
Diffstat (limited to 'lib/DllAvUtil.h')
-rw-r--r-- | lib/DllAvUtil.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/DllAvUtil.h b/lib/DllAvUtil.h index f6b78b2918..06125ecb08 100644 --- a/lib/DllAvUtil.h +++ b/lib/DllAvUtil.h @@ -40,6 +40,8 @@ extern "C" { #include <libavutil/audioconvert.h> #include <libavutil/crc.h> #include <libavutil/fifo.h> + // for enum AVSampleFormat + #include <libavutil/samplefmt.h> // for LIBAVCODEC_VERSION_INT: #include <libavcodec/avcodec.h> #elif (defined HAVE_FFMPEG_AVUTIL_H) @@ -48,6 +50,8 @@ extern "C" { #include <ffmpeg/audioconvert.h> #include <ffmpeg/crc.h> #include <ffmpeg/fifo.h> + // for enum AVSampleFormat + #include <ffmpeg/samplefmt.h> // for LIBAVCODEC_VERSION_INT: #include <ffmpeg/avcodec.h> #endif @@ -74,6 +78,7 @@ extern "C" { #include "libavutil/opt.h" #include "libavutil/mem.h" #include "libavutil/fifo.h" + // for enum AVSampleFormat #include "libavutil/samplefmt.h" #endif } |