mirror of
https://github.com/xiph/opus.git
synced 2025-06-05 15:03:39 +00:00

especially now that we have a custom version of that code anyway. Moved the test code to tests/
9 lines
170 B
C
9 lines
170 B
C
#include "bitrenc.h"
|
|
|
|
void ec_bitree_update(unsigned *_this,int _sz,int _sym,int _val){
|
|
do{
|
|
_this[_sym]+=_val;
|
|
_sym+=_sym+1&-(_sym+1);
|
|
}
|
|
while(_sym<_sz);
|
|
}
|