Commit b5a05cc2 authored by Justin Ruggles's avatar Justin Ruggles

fix handling of special case for lowest snroffset. regressions are unaffected.

Originally committed as revision 8450 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8a0cdea1
......@@ -175,6 +175,12 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end,
{
int i, j, k, end1, v, address;
/* special case, if snroffset is -960, set all bap's to zero */
if(snroffset == -960) {
memset(bap, 0, 256);
return;
}
i = start;
j = masktab[start];
do {
......
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