/src/pjsip/third_party/ilbc/iLBC_encode.c
Line | Count | Source |
1 | | |
2 | | /****************************************************************** |
3 | | |
4 | | iLBC Speech Coder ANSI-C Source Code |
5 | | |
6 | | iLBC_encode.c |
7 | | |
8 | | Copyright (C) The Internet Society (2004). |
9 | | All Rights Reserved. |
10 | | |
11 | | ******************************************************************/ |
12 | | |
13 | | #include <math.h> |
14 | | #include <stdlib.h> |
15 | | #include <string.h> |
16 | | |
17 | | #include "iLBC_define.h" |
18 | | #include "LPCencode.h" |
19 | | #include "FrameClassify.h" |
20 | | #include "StateSearchW.h" |
21 | | #include "StateConstructW.h" |
22 | | #include "helpfun.h" |
23 | | #include "constants.h" |
24 | | #include "packing.h" |
25 | | #include "iCBSearch.h" |
26 | | #include "iCBConstruct.h" |
27 | | #include "hpInput.h" |
28 | | #include "anaFilter.h" |
29 | | #include "syntFilter.h" |
30 | | |
31 | | /*----------------------------------------------------------------* |
32 | | * Initiation of encoder instance. |
33 | | *---------------------------------------------------------------*/ |
34 | | |
35 | | short initEncode( /* (o) Number of bytes |
36 | | encoded */ |
37 | | iLBC_Enc_Inst_t *iLBCenc_inst, /* (i/o) Encoder instance */ |
38 | | int mode /* (i) frame size mode */ |
39 | 0 | ){ |
40 | 0 | iLBCenc_inst->mode = mode; |
41 | 0 | if (mode==30) { |
42 | 0 | iLBCenc_inst->blockl = BLOCKL_30MS; |
43 | 0 | iLBCenc_inst->nsub = NSUB_30MS; |
44 | 0 | iLBCenc_inst->nasub = NASUB_30MS; |
45 | 0 | iLBCenc_inst->lpc_n = LPC_N_30MS; |
46 | 0 | iLBCenc_inst->no_of_bytes = NO_OF_BYTES_30MS; |
47 | 0 | iLBCenc_inst->no_of_words = NO_OF_WORDS_30MS; |
48 | | |
49 | | |
50 | | |
51 | | |
52 | |
|
53 | 0 | iLBCenc_inst->state_short_len=STATE_SHORT_LEN_30MS; |
54 | | /* ULP init */ |
55 | 0 | iLBCenc_inst->ULP_inst=&ULP_30msTbl; |
56 | 0 | } |
57 | 0 | else if (mode==20) { |
58 | 0 | iLBCenc_inst->blockl = BLOCKL_20MS; |
59 | 0 | iLBCenc_inst->nsub = NSUB_20MS; |
60 | 0 | iLBCenc_inst->nasub = NASUB_20MS; |
61 | 0 | iLBCenc_inst->lpc_n = LPC_N_20MS; |
62 | 0 | iLBCenc_inst->no_of_bytes = NO_OF_BYTES_20MS; |
63 | 0 | iLBCenc_inst->no_of_words = NO_OF_WORDS_20MS; |
64 | 0 | iLBCenc_inst->state_short_len=STATE_SHORT_LEN_20MS; |
65 | | /* ULP init */ |
66 | 0 | iLBCenc_inst->ULP_inst=&ULP_20msTbl; |
67 | 0 | } |
68 | 0 | else { |
69 | 0 | exit(2); |
70 | 0 | } |
71 | | |
72 | 0 | memset((*iLBCenc_inst).anaMem, 0, |
73 | 0 | LPC_FILTERORDER*sizeof(float)); |
74 | 0 | memcpy((*iLBCenc_inst).lsfold, lsfmeanTbl, |
75 | 0 | LPC_FILTERORDER*sizeof(float)); |
76 | 0 | memcpy((*iLBCenc_inst).lsfdeqold, lsfmeanTbl, |
77 | 0 | LPC_FILTERORDER*sizeof(float)); |
78 | 0 | memset((*iLBCenc_inst).lpc_buffer, 0, |
79 | 0 | (LPC_LOOKBACK+BLOCKL_MAX)*sizeof(float)); |
80 | 0 | memset((*iLBCenc_inst).hpimem, 0, 4*sizeof(float)); |
81 | |
|
82 | 0 | return (short)(iLBCenc_inst->no_of_bytes); |
83 | 0 | } |
84 | | |
85 | | /*----------------------------------------------------------------* |
86 | | * main encoder function |
87 | | *---------------------------------------------------------------*/ |
88 | | |
89 | | void iLBC_encode( |
90 | | unsigned char *bytes, /* (o) encoded data bits iLBC */ |
91 | | float *block, /* (o) speech vector to |
92 | | encode */ |
93 | | iLBC_Enc_Inst_t *iLBCenc_inst /* (i/o) the general encoder |
94 | | state */ |
95 | 0 | ){ |
96 | |
|
97 | 0 | float data[BLOCKL_MAX]; |
98 | 0 | float residual[BLOCKL_MAX], reverseResidual[BLOCKL_MAX]; |
99 | |
|
100 | 0 | int start, idxForMax, idxVec[STATE_LEN]; |
101 | | |
102 | | |
103 | | |
104 | | |
105 | |
|
106 | 0 | float reverseDecresidual[BLOCKL_MAX], mem[CB_MEML]; |
107 | 0 | int n, k, meml_gotten, Nfor, Nback, i, pos; |
108 | 0 | int gain_index[CB_NSTAGES*NASUB_MAX], |
109 | 0 | extra_gain_index[CB_NSTAGES]; |
110 | 0 | int cb_index[CB_NSTAGES*NASUB_MAX],extra_cb_index[CB_NSTAGES]; |
111 | 0 | int lsf_i[LSF_NSPLIT*LPC_N_MAX]; |
112 | 0 | unsigned char *pbytes; |
113 | 0 | int diff, start_pos, state_first; |
114 | 0 | float en1, en2; |
115 | 0 | int index, ulp, firstpart; |
116 | 0 | int subcount, subframe; |
117 | 0 | float weightState[LPC_FILTERORDER]; |
118 | 0 | float syntdenum[NSUB_MAX*(LPC_FILTERORDER+1)]; |
119 | 0 | float weightdenum[NSUB_MAX*(LPC_FILTERORDER+1)]; |
120 | 0 | float decresidual[BLOCKL_MAX]; |
121 | | |
122 | | /* high pass filtering of input signal if such is not done |
123 | | prior to calling this function */ |
124 | |
|
125 | 0 | hpInput(block, iLBCenc_inst->blockl, |
126 | 0 | data, (*iLBCenc_inst).hpimem); |
127 | | |
128 | | /* otherwise simply copy */ |
129 | | |
130 | | /*memcpy(data,block,iLBCenc_inst->blockl*sizeof(float));*/ |
131 | | |
132 | | /* LPC of hp filtered input data */ |
133 | |
|
134 | 0 | LPCencode(syntdenum, weightdenum, lsf_i, data, iLBCenc_inst); |
135 | | |
136 | | |
137 | | /* inverse filter to get residual */ |
138 | |
|
139 | 0 | for (n=0; n<iLBCenc_inst->nsub; n++) { |
140 | 0 | anaFilter(&data[n*SUBL], &syntdenum[n*(LPC_FILTERORDER+1)], |
141 | 0 | SUBL, &residual[n*SUBL], iLBCenc_inst->anaMem); |
142 | 0 | } |
143 | | |
144 | | /* find state location */ |
145 | |
|
146 | 0 | start = FrameClassify(iLBCenc_inst, residual); |
147 | | |
148 | | /* check if state should be in first or last part of the |
149 | | two subframes */ |
150 | |
|
151 | 0 | diff = STATE_LEN - iLBCenc_inst->state_short_len; |
152 | 0 | en1 = 0; |
153 | 0 | index = (start-1)*SUBL; |
154 | | |
155 | | |
156 | | |
157 | | |
158 | |
|
159 | 0 | for (i = 0; i < iLBCenc_inst->state_short_len; i++) { |
160 | 0 | en1 += residual[index+i]*residual[index+i]; |
161 | 0 | } |
162 | 0 | en2 = 0; |
163 | 0 | index = (start-1)*SUBL+diff; |
164 | 0 | for (i = 0; i < iLBCenc_inst->state_short_len; i++) { |
165 | 0 | en2 += residual[index+i]*residual[index+i]; |
166 | 0 | } |
167 | | |
168 | |
|
169 | 0 | if (en1 > en2) { |
170 | 0 | state_first = 1; |
171 | 0 | start_pos = (start-1)*SUBL; |
172 | 0 | } else { |
173 | 0 | state_first = 0; |
174 | 0 | start_pos = (start-1)*SUBL + diff; |
175 | 0 | } |
176 | | |
177 | | /* scalar quantization of state */ |
178 | |
|
179 | 0 | StateSearchW(iLBCenc_inst, &residual[start_pos], |
180 | 0 | &syntdenum[(start-1)*(LPC_FILTERORDER+1)], |
181 | 0 | &weightdenum[(start-1)*(LPC_FILTERORDER+1)], &idxForMax, |
182 | 0 | idxVec, iLBCenc_inst->state_short_len, state_first); |
183 | |
|
184 | 0 | StateConstructW(idxForMax, idxVec, |
185 | 0 | &syntdenum[(start-1)*(LPC_FILTERORDER+1)], |
186 | 0 | &decresidual[start_pos], iLBCenc_inst->state_short_len); |
187 | | |
188 | | /* predictive quantization in state */ |
189 | |
|
190 | 0 | if (state_first) { /* put adaptive part in the end */ |
191 | | |
192 | | /* setup memory */ |
193 | |
|
194 | 0 | memset(mem, 0, |
195 | 0 | (CB_MEML-iLBCenc_inst->state_short_len)*sizeof(float)); |
196 | 0 | memcpy(mem+CB_MEML-iLBCenc_inst->state_short_len, |
197 | 0 | decresidual+start_pos, |
198 | 0 | iLBCenc_inst->state_short_len*sizeof(float)); |
199 | 0 | memset(weightState, 0, LPC_FILTERORDER*sizeof(float)); |
200 | | |
201 | | /* encode sub-frames */ |
202 | |
|
203 | 0 | iCBSearch(iLBCenc_inst, extra_cb_index, extra_gain_index, |
204 | 0 | &residual[start_pos+iLBCenc_inst->state_short_len], |
205 | 0 | mem+CB_MEML-stMemLTbl, |
206 | 0 | stMemLTbl, diff, CB_NSTAGES, |
207 | | |
208 | | |
209 | | |
210 | | |
211 | |
|
212 | 0 | &weightdenum[start*(LPC_FILTERORDER+1)], |
213 | 0 | weightState, 0); |
214 | | |
215 | | /* construct decoded vector */ |
216 | |
|
217 | 0 | iCBConstruct( |
218 | 0 | &decresidual[start_pos+iLBCenc_inst->state_short_len], |
219 | 0 | extra_cb_index, extra_gain_index, |
220 | 0 | mem+CB_MEML-stMemLTbl, |
221 | 0 | stMemLTbl, diff, CB_NSTAGES); |
222 | |
|
223 | 0 | } |
224 | 0 | else { /* put adaptive part in the beginning */ |
225 | | |
226 | | /* create reversed vectors for prediction */ |
227 | |
|
228 | 0 | for (k=0; k<diff; k++) { |
229 | 0 | reverseResidual[k] = residual[(start+1)*SUBL-1 |
230 | 0 | -(k+iLBCenc_inst->state_short_len)]; |
231 | 0 | } |
232 | | |
233 | | /* setup memory */ |
234 | |
|
235 | 0 | meml_gotten = iLBCenc_inst->state_short_len; |
236 | 0 | for (k=0; k<meml_gotten; k++) { |
237 | 0 | mem[CB_MEML-1-k] = decresidual[start_pos + k]; |
238 | 0 | } |
239 | 0 | memset(mem, 0, (CB_MEML-k)*sizeof(float)); |
240 | 0 | memset(weightState, 0, LPC_FILTERORDER*sizeof(float)); |
241 | | |
242 | | /* encode sub-frames */ |
243 | |
|
244 | 0 | iCBSearch(iLBCenc_inst, extra_cb_index, extra_gain_index, |
245 | 0 | reverseResidual, mem+CB_MEML-stMemLTbl, stMemLTbl, |
246 | 0 | diff, CB_NSTAGES, |
247 | 0 | &weightdenum[(start-1)*(LPC_FILTERORDER+1)], |
248 | 0 | weightState, 0); |
249 | | |
250 | | /* construct decoded vector */ |
251 | |
|
252 | 0 | iCBConstruct(reverseDecresidual, extra_cb_index, |
253 | 0 | extra_gain_index, mem+CB_MEML-stMemLTbl, stMemLTbl, |
254 | 0 | diff, CB_NSTAGES); |
255 | | |
256 | | /* get decoded residual from reversed vector */ |
257 | |
|
258 | 0 | for (k=0; k<diff; k++) { |
259 | 0 | decresidual[start_pos-1-k] = reverseDecresidual[k]; |
260 | | |
261 | | |
262 | | |
263 | | |
264 | |
|
265 | 0 | } |
266 | 0 | } |
267 | | |
268 | | /* counter for predicted sub-frames */ |
269 | |
|
270 | 0 | subcount=0; |
271 | | |
272 | | /* forward prediction of sub-frames */ |
273 | |
|
274 | 0 | Nfor = iLBCenc_inst->nsub-start-1; |
275 | | |
276 | |
|
277 | 0 | if ( Nfor > 0 ) { |
278 | | |
279 | | /* setup memory */ |
280 | |
|
281 | 0 | memset(mem, 0, (CB_MEML-STATE_LEN)*sizeof(float)); |
282 | 0 | memcpy(mem+CB_MEML-STATE_LEN, decresidual+(start-1)*SUBL, |
283 | 0 | STATE_LEN*sizeof(float)); |
284 | 0 | memset(weightState, 0, LPC_FILTERORDER*sizeof(float)); |
285 | | |
286 | | /* loop over sub-frames to encode */ |
287 | |
|
288 | 0 | for (subframe=0; subframe<Nfor; subframe++) { |
289 | | |
290 | | /* encode sub-frame */ |
291 | |
|
292 | 0 | iCBSearch(iLBCenc_inst, cb_index+subcount*CB_NSTAGES, |
293 | 0 | gain_index+subcount*CB_NSTAGES, |
294 | 0 | &residual[(start+1+subframe)*SUBL], |
295 | 0 | mem+CB_MEML-memLfTbl[subcount], |
296 | 0 | memLfTbl[subcount], SUBL, CB_NSTAGES, |
297 | 0 | &weightdenum[(start+1+subframe)* |
298 | 0 | (LPC_FILTERORDER+1)], |
299 | 0 | weightState, subcount+1); |
300 | | |
301 | | /* construct decoded vector */ |
302 | |
|
303 | 0 | iCBConstruct(&decresidual[(start+1+subframe)*SUBL], |
304 | 0 | cb_index+subcount*CB_NSTAGES, |
305 | 0 | gain_index+subcount*CB_NSTAGES, |
306 | 0 | mem+CB_MEML-memLfTbl[subcount], |
307 | 0 | memLfTbl[subcount], SUBL, CB_NSTAGES); |
308 | | |
309 | | /* update memory */ |
310 | |
|
311 | 0 | memmove(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float)); |
312 | 0 | memcpy(mem+CB_MEML-SUBL, |
313 | | |
314 | | |
315 | | |
316 | | |
317 | |
|
318 | 0 | &decresidual[(start+1+subframe)*SUBL], |
319 | 0 | SUBL*sizeof(float)); |
320 | 0 | memset(weightState, 0, LPC_FILTERORDER*sizeof(float)); |
321 | |
|
322 | 0 | subcount++; |
323 | 0 | } |
324 | 0 | } |
325 | | |
326 | | |
327 | | /* backward prediction of sub-frames */ |
328 | |
|
329 | 0 | Nback = start-1; |
330 | | |
331 | |
|
332 | 0 | if ( Nback > 0 ) { |
333 | | |
334 | | /* create reverse order vectors */ |
335 | |
|
336 | 0 | for (n=0; n<Nback; n++) { |
337 | 0 | for (k=0; k<SUBL; k++) { |
338 | 0 | reverseResidual[n*SUBL+k] = |
339 | 0 | residual[(start-1)*SUBL-1-n*SUBL-k]; |
340 | 0 | reverseDecresidual[n*SUBL+k] = |
341 | 0 | decresidual[(start-1)*SUBL-1-n*SUBL-k]; |
342 | 0 | } |
343 | 0 | } |
344 | | |
345 | | /* setup memory */ |
346 | |
|
347 | 0 | meml_gotten = SUBL*(iLBCenc_inst->nsub+1-start); |
348 | | |
349 | |
|
350 | 0 | if ( meml_gotten > CB_MEML ) { |
351 | 0 | meml_gotten=CB_MEML; |
352 | 0 | } |
353 | 0 | for (k=0; k<meml_gotten; k++) { |
354 | 0 | mem[CB_MEML-1-k] = decresidual[(start-1)*SUBL + k]; |
355 | 0 | } |
356 | 0 | memset(mem, 0, (CB_MEML-k)*sizeof(float)); |
357 | 0 | memset(weightState, 0, LPC_FILTERORDER*sizeof(float)); |
358 | | |
359 | | /* loop over sub-frames to encode */ |
360 | |
|
361 | 0 | for (subframe=0; subframe<Nback; subframe++) { |
362 | | |
363 | | /* encode sub-frame */ |
364 | |
|
365 | 0 | iCBSearch(iLBCenc_inst, cb_index+subcount*CB_NSTAGES, |
366 | | |
367 | | |
368 | | |
369 | | |
370 | |
|
371 | 0 | gain_index+subcount*CB_NSTAGES, |
372 | 0 | &reverseResidual[subframe*SUBL], |
373 | 0 | mem+CB_MEML-memLfTbl[subcount], |
374 | 0 | memLfTbl[subcount], SUBL, CB_NSTAGES, |
375 | 0 | &weightdenum[(start-2-subframe)* |
376 | 0 | (LPC_FILTERORDER+1)], |
377 | 0 | weightState, subcount+1); |
378 | | |
379 | | /* construct decoded vector */ |
380 | |
|
381 | 0 | iCBConstruct(&reverseDecresidual[subframe*SUBL], |
382 | 0 | cb_index+subcount*CB_NSTAGES, |
383 | 0 | gain_index+subcount*CB_NSTAGES, |
384 | 0 | mem+CB_MEML-memLfTbl[subcount], |
385 | 0 | memLfTbl[subcount], SUBL, CB_NSTAGES); |
386 | | |
387 | | /* update memory */ |
388 | |
|
389 | 0 | memmove(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float)); |
390 | 0 | memcpy(mem+CB_MEML-SUBL, |
391 | 0 | &reverseDecresidual[subframe*SUBL], |
392 | 0 | SUBL*sizeof(float)); |
393 | 0 | memset(weightState, 0, LPC_FILTERORDER*sizeof(float)); |
394 | |
|
395 | 0 | subcount++; |
396 | |
|
397 | 0 | } |
398 | | |
399 | | /* get decoded residual from reversed vector */ |
400 | |
|
401 | 0 | for (i=0; i<SUBL*Nback; i++) { |
402 | 0 | decresidual[SUBL*Nback - i - 1] = |
403 | 0 | reverseDecresidual[i]; |
404 | 0 | } |
405 | 0 | } |
406 | | /* end encoding part */ |
407 | | |
408 | | /* adjust index */ |
409 | 0 | index_conv_enc(cb_index); |
410 | | |
411 | | /* pack bytes */ |
412 | |
|
413 | 0 | pbytes=bytes; |
414 | 0 | pos=0; |
415 | | |
416 | | /* loop over the 3 ULP classes */ |
417 | |
|
418 | 0 | for (ulp=0; ulp<3; ulp++) { |
419 | | |
420 | | |
421 | | |
422 | | |
423 | | |
424 | | |
425 | | /* LSF */ |
426 | 0 | for (k=0; k<LSF_NSPLIT*iLBCenc_inst->lpc_n; k++) { |
427 | 0 | packsplit(&lsf_i[k], &firstpart, &lsf_i[k], |
428 | 0 | iLBCenc_inst->ULP_inst->lsf_bits[k][ulp], |
429 | 0 | iLBCenc_inst->ULP_inst->lsf_bits[k][ulp]+ |
430 | 0 | iLBCenc_inst->ULP_inst->lsf_bits[k][ulp+1]+ |
431 | 0 | iLBCenc_inst->ULP_inst->lsf_bits[k][ulp+2]); |
432 | 0 | dopack( &pbytes, firstpart, |
433 | 0 | iLBCenc_inst->ULP_inst->lsf_bits[k][ulp], &pos); |
434 | 0 | } |
435 | | |
436 | | /* Start block info */ |
437 | |
|
438 | 0 | packsplit(&start, &firstpart, &start, |
439 | 0 | iLBCenc_inst->ULP_inst->start_bits[ulp], |
440 | 0 | iLBCenc_inst->ULP_inst->start_bits[ulp]+ |
441 | 0 | iLBCenc_inst->ULP_inst->start_bits[ulp+1]+ |
442 | 0 | iLBCenc_inst->ULP_inst->start_bits[ulp+2]); |
443 | 0 | dopack( &pbytes, firstpart, |
444 | 0 | iLBCenc_inst->ULP_inst->start_bits[ulp], &pos); |
445 | |
|
446 | 0 | packsplit(&state_first, &firstpart, &state_first, |
447 | 0 | iLBCenc_inst->ULP_inst->startfirst_bits[ulp], |
448 | 0 | iLBCenc_inst->ULP_inst->startfirst_bits[ulp]+ |
449 | 0 | iLBCenc_inst->ULP_inst->startfirst_bits[ulp+1]+ |
450 | 0 | iLBCenc_inst->ULP_inst->startfirst_bits[ulp+2]); |
451 | 0 | dopack( &pbytes, firstpart, |
452 | 0 | iLBCenc_inst->ULP_inst->startfirst_bits[ulp], &pos); |
453 | |
|
454 | 0 | packsplit(&idxForMax, &firstpart, &idxForMax, |
455 | 0 | iLBCenc_inst->ULP_inst->scale_bits[ulp], |
456 | 0 | iLBCenc_inst->ULP_inst->scale_bits[ulp]+ |
457 | 0 | iLBCenc_inst->ULP_inst->scale_bits[ulp+1]+ |
458 | 0 | iLBCenc_inst->ULP_inst->scale_bits[ulp+2]); |
459 | 0 | dopack( &pbytes, firstpart, |
460 | 0 | iLBCenc_inst->ULP_inst->scale_bits[ulp], &pos); |
461 | |
|
462 | 0 | for (k=0; k<iLBCenc_inst->state_short_len; k++) { |
463 | 0 | packsplit(idxVec+k, &firstpart, idxVec+k, |
464 | 0 | iLBCenc_inst->ULP_inst->state_bits[ulp], |
465 | 0 | iLBCenc_inst->ULP_inst->state_bits[ulp]+ |
466 | 0 | iLBCenc_inst->ULP_inst->state_bits[ulp+1]+ |
467 | 0 | iLBCenc_inst->ULP_inst->state_bits[ulp+2]); |
468 | 0 | dopack( &pbytes, firstpart, |
469 | 0 | iLBCenc_inst->ULP_inst->state_bits[ulp], &pos); |
470 | 0 | } |
471 | | |
472 | | |
473 | | |
474 | | |
475 | | |
476 | | |
477 | | /* 23/22 (20ms/30ms) sample block */ |
478 | |
|
479 | 0 | for (k=0;k<CB_NSTAGES;k++) { |
480 | 0 | packsplit(extra_cb_index+k, &firstpart, |
481 | 0 | extra_cb_index+k, |
482 | 0 | iLBCenc_inst->ULP_inst->extra_cb_index[k][ulp], |
483 | 0 | iLBCenc_inst->ULP_inst->extra_cb_index[k][ulp]+ |
484 | 0 | iLBCenc_inst->ULP_inst->extra_cb_index[k][ulp+1]+ |
485 | 0 | iLBCenc_inst->ULP_inst->extra_cb_index[k][ulp+2]); |
486 | 0 | dopack( &pbytes, firstpart, |
487 | 0 | iLBCenc_inst->ULP_inst->extra_cb_index[k][ulp], |
488 | 0 | &pos); |
489 | 0 | } |
490 | |
|
491 | 0 | for (k=0;k<CB_NSTAGES;k++) { |
492 | 0 | packsplit(extra_gain_index+k, &firstpart, |
493 | 0 | extra_gain_index+k, |
494 | 0 | iLBCenc_inst->ULP_inst->extra_cb_gain[k][ulp], |
495 | 0 | iLBCenc_inst->ULP_inst->extra_cb_gain[k][ulp]+ |
496 | 0 | iLBCenc_inst->ULP_inst->extra_cb_gain[k][ulp+1]+ |
497 | 0 | iLBCenc_inst->ULP_inst->extra_cb_gain[k][ulp+2]); |
498 | 0 | dopack( &pbytes, firstpart, |
499 | 0 | iLBCenc_inst->ULP_inst->extra_cb_gain[k][ulp], |
500 | 0 | &pos); |
501 | 0 | } |
502 | | |
503 | | /* The two/four (20ms/30ms) 40 sample sub-blocks */ |
504 | |
|
505 | 0 | for (i=0; i<iLBCenc_inst->nasub; i++) { |
506 | 0 | for (k=0; k<CB_NSTAGES; k++) { |
507 | 0 | packsplit(cb_index+i*CB_NSTAGES+k, &firstpart, |
508 | 0 | cb_index+i*CB_NSTAGES+k, |
509 | 0 | iLBCenc_inst->ULP_inst->cb_index[i][k][ulp], |
510 | 0 | iLBCenc_inst->ULP_inst->cb_index[i][k][ulp]+ |
511 | 0 | iLBCenc_inst->ULP_inst->cb_index[i][k][ulp+1]+ |
512 | 0 | iLBCenc_inst->ULP_inst->cb_index[i][k][ulp+2]); |
513 | 0 | dopack( &pbytes, firstpart, |
514 | 0 | iLBCenc_inst->ULP_inst->cb_index[i][k][ulp], |
515 | 0 | &pos); |
516 | 0 | } |
517 | 0 | } |
518 | |
|
519 | 0 | for (i=0; i<iLBCenc_inst->nasub; i++) { |
520 | 0 | for (k=0; k<CB_NSTAGES; k++) { |
521 | 0 | packsplit(gain_index+i*CB_NSTAGES+k, &firstpart, |
522 | 0 | gain_index+i*CB_NSTAGES+k, |
523 | 0 | iLBCenc_inst->ULP_inst->cb_gain[i][k][ulp], |
524 | 0 | iLBCenc_inst->ULP_inst->cb_gain[i][k][ulp]+ |
525 | | |
526 | | |
527 | | |
528 | | |
529 | |
|
530 | 0 | iLBCenc_inst->ULP_inst->cb_gain[i][k][ulp+1]+ |
531 | 0 | iLBCenc_inst->ULP_inst->cb_gain[i][k][ulp+2]); |
532 | 0 | dopack( &pbytes, firstpart, |
533 | 0 | iLBCenc_inst->ULP_inst->cb_gain[i][k][ulp], |
534 | 0 | &pos); |
535 | 0 | } |
536 | 0 | } |
537 | 0 | } |
538 | | |
539 | | /* set the last bit to zero (otherwise the decoder |
540 | | will treat it as a lost frame) */ |
541 | 0 | dopack( &pbytes, 0, 1, &pos); |
542 | 0 | } |
543 | | |