blob: 4f7e119822d31e5448b9aee6c85ef583978fafe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
diff -ur xine-lib/src/libffmpeg/libavcodec/avcodec.h xine-lib/src/libffmpeg/libavcodec/avcodec.h
--- xine-lib/src/libffmpeg/libavcodec/avcodec.h
+++ xine-lib/src/libffmpeg/libavcodec/avcodec.h
@@ -31,7 +31,11 @@
extern "C" {
#endif
-#include "avutil.h"
+#ifdef HAVE_FFMPEG_AVUTIL_H
+# include "avutil.h"
+#else
+# include "libavutil/avutil.h"
+#endif
#include <sys/types.h> /* size_t */
#define AV_STRINGIFY(s) AV_TOSTRING(s)
|