[FFmpeg-devel] [PATCH] Fix out-of-tree build with swscale enabled.
Diego 'Flameeyes' Pettenò
flameeyes
Sun Jun 22 21:59:08 CEST 2008
The dependencies were off and FFmpeg failed to build (missing required
avutil.h) without this change.
---
swscale.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/swscale.h b/swscale.h
index e912134..710a267 100644
--- a/swscale.h
+++ b/swscale.h
@@ -27,7 +27,7 @@
* external api for the swscale stuff
*/
-#include "avutil.h"
+#include <libavutil/avutil.h>
#define AV_STRINGIFY(s) AV_TOSTRING(s)
#define AV_TOSTRING(s) #s
More information about the ffmpeg-devel
mailing list