Browse Source

zero the upper frequencies of the correct coefficients

Originally committed as revision 13452 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Justin Ruggles 17 years ago
parent
commit
bd98e9e230
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ac3dec.c

+ 1
- 1
libavcodec/ac3dec.c View File

@@ -604,7 +604,7 @@ static int get_transform_coeffs(AC3DecodeContext *s)
end = s->end_freq[ch];
}
do
s->transform_coeffs[ch][end] = 0;
s->fixed_coeffs[ch][end] = 0;
while(++end < 256);
}



Loading…
Cancel
Save