summaryrefslogtreecommitdiffstats
path: root/libaf
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-01-26 01:57:38 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-01-26 01:57:41 +0200
commit03aa64687fc109c5f2346a3c191b70698b333509 (patch)
tree03cfac7d56be327094c2bfcaf115691e75bf611e /libaf
parentdd888b05ff3af1c6c35582e75bedae687d38fc66 (diff)
parent7034529d9ae9b593ebbac187e983a1b7bde5be83 (diff)
downloadmpv-03aa64687fc109c5f2346a3c191b70698b333509.tar.bz2
mpv-03aa64687fc109c5f2346a3c191b70698b333509.tar.xz
Merge svn changes up to r28368
Fixes af_format.c compilation bug exposed by latest FFmpeg change.
Diffstat (limited to 'libaf')
-rw-r--r--libaf/af_format.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libaf/af_format.c b/libaf/af_format.c
index fdac68147e..5e53c1ae99 100644
--- a/libaf/af_format.c
+++ b/libaf/af_format.c
@@ -26,8 +26,9 @@
#include <inttypes.h>
#include <limits.h>
+#include "config.h"
// Integer to float conversion through lrintf()
-#ifdef HAVE_LRINTF
+#if HAVE_LRINTF
#include <math.h>
long int lrintf(float);
#else