Coverage Report

Created: 2026-03-12 06:59

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/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
216
   ){
40
216
       iLBCenc_inst->mode = mode;
41
216
       if (mode==30) {
42
216
           iLBCenc_inst->blockl = BLOCKL_30MS;
43
216
           iLBCenc_inst->nsub = NSUB_30MS;
44
216
           iLBCenc_inst->nasub = NASUB_30MS;
45
216
           iLBCenc_inst->lpc_n = LPC_N_30MS;
46
216
           iLBCenc_inst->no_of_bytes = NO_OF_BYTES_30MS;
47
216
           iLBCenc_inst->no_of_words = NO_OF_WORDS_30MS;
48
49
50
51
52
53
216
           iLBCenc_inst->state_short_len=STATE_SHORT_LEN_30MS;
54
           /* ULP init */
55
216
           iLBCenc_inst->ULP_inst=&ULP_30msTbl;
56
216
       }
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
216
       memset((*iLBCenc_inst).anaMem, 0,
73
216
           LPC_FILTERORDER*sizeof(float));
74
216
       memcpy((*iLBCenc_inst).lsfold, lsfmeanTbl,
75
216
           LPC_FILTERORDER*sizeof(float));
76
216
       memcpy((*iLBCenc_inst).lsfdeqold, lsfmeanTbl,
77
216
           LPC_FILTERORDER*sizeof(float));
78
216
       memset((*iLBCenc_inst).lpc_buffer, 0,
79
216
           (LPC_LOOKBACK+BLOCKL_MAX)*sizeof(float));
80
216
       memset((*iLBCenc_inst).hpimem, 0, 4*sizeof(float));
81
82
216
       return (short)(iLBCenc_inst->no_of_bytes);
83
216
   }
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
215
   ){
96
97
215
       float data[BLOCKL_MAX];
98
215
       float residual[BLOCKL_MAX], reverseResidual[BLOCKL_MAX];
99
100
215
       int start, idxForMax, idxVec[STATE_LEN];
101
102
103
104
105
106
215
       float reverseDecresidual[BLOCKL_MAX], mem[CB_MEML];
107
215
       int n, k, meml_gotten, Nfor, Nback, i, pos;
108
215
       int gain_index[CB_NSTAGES*NASUB_MAX],
109
215
           extra_gain_index[CB_NSTAGES];
110
215
       int cb_index[CB_NSTAGES*NASUB_MAX],extra_cb_index[CB_NSTAGES];
111
215
       int lsf_i[LSF_NSPLIT*LPC_N_MAX];
112
215
       unsigned char *pbytes;
113
215
       int diff, start_pos, state_first;
114
215
       float en1, en2;
115
215
       int index, ulp, firstpart;
116
215
       int subcount, subframe;
117
215
       float weightState[LPC_FILTERORDER];
118
215
       float syntdenum[NSUB_MAX*(LPC_FILTERORDER+1)];
119
215
       float weightdenum[NSUB_MAX*(LPC_FILTERORDER+1)];
120
215
       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
215
       hpInput(block, iLBCenc_inst->blockl,
126
215
                   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
215
       LPCencode(syntdenum, weightdenum, lsf_i, data, iLBCenc_inst);
135
136
137
       /* inverse filter to get residual */
138
139
1.50k
       for (n=0; n<iLBCenc_inst->nsub; n++) {
140
1.29k
           anaFilter(&data[n*SUBL], &syntdenum[n*(LPC_FILTERORDER+1)],
141
1.29k
               SUBL, &residual[n*SUBL], iLBCenc_inst->anaMem);
142
1.29k
       }
143
144
       /* find state location */
145
146
215
       start = FrameClassify(iLBCenc_inst, residual);
147
148
       /* check if state should be in first or last part of the
149
       two subframes */
150
151
215
       diff = STATE_LEN - iLBCenc_inst->state_short_len;
152
215
       en1 = 0;
153
215
       index = (start-1)*SUBL;
154
155
156
157
158
159
12.6k
       for (i = 0; i < iLBCenc_inst->state_short_len; i++) {
160
12.4k
           en1 += residual[index+i]*residual[index+i];
161
12.4k
       }
162
215
       en2 = 0;
163
215
       index = (start-1)*SUBL+diff;
164
12.6k
       for (i = 0; i < iLBCenc_inst->state_short_len; i++) {
165
12.4k
           en2 += residual[index+i]*residual[index+i];
166
12.4k
       }
167
168
169
215
       if (en1 > en2) {
170
106
           state_first = 1;
171
106
           start_pos = (start-1)*SUBL;
172
109
       } else {
173
109
           state_first = 0;
174
109
           start_pos = (start-1)*SUBL + diff;
175
109
       }
176
177
       /* scalar quantization of state */
178
179
215
       StateSearchW(iLBCenc_inst, &residual[start_pos],
180
215
           &syntdenum[(start-1)*(LPC_FILTERORDER+1)],
181
215
           &weightdenum[(start-1)*(LPC_FILTERORDER+1)], &idxForMax,
182
215
           idxVec, iLBCenc_inst->state_short_len, state_first);
183
184
215
       StateConstructW(idxForMax, idxVec,
185
215
           &syntdenum[(start-1)*(LPC_FILTERORDER+1)],
186
215
           &decresidual[start_pos], iLBCenc_inst->state_short_len);
187
188
       /* predictive quantization in state */
189
190
215
       if (state_first) { /* put adaptive part in the end */
191
192
           /* setup memory */
193
194
106
           memset(mem, 0,
195
106
               (CB_MEML-iLBCenc_inst->state_short_len)*sizeof(float));
196
106
           memcpy(mem+CB_MEML-iLBCenc_inst->state_short_len,
197
106
               decresidual+start_pos,
198
106
               iLBCenc_inst->state_short_len*sizeof(float));
199
106
           memset(weightState, 0, LPC_FILTERORDER*sizeof(float));
200
201
           /* encode sub-frames */
202
203
106
           iCBSearch(iLBCenc_inst, extra_cb_index, extra_gain_index,
204
106
               &residual[start_pos+iLBCenc_inst->state_short_len],
205
106
               mem+CB_MEML-stMemLTbl,
206
106
               stMemLTbl, diff, CB_NSTAGES,
207
208
209
210
211
212
106
               &weightdenum[start*(LPC_FILTERORDER+1)],
213
106
               weightState, 0);
214
215
           /* construct decoded vector */
216
217
106
           iCBConstruct(
218
106
               &decresidual[start_pos+iLBCenc_inst->state_short_len],
219
106
               extra_cb_index, extra_gain_index,
220
106
               mem+CB_MEML-stMemLTbl,
221
106
               stMemLTbl, diff, CB_NSTAGES);
222
223
106
       }
224
109
       else { /* put adaptive part in the beginning */
225
226
           /* create reversed vectors for prediction */
227
228
2.50k
           for (k=0; k<diff; k++) {
229
2.39k
               reverseResidual[k] = residual[(start+1)*SUBL-1
230
2.39k
                   -(k+iLBCenc_inst->state_short_len)];
231
2.39k
           }
232
233
           /* setup memory */
234
235
109
           meml_gotten = iLBCenc_inst->state_short_len;
236
6.43k
           for (k=0; k<meml_gotten; k++) {
237
6.32k
               mem[CB_MEML-1-k] = decresidual[start_pos + k];
238
6.32k
           }
239
109
           memset(mem, 0, (CB_MEML-k)*sizeof(float));
240
109
           memset(weightState, 0, LPC_FILTERORDER*sizeof(float));
241
242
           /* encode sub-frames */
243
244
109
           iCBSearch(iLBCenc_inst, extra_cb_index, extra_gain_index,
245
109
               reverseResidual, mem+CB_MEML-stMemLTbl, stMemLTbl,
246
109
               diff, CB_NSTAGES,
247
109
               &weightdenum[(start-1)*(LPC_FILTERORDER+1)],
248
109
               weightState, 0);
249
250
           /* construct decoded vector */
251
252
109
           iCBConstruct(reverseDecresidual, extra_cb_index,
253
109
               extra_gain_index, mem+CB_MEML-stMemLTbl, stMemLTbl,
254
109
               diff, CB_NSTAGES);
255
256
           /* get decoded residual from reversed vector */
257
258
2.50k
           for (k=0; k<diff; k++) {
259
2.39k
               decresidual[start_pos-1-k] = reverseDecresidual[k];
260
261
262
263
264
265
2.39k
           }
266
109
       }
267
268
       /* counter for predicted sub-frames */
269
270
215
       subcount=0;
271
272
       /* forward prediction of sub-frames */
273
274
215
       Nfor = iLBCenc_inst->nsub-start-1;
275
276
277
215
       if ( Nfor > 0 ) {
278
279
           /* setup memory */
280
281
141
           memset(mem, 0, (CB_MEML-STATE_LEN)*sizeof(float));
282
141
           memcpy(mem+CB_MEML-STATE_LEN, decresidual+(start-1)*SUBL,
283
141
               STATE_LEN*sizeof(float));
284
141
           memset(weightState, 0, LPC_FILTERORDER*sizeof(float));
285
286
           /* loop over sub-frames to encode */
287
288
528
           for (subframe=0; subframe<Nfor; subframe++) {
289
290
               /* encode sub-frame */
291
292
387
               iCBSearch(iLBCenc_inst, cb_index+subcount*CB_NSTAGES,
293
387
                   gain_index+subcount*CB_NSTAGES,
294
387
                   &residual[(start+1+subframe)*SUBL],
295
387
                   mem+CB_MEML-memLfTbl[subcount],
296
387
                   memLfTbl[subcount], SUBL, CB_NSTAGES,
297
387
                   &weightdenum[(start+1+subframe)*
298
387
                               (LPC_FILTERORDER+1)],
299
387
                   weightState, subcount+1);
300
301
               /* construct decoded vector */
302
303
387
               iCBConstruct(&decresidual[(start+1+subframe)*SUBL],
304
387
                   cb_index+subcount*CB_NSTAGES,
305
387
                   gain_index+subcount*CB_NSTAGES,
306
387
                   mem+CB_MEML-memLfTbl[subcount],
307
387
                   memLfTbl[subcount], SUBL, CB_NSTAGES);
308
309
               /* update memory */
310
311
387
               memmove(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float));
312
387
               memcpy(mem+CB_MEML-SUBL,
313
314
315
316
317
318
387
                   &decresidual[(start+1+subframe)*SUBL],
319
387
                   SUBL*sizeof(float));
320
387
               memset(weightState, 0, LPC_FILTERORDER*sizeof(float));
321
322
387
               subcount++;
323
387
           }
324
141
       }
325
326
327
       /* backward prediction of sub-frames */
328
329
215
       Nback = start-1;
330
331
332
215
       if ( Nback > 0 ) {
333
334
           /* create reverse order vectors */
335
336
628
           for (n=0; n<Nback; n++) {
337
19.3k
               for (k=0; k<SUBL; k++) {
338
18.9k
                   reverseResidual[n*SUBL+k] =
339
18.9k
                       residual[(start-1)*SUBL-1-n*SUBL-k];
340
18.9k
                   reverseDecresidual[n*SUBL+k] =
341
18.9k
                       decresidual[(start-1)*SUBL-1-n*SUBL-k];
342
18.9k
               }
343
473
           }
344
345
           /* setup memory */
346
347
155
           meml_gotten = SUBL*(iLBCenc_inst->nsub+1-start);
348
349
350
155
           if ( meml_gotten > CB_MEML ) {
351
53
               meml_gotten=CB_MEML;
352
53
           }
353
17.2k
           for (k=0; k<meml_gotten; k++) {
354
17.0k
               mem[CB_MEML-1-k] = decresidual[(start-1)*SUBL + k];
355
17.0k
           }
356
155
           memset(mem, 0, (CB_MEML-k)*sizeof(float));
357
155
           memset(weightState, 0, LPC_FILTERORDER*sizeof(float));
358
359
           /* loop over sub-frames to encode */
360
361
628
           for (subframe=0; subframe<Nback; subframe++) {
362
363
               /* encode sub-frame */
364
365
473
               iCBSearch(iLBCenc_inst, cb_index+subcount*CB_NSTAGES,
366
367
368
369
370
371
473
                   gain_index+subcount*CB_NSTAGES,
372
473
                   &reverseResidual[subframe*SUBL],
373
473
                   mem+CB_MEML-memLfTbl[subcount],
374
473
                   memLfTbl[subcount], SUBL, CB_NSTAGES,
375
473
                   &weightdenum[(start-2-subframe)*
376
473
                               (LPC_FILTERORDER+1)],
377
473
                   weightState, subcount+1);
378
379
               /* construct decoded vector */
380
381
473
               iCBConstruct(&reverseDecresidual[subframe*SUBL],
382
473
                   cb_index+subcount*CB_NSTAGES,
383
473
                   gain_index+subcount*CB_NSTAGES,
384
473
                   mem+CB_MEML-memLfTbl[subcount],
385
473
                   memLfTbl[subcount], SUBL, CB_NSTAGES);
386
387
               /* update memory */
388
389
473
               memmove(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float));
390
473
               memcpy(mem+CB_MEML-SUBL,
391
473
                   &reverseDecresidual[subframe*SUBL],
392
473
                   SUBL*sizeof(float));
393
473
               memset(weightState, 0, LPC_FILTERORDER*sizeof(float));
394
395
473
               subcount++;
396
397
473
           }
398
399
           /* get decoded residual from reversed vector */
400
401
19.0k
           for (i=0; i<SUBL*Nback; i++) {
402
18.9k
               decresidual[SUBL*Nback - i - 1] =
403
18.9k
                   reverseDecresidual[i];
404
18.9k
           }
405
155
       }
406
       /* end encoding part */
407
408
       /* adjust index */
409
215
       index_conv_enc(cb_index);
410
411
       /* pack bytes */
412
413
215
       pbytes=bytes;
414
215
       pos=0;
415
416
       /* loop over the 3 ULP classes */
417
418
860
       for (ulp=0; ulp<3; ulp++) {
419
420
421
422
423
424
425
           /* LSF */
426
4.51k
           for (k=0; k<LSF_NSPLIT*iLBCenc_inst->lpc_n; k++) {
427
3.87k
               packsplit(&lsf_i[k], &firstpart, &lsf_i[k],
428
3.87k
                   iLBCenc_inst->ULP_inst->lsf_bits[k][ulp],
429
3.87k
                   iLBCenc_inst->ULP_inst->lsf_bits[k][ulp]+
430
3.87k
                   iLBCenc_inst->ULP_inst->lsf_bits[k][ulp+1]+
431
3.87k
                   iLBCenc_inst->ULP_inst->lsf_bits[k][ulp+2]);
432
3.87k
               dopack( &pbytes, firstpart,
433
3.87k
                   iLBCenc_inst->ULP_inst->lsf_bits[k][ulp], &pos);
434
3.87k
           }
435
436
           /* Start block info */
437
438
645
           packsplit(&start, &firstpart, &start,
439
645
               iLBCenc_inst->ULP_inst->start_bits[ulp],
440
645
               iLBCenc_inst->ULP_inst->start_bits[ulp]+
441
645
               iLBCenc_inst->ULP_inst->start_bits[ulp+1]+
442
645
               iLBCenc_inst->ULP_inst->start_bits[ulp+2]);
443
645
           dopack( &pbytes, firstpart,
444
645
               iLBCenc_inst->ULP_inst->start_bits[ulp], &pos);
445
446
645
           packsplit(&state_first, &firstpart, &state_first,
447
645
               iLBCenc_inst->ULP_inst->startfirst_bits[ulp],
448
645
               iLBCenc_inst->ULP_inst->startfirst_bits[ulp]+
449
645
               iLBCenc_inst->ULP_inst->startfirst_bits[ulp+1]+
450
645
               iLBCenc_inst->ULP_inst->startfirst_bits[ulp+2]);
451
645
           dopack( &pbytes, firstpart,
452
645
               iLBCenc_inst->ULP_inst->startfirst_bits[ulp], &pos);
453
454
645
           packsplit(&idxForMax, &firstpart, &idxForMax,
455
645
               iLBCenc_inst->ULP_inst->scale_bits[ulp],
456
645
               iLBCenc_inst->ULP_inst->scale_bits[ulp]+
457
645
               iLBCenc_inst->ULP_inst->scale_bits[ulp+1]+
458
645
               iLBCenc_inst->ULP_inst->scale_bits[ulp+2]);
459
645
           dopack( &pbytes, firstpart,
460
645
               iLBCenc_inst->ULP_inst->scale_bits[ulp], &pos);
461
462
38.0k
           for (k=0; k<iLBCenc_inst->state_short_len; k++) {
463
37.4k
               packsplit(idxVec+k, &firstpart, idxVec+k,
464
37.4k
                   iLBCenc_inst->ULP_inst->state_bits[ulp],
465
37.4k
                   iLBCenc_inst->ULP_inst->state_bits[ulp]+
466
37.4k
                   iLBCenc_inst->ULP_inst->state_bits[ulp+1]+
467
37.4k
                   iLBCenc_inst->ULP_inst->state_bits[ulp+2]);
468
37.4k
               dopack( &pbytes, firstpart,
469
37.4k
                   iLBCenc_inst->ULP_inst->state_bits[ulp], &pos);
470
37.4k
           }
471
472
473
474
475
476
477
           /* 23/22 (20ms/30ms) sample block */
478
479
2.58k
           for (k=0;k<CB_NSTAGES;k++) {
480
1.93k
               packsplit(extra_cb_index+k, &firstpart,
481
1.93k
                   extra_cb_index+k,
482
1.93k
                   iLBCenc_inst->ULP_inst->extra_cb_index[k][ulp],
483
1.93k
                   iLBCenc_inst->ULP_inst->extra_cb_index[k][ulp]+
484
1.93k
                   iLBCenc_inst->ULP_inst->extra_cb_index[k][ulp+1]+
485
1.93k
                   iLBCenc_inst->ULP_inst->extra_cb_index[k][ulp+2]);
486
1.93k
               dopack( &pbytes, firstpart,
487
1.93k
                   iLBCenc_inst->ULP_inst->extra_cb_index[k][ulp],
488
1.93k
                   &pos);
489
1.93k
           }
490
491
2.58k
           for (k=0;k<CB_NSTAGES;k++) {
492
1.93k
               packsplit(extra_gain_index+k, &firstpart,
493
1.93k
                   extra_gain_index+k,
494
1.93k
                   iLBCenc_inst->ULP_inst->extra_cb_gain[k][ulp],
495
1.93k
                   iLBCenc_inst->ULP_inst->extra_cb_gain[k][ulp]+
496
1.93k
                   iLBCenc_inst->ULP_inst->extra_cb_gain[k][ulp+1]+
497
1.93k
                   iLBCenc_inst->ULP_inst->extra_cb_gain[k][ulp+2]);
498
1.93k
               dopack( &pbytes, firstpart,
499
1.93k
                   iLBCenc_inst->ULP_inst->extra_cb_gain[k][ulp],
500
1.93k
                   &pos);
501
1.93k
           }
502
503
           /* The two/four (20ms/30ms) 40 sample sub-blocks */
504
505
3.22k
           for (i=0; i<iLBCenc_inst->nasub; i++) {
506
10.3k
               for (k=0; k<CB_NSTAGES; k++) {
507
7.74k
                   packsplit(cb_index+i*CB_NSTAGES+k, &firstpart,
508
7.74k
                       cb_index+i*CB_NSTAGES+k,
509
7.74k
                       iLBCenc_inst->ULP_inst->cb_index[i][k][ulp],
510
7.74k
                       iLBCenc_inst->ULP_inst->cb_index[i][k][ulp]+
511
7.74k
                       iLBCenc_inst->ULP_inst->cb_index[i][k][ulp+1]+
512
7.74k
                       iLBCenc_inst->ULP_inst->cb_index[i][k][ulp+2]);
513
7.74k
                   dopack( &pbytes, firstpart,
514
7.74k
                       iLBCenc_inst->ULP_inst->cb_index[i][k][ulp],
515
7.74k
                       &pos);
516
7.74k
               }
517
2.58k
           }
518
519
3.22k
           for (i=0; i<iLBCenc_inst->nasub; i++) {
520
10.3k
               for (k=0; k<CB_NSTAGES; k++) {
521
7.74k
                   packsplit(gain_index+i*CB_NSTAGES+k, &firstpart,
522
7.74k
                       gain_index+i*CB_NSTAGES+k,
523
7.74k
                       iLBCenc_inst->ULP_inst->cb_gain[i][k][ulp],
524
7.74k
                       iLBCenc_inst->ULP_inst->cb_gain[i][k][ulp]+
525
526
527
528
529
530
7.74k
                       iLBCenc_inst->ULP_inst->cb_gain[i][k][ulp+1]+
531
7.74k
                       iLBCenc_inst->ULP_inst->cb_gain[i][k][ulp+2]);
532
7.74k
                   dopack( &pbytes, firstpart,
533
7.74k
                       iLBCenc_inst->ULP_inst->cb_gain[i][k][ulp],
534
7.74k
                       &pos);
535
7.74k
               }
536
2.58k
           }
537
645
       }
538
539
       /* set the last bit to zero (otherwise the decoder
540
          will treat it as a lost frame) */
541
215
       dopack( &pbytes, 0, 1, &pos);
542
215
   }
543