diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-02-26 12:56:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-26 12:56:55 +0100 |
commit | 9b1a0c2ee82f3b99584857db1ea662e2d08aca7f (patch) | |
tree | aa364f6228cb3d925e35a718e58684fdced69002 /libavcodec/dcadec.c | |
parent | 6fbddc80d63ddbc8974f4b2e286de20def6c201d (diff) | |
parent | 76b19a3984359b3be44d4f7e4e69b7b86729a622 (diff) | |
download | ffmpeg-9b1a0c2ee82f3b99584857db1ea662e2d08aca7f.tar.gz |
Merge commit '76b19a3984359b3be44d4f7e4e69b7b86729a622'
* commit '76b19a3984359b3be44d4f7e4e69b7b86729a622':
Fix a number of incorrect intmath.h #includes.
avconv: remove an unused variable
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dcadec.c')
-rw-r--r-- | libavcodec/dcadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c index e2f37328aa..1b955e4e7b 100644 --- a/libavcodec/dcadec.c +++ b/libavcodec/dcadec.c @@ -30,7 +30,6 @@ #include "libavutil/common.h" #include "libavutil/float_dsp.h" #include "libavutil/internal.h" -#include "libavutil/intmath.h" #include "libavutil/intreadwrite.h" #include "libavutil/mathematics.h" #include "libavutil/samplefmt.h" @@ -42,6 +41,7 @@ #include "dcahuff.h" #include "dca.h" #include "dca_parser.h" +#include "mathops.h" #include "synth_filter.h" #include "dcadsp.h" #include "fmtconvert.h" |