diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-03-07 20:07:17 +0100 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2012-04-01 18:33:29 +0200 |
commit | 90db3c435ea5e77befe186b7079c8a7f4bf457d2 (patch) | |
tree | 1443f3c8e7663bb9f68f65ddcd22e54fd04e9816 | |
parent | 8b819fd9d3f363483559a3e9aeb8b78acba47bb7 (diff) | |
download | ffmpeg-90db3c435ea5e77befe186b7079c8a7f4bf457d2.tar.gz |
dca: include libavutil/mathematics.h for possibly missing M_SQRT1_2
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
-rw-r--r-- | libavcodec/dca.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dca.c b/libavcodec/dca.c index 19d24c55d1..38a641bd69 100644 --- a/libavcodec/dca.c +++ b/libavcodec/dca.c @@ -29,6 +29,7 @@ #include "libavutil/common.h" #include "libavutil/intmath.h" #include "libavutil/intreadwrite.h" +#include "libavutil/mathematics.h" #include "libavutil/audioconvert.h" #include "avcodec.h" #include "dsputil.h" |