summaryrefslogtreecommitdiff
path: root/libavcodec/metasound.c
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 /libavcodec/metasound.c
parent09c4e5c5988c0037d108c5fc2a137d9ad488f7f4 (diff)
downloadffmpeg-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/metasound.c')
-rw-r--r--libavcodec/metasound.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/metasound.c b/libavcodec/metasound.c
index dbb2a63e3e..a3b210e744 100644
--- a/libavcodec/metasound.c
+++ b/libavcodec/metasound.c
@@ -25,12 +25,13 @@
#include <math.h>
#include <stdint.h>
-#define BITSTREAM_READER_LE
#include "libavutil/channel_layout.h"
#include "libavutil/float_dsp.h"
+
+#define BITSTREAM_READER_LE
#include "avcodec.h"
-#include "get_bits.h"
#include "fft.h"
+#include "get_bits.h"
#include "internal.h"
#include "lsp.h"
#include "sinewin.h"