comparison mpegaudiodec.c @ 11934:f881e8f699f4 libavcodec

Remove pointless condition in #if
author vitor
date Wed, 23 Jun 2010 20:43:37 +0000
parents b9f69606a094
children 5e8770f9d8f1
comparison
equal deleted inserted replaced
11933:c893817d6166 11934:f881e8f699f4
930 #endif 930 #endif
931 931
932 offset = *synth_buf_offset; 932 offset = *synth_buf_offset;
933 synth_buf = synth_buf_ptr + offset; 933 synth_buf = synth_buf_ptr + offset;
934 934
935 #if FRAC_BITS <= 15 && !CONFIG_FLOAT 935 #if FRAC_BITS <= 15
936 dct32(tmp, sb_samples); 936 dct32(tmp, sb_samples);
937 for(j=0;j<32;j++) { 937 for(j=0;j<32;j++) {
938 /* NOTE: can cause a loss in precision if very high amplitude 938 /* NOTE: can cause a loss in precision if very high amplitude
939 sound */ 939 sound */
940 synth_buf[j] = av_clip_int16(tmp[j]); 940 synth_buf[j] = av_clip_int16(tmp[j]);