Commit 12eaa3b7 authored by Justin Ruggles's avatar Justin Ruggles

simplify

Originally committed as revision 11360 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b35c67e5
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment