diff options
author | Andreas Öman <andreas@lonelycoder.com> | 2008-12-21 21:53:42 +0000 |
---|---|---|
committer | Andreas Öman <andreas@lonelycoder.com> | 2008-12-21 21:53:42 +0000 |
commit | 1af34f094e2e28c26effbf42adf9479a8b759069 (patch) | |
tree | 3649bc8ba9ca41a658a12edad55de60a4a0a80f7 | |
parent | ed4c638a07005007561590e2373b49917e8e4e6d (diff) | |
download | ffmpeg-1af34f094e2e28c26effbf42adf9479a8b759069.tar.gz |
Include "libavutil/common.h" where we use llrint() in case ffmpeg's
own llrint() is to be used.
Originally committed as revision 16257 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpegaudiodec.c | 1 | ||||
-rw-r--r-- | libavcodec/opt.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index a853562a3f..4969623e6d 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -27,6 +27,7 @@ #include "avcodec.h" #include "bitstream.h" #include "dsputil.h" +#include "libavutil/common.h" /* * TODO: diff --git a/libavcodec/opt.c b/libavcodec/opt.c index 78fbfaeb57..9f0e3ca1b8 100644 --- a/libavcodec/opt.c +++ b/libavcodec/opt.c @@ -28,6 +28,7 @@ #include "avcodec.h" #include "opt.h" #include "eval.h" +#include "libavutil/common.h" //FIXME order them and do a bin search const AVOption *av_find_opt(void *v, const char *name, const char *unit, int mask, int flags){ |