diff options
author | Robert Swain <robert.swain@gmail.com> | 2011-07-04 08:44:49 +0200 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-04 09:39:24 +0100 |
commit | 954a6532160b9eac7773613be105fd706d639ade (patch) | |
tree | c3b64c62043bd4a49862785abd4fbbf213d88ef3 /libavcodec/libvorbis.c | |
parent | a4ab70f92e4d8705434a2fee42a2b69a8bfa6bb1 (diff) | |
download | ffmpeg-954a6532160b9eac7773613be105fd706d639ade.tar.gz |
vorbis: vpxenc: Add missing include for av_rescale*
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/libvorbis.c')
-rw-r--r-- | libavcodec/libvorbis.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/libvorbis.c b/libavcodec/libvorbis.c index 88da705a32..85cb9c5989 100644 --- a/libavcodec/libvorbis.c +++ b/libavcodec/libvorbis.c @@ -30,6 +30,7 @@ #include "avcodec.h" #include "bytestream.h" #include "vorbis.h" +#include "libavutil/mathematics.h" #undef NDEBUG #include <assert.h> |