summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-06-04 15:07:30 +0200
committerDiego Biurrun <diego@biurrun.de>2016-06-07 13:09:57 +0200
commitb668662939de3a02454cfc9ba3e6d10b87527a40 (patch)
tree9e5dbb2e75d332aba61ddeec9a3322fbc165abcc /libavformat
parent09c4e5c5988c0037d108c5fc2a137d9ad488f7f4 (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 'libavformat')
-rw-r--r--libavformat/takdec.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/takdec.c b/libavformat/takdec.c
index 61ead31f9e..b28d44ce00 100644
--- a/libavformat/takdec.c
+++ b/libavformat/takdec.c
@@ -19,11 +19,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#define BITSTREAM_READER_LE
#include "libavcodec/tak.h"
+
+#include "apetag.h"
#include "avformat.h"
#include "internal.h"
#include "rawdec.h"
-#include "apetag.h"
typedef struct TAKDemuxContext {
int mlast_frame;