diff options
author | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2009-01-26 01:57:38 +0200 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2009-01-26 01:57:41 +0200 |
commit | 03aa64687fc109c5f2346a3c191b70698b333509 (patch) | |
tree | 03cfac7d56be327094c2bfcaf115691e75bf611e /libaf | |
parent | dd888b05ff3af1c6c35582e75bedae687d38fc66 (diff) | |
parent | 7034529d9ae9b593ebbac187e983a1b7bde5be83 (diff) |
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.c | 3 |
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 |