diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-05-17 08:05:17 -0400 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-05-17 08:05:17 -0400 |
commit | 45c447a48cb29542c7467a87d4710cb839ad055e (patch) | |
tree | 4b0a4e41605887db00e28b66ec728c13b3c9bf2e /lib | |
parent | 4e90f3896821002e6083bbac7d3beea8ec778250 (diff) |
Remove the check for libavutil/mem.h and assume it is always present.
This header has existed since 2007 and xbmc will not build with such an old ffmpeg version that does not have it.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/DllAvUtil.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/DllAvUtil.h b/lib/DllAvUtil.h index aa9036d798..aaa5633275 100644 --- a/lib/DllAvUtil.h +++ b/lib/DllAvUtil.h @@ -56,11 +56,7 @@ extern "C" { #include <ffmpeg/avcodec.h> #endif #include <libavutil/opt.h> - #if defined(HAVE_LIBAVUTIL_MEM_H) - #include <libavutil/mem.h> - #else - #include <ffmpeg/mem.h> - #endif + #include <libavutil/mem.h> #include <libavutil/mathematics.h> #else #include "libavutil/avutil.h" |