diff options
author | Diego Biurrun | 2016-06-04 15:07:30 +0200 |
---|---|---|
committer | Diego Biurrun | 2016-06-07 13:09:57 +0200 |
commit | b668662939de3a02454cfc9ba3e6d10b87527a40 (patch) | |
tree | 9e5dbb2e75d332aba61ddeec9a3322fbc165abcc /libavcodec/qdm2.c | |
parent | 09c4e5c5988c0037d108c5fc2a137d9ad488f7f4 (diff) |
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/qdm2.c')
-rw-r--r-- | libavcodec/qdm2.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavcodec/qdm2.c b/libavcodec/qdm2.c index b33e7c64c3..ec57b359ca 100644 --- a/libavcodec/qdm2.c +++ b/libavcodec/qdm2.c @@ -35,14 +35,15 @@ #include <stddef.h> #include <stdio.h> -#define BITSTREAM_READER_LE #include "libavutil/channel_layout.h" + +#define BITSTREAM_READER_LE #include "avcodec.h" #include "get_bits.h" #include "internal.h" -#include "rdft.h" -#include "mpegaudiodsp.h" #include "mpegaudio.h" +#include "mpegaudiodsp.h" +#include "rdft.h" #include "qdm2data.h" #include "qdm2_tablegen.h" |