aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-07-05 19:19:04 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-07-05 19:19:04 +0000
commit1ac31760442a568ceb8bdb5d93e3159352efb627 (patch)
tree0593908212dfa865f480935e8c2e7e957f7d4bfc
parent146ea95228c34334247f1d100c6cd261e7866d13 (diff)
downloadffmpeg-1ac31760442a568ceb8bdb5d93e3159352efb627.tar.gz
ugly missing lrintf workaround by ("Steven M. Schultz" <sms at 2bsd dot com>)
Originally committed as revision 3289 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--ffmpeg.c1
-rw-r--r--libavcodec/resample2.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index af87833f1e..5f50187386 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -20,6 +20,7 @@
#include <limits.h>
#include "avformat.h"
#include "framehook.h"
+#include "dsputil.h"
#ifndef CONFIG_WIN32
#include <unistd.h>
diff --git a/libavcodec/resample2.c b/libavcodec/resample2.c
index 47eeb0a2d8..7a19715ce4 100644
--- a/libavcodec/resample2.c
+++ b/libavcodec/resample2.c
@@ -26,6 +26,7 @@
#include "avcodec.h"
#include "common.h"
+#include "dsputil.h"
#define PHASE_SHIFT 10
#define PHASE_COUNT (1<<PHASE_SHIFT)