Commit 3e47fafd authored by jbr's avatar jbr

simplify

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11360 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 925754b3
......@@ -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