diff options
author | Mans Rullgard <mans@mansr.com> | 2011-05-09 13:55:24 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-05-09 22:27:16 +0100 |
commit | a88ef93b4abbea9f18c8750113dc9e99931f2f8a (patch) | |
tree | 998ae6760db8b25f670002304274a2c6fdb76b29 | |
parent | 0d849074a485b868552b3193a433a112be54e657 (diff) | |
download | ffmpeg-a88ef93b4abbea9f18c8750113dc9e99931f2f8a.tar.gz |
mpegaudiodec: group #includes more sanely
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavcodec/mpegaudiodec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 0d2641418d..7fd6bd2dc6 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -28,6 +28,7 @@ #include "avcodec.h" #include "get_bits.h" #include "dsputil.h" +#include "mathops.h" /* * TODO: @@ -37,8 +38,6 @@ #include "mpegaudio.h" #include "mpegaudiodecheader.h" -#include "mathops.h" - #if CONFIG_FLOAT # define SHR(a,b) ((a)*(1.0f/(1<<(b)))) # define compute_antialias compute_antialias_float |