From 1af34f094e2e28c26effbf42adf9479a8b759069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Sun, 21 Dec 2008 21:53:42 +0000 Subject: [PATCH] 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 --- libavcodec/mpegaudiodec.c | 1 + libavcodec/opt.c | 1 + 2 files changed, 2 insertions(+) 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){