diff options
author | Dieter <freebsd@sopwith.solgatos.com> | 2006-01-30 23:32:14 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-01-30 23:32:14 +0000 |
commit | a851b8e898fa1d2d44660ca5708e3da76107f179 (patch) | |
tree | d54bd7463918da0bf28f2022eeab774c66d4e5fb | |
parent | ed96aeea640f2454a17299ef7e0f4c9a8915a46d (diff) | |
download | ffmpeg-a851b8e898fa1d2d44660ca5708e3da76107f179.tar.gz |
add missing #includes
patch by Dieter <freebsd at sopwith solgatos com>
Originally committed as revision 4912 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/matroska.c | 1 | ||||
-rw-r--r-- | libavutil/intfloat_readwrite.c | 1 | ||||
-rw-r--r-- | vhook/watermark.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c index 47c0e98a48..699c043996 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -29,6 +29,7 @@ #include "avformat.h" /* For codec_get_bmp_id and codec_get_wav_id. */ #include "avi.h" +#include "intfloat_readwrite.h" /* EBML version supported */ #define EBML_VERSION 1 diff --git a/libavutil/intfloat_readwrite.c b/libavutil/intfloat_readwrite.c index d2a2ee490b..0d27cb8f39 100644 --- a/libavutil/intfloat_readwrite.c +++ b/libavutil/intfloat_readwrite.c @@ -24,6 +24,7 @@ */ #include "common.h" +#include "intfloat_readwrite.h" double av_int2dbl(int64_t v){ if(v+v > 0xFFELLU<<52) diff --git a/vhook/watermark.c b/vhook/watermark.c index e4a4685a14..f61f3a1242 100644 --- a/vhook/watermark.c +++ b/vhook/watermark.c @@ -46,6 +46,7 @@ #include "avformat.h" #include "framehook.h" +#include "cmdutils.h" typedef struct { char filename[2000]; |