Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-06-04 16:07:30 +0300
committerDiego Biurrun <diego@biurrun.de>2016-06-07 14:09:57 +0300
commitb668662939de3a02454cfc9ba3e6d10b87527a40 (patch)
tree9e5dbb2e75d332aba61ddeec9a3322fbc165abcc /libavcodec/g723_1dec.c
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 'libavcodec/g723_1dec.c')
-rw-r--r--libavcodec/g723_1dec.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/g723_1dec.c b/libavcodec/g723_1dec.c
index 701e034f8a..f50bed134e 100644
--- a/libavcodec/g723_1dec.c
+++ b/libavcodec/g723_1dec.c
@@ -25,16 +25,17 @@
* G.723.1 compatible decoder
*/
-#define BITSTREAM_READER_LE
#include "libavutil/channel_layout.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
-#include "avcodec.h"
-#include "get_bits.h"
+
+#define BITSTREAM_READER_LE
#include "acelp_vectors.h"
+#include "avcodec.h"
#include "celp_filters.h"
-#include "g723_1.h"
+#include "get_bits.h"
#include "internal.h"
+#include "g723_1.h"
#define CNG_RANDOM_SEED 12345