Fixed fixed-point overflow for 2.5 ms frames.
This commit is contained in:
parent
3295b5d56b
commit
bb918ef711
1 changed files with 1 additions and 1 deletions
|
@ -542,7 +542,7 @@ static void quant_band(int encode, const CELTMode *m, int i, celt_norm *X, celt_
|
||||||
x = Y;
|
x = Y;
|
||||||
}
|
}
|
||||||
if (lowband_out)
|
if (lowband_out)
|
||||||
lowband_out[0] = X[0];
|
lowband_out[0] = SHR16(X[0],4);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue