[FFmpeg-cvslog] r23107 - trunk/libavcodec/mpegaudiodec.c
michael
subversion
Thu May 13 12:04:31 CEST 2010
Author: michael
Date: Thu May 13 12:04:31 2010
New Revision: 23107
Log:
Fix compilation with low precission mpeg audio decoding.
Modified:
trunk/libavcodec/mpegaudiodec.c
Modified: trunk/libavcodec/mpegaudiodec.c
==============================================================================
--- trunk/libavcodec/mpegaudiodec.c Thu May 13 12:02:48 2010 (r23106)
+++ trunk/libavcodec/mpegaudiodec.c Thu May 13 12:04:31 2010 (r23107)
@@ -847,8 +847,7 @@ void RENAME(ff_mpa_synth_filter)(MPA_INT
offset = *synth_buf_offset;
synth_buf = synth_buf_ptr + offset;
-#if FRAC_BITS <= 15
- assert(!CONFIG_FLOAT);
+#if FRAC_BITS <= 15 && !CONFIG_FLOAT
dct32(tmp, sb_samples);
for(j=0;j<32;j++) {
/* NOTE: can cause a loss in precision if very high amplitude
More information about the ffmpeg-cvslog
mailing list