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.
This commit is contained in:
Diego Biurrun
2016-06-04 15:07:30 +02:00
parent 09c4e5c598
commit b668662939
33 changed files with 95 additions and 77 deletions

View File

@@ -24,8 +24,9 @@
* TAK parser
**/
#include "tak.h"
#define BITSTREAM_READER_LE
#include "parser.h"
#include "tak.h"
typedef struct TAKParseContext {
ParseContext pc;