From ee15aef4bca80195f00e5b9f96c4b59c6d2bb0cf Mon Sep 17 00:00:00 2001 From: Yaniv Kamay Date: Mon, 26 Oct 2009 23:30:41 +0200 Subject: [PATCH] fix build on Debian --- common/linux/ffmpeg_inc.h.in | 12 ++++++++++++ common/win/ffmpeg_inc.h | 4 ++++ 2 files changed, 16 insertions(+) create mode 100644 common/linux/ffmpeg_inc.h.in create mode 100644 common/win/ffmpeg_inc.h diff --git a/common/linux/ffmpeg_inc.h.in b/common/linux/ffmpeg_inc.h.in new file mode 100644 index 0000000..7e322b5 --- /dev/null +++ b/common/linux/ffmpeg_inc.h.in @@ -0,0 +1,12 @@ + +#ifdef __GNUG__ +extern "C" { +#endif + +#include "@AVCODEC_PREFIX@avcodec.h" + +#ifdef __GNUG__ +} +#endif + + diff --git a/common/win/ffmpeg_inc.h b/common/win/ffmpeg_inc.h new file mode 100644 index 0000000..8d4473f --- /dev/null +++ b/common/win/ffmpeg_inc.h @@ -0,0 +1,4 @@ + +extern "C" { +#include "libavcodec/avcodec.h" +}