mirror of
https://github.com/xiph/opus.git
synced 2025-06-06 07:21:03 +00:00
Fix folding bug in draft too
This commit is contained in:
parent
c3563be66f
commit
e30e9a7609
1 changed files with 1 additions and 1 deletions
|
@ -298,7 +298,7 @@ n2-n1);
|
|||
while(M*eBands[--fold_start] > effective_lowband);
|
||||
fold_end = lowband_offset-1;
|
||||
- while(M*eBands[++fold_end] < effective_lowband+N);
|
||||
+ while(++fold_end < i && M*eBands[++fold_end] < \
|
||||
+ while(++fold_end < i && M*eBands[fold_end] < \
|
||||
effective_lowband+N);
|
||||
x_cm = y_cm = 0;
|
||||
fold_i = fold_start; do {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue