123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
-
- #include <math.h>
- #include "iLBC_define.h"
- #include "gainquant.h"
- #include "getCBvec.h"
-
- void index_conv_enc(
- int *index
- ){
- int k;
- for (k=1; k<CB_NSTAGES; k++) {
- if ((index[k]>=108)&&(index[k]<172)) {
- index[k]-=64;
- } else if (index[k]>=236) {
- index[k]-=128;
- } else {
-
- }
- }
- }
- void index_conv_dec(
- int *index
- ){
- int k;
- for (k=1; k<CB_NSTAGES; k++) {
- if ((index[k]>=44)&&(index[k]<108)) {
- index[k]+=64;
- } else if ((index[k]>=108)&&(index[k]<128)) {
- index[k]+=128;
- } else {
-
- }
- }
- }
-
- void iCBConstruct(
- float *decvector,
- int *index,
- int *gain_index,
- float *mem,
- int lMem,
- int veclen,
- int nStages
- ){
- int j,k;
- float gain[CB_NSTAGES];
- float cbvec[SUBL];
-
- gain[0] = gaindequant(gain_index[0], 1.0, 32);
- if (nStages > 1) {
- gain[1] = gaindequant(gain_index[1],
- (float)fabs(gain[0]), 16);
- }
- if (nStages > 2) {
- gain[2] = gaindequant(gain_index[2],
- (float)fabs(gain[1]), 8);
- }
-
- getCBvec(cbvec, mem, index[0], lMem, veclen);
- for (j=0;j<veclen;j++){
- decvector[j] = gain[0]*cbvec[j];
- }
- if (nStages > 1) {
- for (k=1; k<nStages; k++) {
- getCBvec(cbvec, mem, index[k], lMem, veclen);
- for (j=0;j<veclen;j++) {
- decvector[j] += gain[k]*cbvec[j];
- }
- }
- }
- }
|