diff options
author | Måns Rullgård <mans@mansr.com> | 2008-05-03 13:29:44 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-05-03 13:29:44 +0000 |
commit | 0852e30b5374d393a297fd6f6e8e6c83b94320bd (patch) | |
tree | 42adaa647f6845c54f13d4b0d8d2c2b30bc35b86 | |
parent | 7c43009358e2f8179ea20388713cc754fa67262b (diff) | |
download | ffmpeg-0852e30b5374d393a297fd6f6e8e6c83b94320bd.tar.gz |
fix checkheaders when libdirac not installed
Originally committed as revision 13044 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/libdirac.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/libdirac.h b/libavcodec/libdirac.h index 0abb83f8f9..528e81195b 100644 --- a/libavcodec/libdirac.h +++ b/libavcodec/libdirac.h @@ -26,6 +26,8 @@ #ifndef FFMPEG_LIBDIRAC_H #define FFMPEG_LIBDIRAC_H +#ifdef CONFIG_LIBDIRAC + #include "avcodec.h" #include <libdirac_common/dirac_types.h> @@ -41,4 +43,5 @@ static const struct { { PIX_FMT_YUV444P, format444 }, }; +#endif /* CONFIG_LIBDIRAC */ #endif /* FFMPEG_LIBDIRAC_H */ |