diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-10-14 20:42:54 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-10-14 20:42:54 +0000 |
commit | e46a98271e7c7d651929ef8f486dcea25fcc8763 (patch) | |
tree | 657fd77c9a4352e24681e4a029bc37b6f0fbea05 /libavcodec/svq3.c | |
parent | 795bb9dcb06aef5fe56239c102741e229c386959 (diff) | |
download | ffmpeg-e46a98271e7c7d651929ef8f486dcea25fcc8763.tar.gz |
Include zlib.h as it is needed for watermark support,
patch by baptiste based on reverse engineering work by chrono.
Originally committed as revision 15618 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r-- | libavcodec/svq3.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index 67fa3172b4..4bb50b509b 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -40,6 +40,10 @@ * ftp://ftp.mplayerhq.hu/MPlayer/samples/V-codecs/SVQ3/Vertical400kbit.sorenson3.mov */ +#ifdef CONFIG_ZLIB +#include <zlib.h> +#endif + /** * @file svq3.c * svq3 decoder. |