diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-06-04 15:07:30 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-06-07 13:09:57 +0200 |
commit | b668662939de3a02454cfc9ba3e6d10b87527a40 (patch) | |
tree | 9e5dbb2e75d332aba61ddeec9a3322fbc165abcc /libavcodec/binkaudio.c | |
parent | 09c4e5c5988c0037d108c5fc2a137d9ad488f7f4 (diff) | |
download | ffmpeg-b668662939de3a02454cfc9ba3e6d10b87527a40.tar.gz |
get_bits: Move BITSTREAM_READER_LE definition before all relevant #includes
This avoids the danger that get_bits.h might get indirectly #included before
BITSTREAM_READER_LE is defined.
Also sort headers into canonical order where appropriate.
Diffstat (limited to 'libavcodec/binkaudio.c')
-rw-r--r-- | libavcodec/binkaudio.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/binkaudio.c b/libavcodec/binkaudio.c index 71ad344bbf..2638eb2b04 100644 --- a/libavcodec/binkaudio.c +++ b/libavcodec/binkaudio.c @@ -29,14 +29,15 @@ */ #include "libavutil/channel_layout.h" -#include "avcodec.h" +#include "libavutil/intfloat.h" + #define BITSTREAM_READER_LE -#include "get_bits.h" +#include "avcodec.h" #include "dct.h" -#include "rdft.h" +#include "get_bits.h" #include "internal.h" +#include "rdft.h" #include "wma_freqs.h" -#include "libavutil/intfloat.h" static float quant_table[96]; |