diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-02-26 02:26:29 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-04 11:45:32 +0100 |
commit | 973dc4e8d4ae0def273c33bac354ddc6d8e0c470 (patch) | |
tree | 9eb46f22da4ef61d94e3ac0a0a84ae23a5f56ab3 /libavcodec/vorbisenc.c | |
parent | 5397386effba2e53e4ff82852a86f6be4d59e9c1 (diff) | |
download | ffmpeg-973dc4e8d4ae0def273c33bac354ddc6d8e0c470.tar.gz |
put_bits: Remove unused includes
This requires adding includes to other files that relied on these being
included implicitly.
Diffstat (limited to 'libavcodec/vorbisenc.c')
-rw-r--r-- | libavcodec/vorbisenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vorbisenc.c b/libavcodec/vorbisenc.c index f16060e450..830e5d184f 100644 --- a/libavcodec/vorbisenc.c +++ b/libavcodec/vorbisenc.c @@ -25,9 +25,11 @@ */ #include <float.h> + #include "avcodec.h" #include "internal.h" #include "fft.h" +#include "mathops.h" #include "vorbis.h" #include "vorbis_enc_data.h" |