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/takdec.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/takdec.c')
-rw-r--r-- | libavcodec/takdec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/takdec.c b/libavcodec/takdec.c index 93098be7e4..c9db928c5c 100644 --- a/libavcodec/takdec.c +++ b/libavcodec/takdec.c @@ -27,11 +27,13 @@ #include "libavutil/internal.h" #include "libavutil/samplefmt.h" -#include "tak.h" + +#define BITSTREAM_READER_LE #include "audiodsp.h" #include "avcodec.h" #include "internal.h" #include "unary.h" +#include "tak.h" #define MAX_SUBFRAMES 8 // max number of subframes per channel #define MAX_PREDICTORS 256 |