diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-05-17 13:50:02 -0400 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-05-17 13:50:02 -0400 |
commit | af362f9c6bcf15c12f5dec6d0c84c362d1d4d538 (patch) | |
tree | 2cf140d308fdb9de6c073ac4cd836e6fc2a9ca38 /lib/DllAvFormat.h | |
parent | a760994787d7316a25d85e1883ac494520108e33 (diff) |
Drop support for old ffmpeg header layout.
xbmc requires a ffmpeg version that has the new layout.
Diffstat (limited to 'lib/DllAvFormat.h')
-rw-r--r-- | lib/DllAvFormat.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/DllAvFormat.h b/lib/DllAvFormat.h index 791dc01c0f..c3029db3b6 100644 --- a/lib/DllAvFormat.h +++ b/lib/DllAvFormat.h @@ -37,11 +37,7 @@ extern "C" { #pragma warning(disable:4244) #endif #if (defined USE_EXTERNAL_FFMPEG) - #if (defined HAVE_LIBAVFORMAT_AVFORMAT_H) - #include <libavformat/avformat.h> - #else - #include <ffmpeg/avformat.h> - #endif + #include <libavformat/avformat.h> /* xbmc_read_frame_flush() is defined for us in lib/xbmc-dll-symbols/DllAvFormat.c */ void xbmc_read_frame_flush(AVFormatContext *s); #else |