1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-10 17:41:09 +02:00
Originally committed as revision 11360 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2007-12-30 22:58:20 +00:00
parent b35c67e58b
commit 12eaa3b760

View File

@ -577,13 +577,13 @@ static void remove_dithering(AC3DecodeContext *s) {
else
end = s->end_freq[ch];
for(i=0; i<end; i++) {
if(bap[i] == 0)
if(!bap[i])
coeffs[i] = 0.0f;
}
if(s->channel_in_cpl[ch]) {
bap = s->bap[CPL_CH];
for(; i<s->end_freq[CPL_CH]; i++) {
if(bap[i] == 0)
if(!bap[i])
coeffs[i] = 0.0f;
}
}