12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
-
- #ifndef __iLBC_CREATECB_H
- #define __iLBC_CREATECB_H
- void filteredCBvecs(
- float *cbvectors,
- float *mem,
- int lMem
- );
- void searchAugmentedCB(
- int low,
- int high,
- int stage,
- int startIndex,
- float *target,
- float *buffer,
- float *max_measure,
- int *best_index,
- float *gain,
- float *energy,
- float *invenergy
- );
- void createAugmentedVec(
- int index,
- float *buffer,
- float *cbVec
- );
- #endif
|