diff options
author | wm4 <wm4@nowhere> | 2015-11-08 20:01:20 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-11-08 20:01:20 +0100 |
commit | ac64ce71d6cf395dbb189f613625cf02115fb7c8 (patch) | |
tree | b711585eef9aa546f37dd875f65a0d91a9d31468 /audio | |
parent | 16cd20c46f02a052f06742329dc375a695bb6e0b (diff) |
dec_audio: add missing include
Was masked by FFmpeg's terrible headers, but failed with Libav.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/decode/dec_audio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/decode/dec_audio.c b/audio/decode/dec_audio.c index 98fb83f895..03172ed294 100644 --- a/audio/decode/dec_audio.c +++ b/audio/decode/dec_audio.c @@ -18,6 +18,7 @@ #include <stdio.h> #include <stdlib.h> #include <unistd.h> +#include <math.h> #include <assert.h> #include <libavutil/mem.h> |