diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-06-23 20:43:37 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-06-23 20:43:37 +0000 |
commit | 9dac6dbb221704c45705217c2e1d4ba66a2d373c (patch) | |
tree | 8e04a84a12856d361b4d9fa4ab66ec03e9e36571 /libavcodec/mpegaudiodec.c | |
parent | d6e0080175d99d68993d340d3664734c77aa7282 (diff) | |
download | ffmpeg-9dac6dbb221704c45705217c2e1d4ba66a2d373c.tar.gz |
Remove pointless condition in #if
Originally committed as revision 23742 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudiodec.c')
-rw-r--r-- | libavcodec/mpegaudiodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index e6a33fb925..858f3b4d6d 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -932,7 +932,7 @@ void ff_mpa_synth_filter(MPA_INT *synth_buf_ptr, int *synth_buf_offset, offset = *synth_buf_offset; synth_buf = synth_buf_ptr + offset; -#if FRAC_BITS <= 15 && !CONFIG_FLOAT +#if FRAC_BITS <= 15 dct32(tmp, sb_samples); for(j=0;j<32;j++) { /* NOTE: can cause a loss in precision if very high amplitude |