aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/ilbc/doCPLC.c
blob: 863d6e0eddfc8bacdab9f7693ef40e09ce621f27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
 
/****************************************************************** 
 
    iLBC Speech Coder ANSI-C Source Code 
 
    doCPLC.c  
 
    Copyright (c) 2001, 
    Global IP Sound AB. 
    All rights reserved. 
 
******************************************************************/ 
 
#include <math.h> 
#include <string.h> 
 
#include "iLBC_define.h" 
#include "doCPLC.h"
 
/*----------------------------------------------------------------* 
 *  Compute cross correlation and pitch gain for pitch prediction 
 *  of last subframe at given lag. 
 *---------------------------------------------------------------*/ 
 
static void compCorr( 
    float *cc,      /* (o) cross correlation coefficient */ 
    float *gc,      /* (o) gain */ 
    float *buffer,  /* (i) signal buffer */ 
    int lag,    /* (i) pitch lag */ 
    int bLen,       /* (i) length of buffer */ 
    int sRange      /* (i) correlation search length */ 
){ 
    int i; 
    float ftmp1, ftmp2; 
     
    ftmp1 = 0.0; 
    ftmp2 = 0.0; 
    for (i=0; i<sRange; i++) { 
        ftmp1 += buffer[bLen-sRange+i] * 
            buffer[bLen-sRange+i-lag]; 
        ftmp2 += buffer[bLen-sRange+i-lag] *  
                buffer[bLen-sRange+i-lag]; 
    } 
 
    if (ftmp2 > 0.0) { 
        *cc = ftmp1*ftmp1/ftmp2; 
        *gc = (float)fabs(ftmp1/ftmp2); 
    } 
    else { 
        *cc = 0.0; 
        *gc = 0.0; 
    } 
} 
 
/*----------------------------------------------------------------* 
 *  Packet loss concealment routine. Conceals a residual signal 
 *  and LP parameters. If no packet loss, update state. 
 *---------------------------------------------------------------*/ 
 
void doThePLC( 
    float *PLCresidual, /* (o) concealed residual */  
    float *PLClpc,      /* (o) concealed LP parameters */   
    int PLI,        /* (i) packet loss indicator  
                               0 - no PL, 1 = PL */  
    float *decresidual, /* (i) decoded residual */ 
    float *lpc,         /* (i) decoded LPC (only used for no PL) */ 
    int inlag,          /* (i) pitch lag */ 
    iLBC_Dec_Inst_t *iLBCdec_inst  
                        /* (i/o) decoder instance */ 
){ 
    int lag=20, randlag; 
    float gain, maxcc; 
    float gain_comp, maxcc_comp; 
    int i, pick, offset; 
    float ftmp, ftmp1, randvec[BLOCKL], pitchfact; 
             
    /* Packet Loss */ 
 
    if (PLI == 1) { 
         
        (*iLBCdec_inst).consPLICount += 1; 
         
        /* if previous frame not lost,  
           determine pitch pred. gain */ 
         
        if ((*iLBCdec_inst).prevPLI != 1) { 
 
            /* Search around the previous lag to find the  
               best pitch period */ 
             
            lag=inlag-3; 
            compCorr(&maxcc, &gain, (*iLBCdec_inst).prevResidual, 
                    lag, BLOCKL, 60); 
            for (i=inlag-2;i<=inlag+3;i++) { 
                compCorr(&maxcc_comp, &gain_comp,  
                    (*iLBCdec_inst).prevResidual, 
                    i, BLOCKL, 60); 
                 
                if (maxcc_comp>maxcc) { 
                    maxcc=maxcc_comp; 
                    gain=gain_comp; 
                    lag=i; 
                } 
            } 
             
            if (gain > 1.0) { 
                gain = 1.0; 
            } 
        } 
 
        /* previous frame lost, use recorded lag and gain */ 
 
        else { 
            lag=(*iLBCdec_inst).prevLag; 
            gain=(*iLBCdec_inst).prevGain; 
        } 
         
        /* Attenuate signal and scale down pitch pred gain if  
           several frames lost consecutively */ 
 
         
        if ((*iLBCdec_inst).consPLICount > 1) { 
            gain *= (float)0.9; 
        } 
         
        /* Compute mixing factor of picth repeatition and noise */ 
 
         
        if (gain > PLC_XT_MIX) { 
            pitchfact = PLC_YT_MIX; 
        } else if (gain < PLC_XB_MIX) { 
            pitchfact = PLC_YB_MIX; 
        } else { 
            pitchfact = PLC_YB_MIX + (gain - PLC_XB_MIX) *  
                (PLC_YT_MIX-PLC_YB_MIX)/(PLC_XT_MIX-PLC_XB_MIX); 
        } 
         
        /* compute concealed residual */ 
 
        (*iLBCdec_inst).energy = 0.0; 
        for (i=0; i<BLOCKL; i++) { 
 
            /* noise component */ 
 
            (*iLBCdec_inst).seed=((*iLBCdec_inst).seed*69069L+1) &  
                (0x80000000L-1); 
            randlag = 50 + ((signed long) (*iLBCdec_inst).seed)%70; 
            pick = i - randlag; 
             
            if (pick < 0) { 
                randvec[i] = gain *  
                    (*iLBCdec_inst).prevResidual[BLOCKL+pick]; 
            } else { 
                randvec[i] = gain * randvec[pick]; 
            } 
 
            /* pitch repeatition component */ 
 
            pick = i - lag; 
             
            if (pick < 0) { 
                PLCresidual[i] = gain *  
                    (*iLBCdec_inst).prevResidual[BLOCKL+pick]; 
            } else { 
                PLCresidual[i] = gain * PLCresidual[pick]; 
            } 
 
            /* mix noise and pitch repeatition */ 
 
            PLCresidual[i] = (pitchfact * PLCresidual[i] + 
                ((float)1.0 - pitchfact) * randvec[i]); 
             
            (*iLBCdec_inst).energy += PLCresidual[i] *  
                PLCresidual[i]; 
        } 
         
        /* less than 30 dB, use only noise */ 
         
        if (sqrt((*iLBCdec_inst).energy/(float)BLOCKL) < 30.0) {  
            (*iLBCdec_inst).energy = 0.0; 
            gain=0.0; 
            for (i=0; i<BLOCKL; i++) { 
                PLCresidual[i] = randvec[i]; 
                (*iLBCdec_inst).energy += PLCresidual[i] *  
                    PLCresidual[i]; 
            } 
        } 
         
        /* conceal LPC by bandwidth expansion of old LPC */ 
 
        ftmp=PLC_BWEXPAND; 
        PLClpc[0]=(float)1.0; 
        for (i=1; i<LPC_FILTERORDER+1; i++) { 
            PLClpc[i] = ftmp * (*iLBCdec_inst).prevLpc[i]; 
            ftmp *= PLC_BWEXPAND; 
        } 
         
    } 
 
    /* previous frame lost and this frame OK, mixing in  
    with new frame */ 
 
    else if ((*iLBCdec_inst).prevPLI == 1) { 
         
        lag = (*iLBCdec_inst).prevLag; 
        gain = (*iLBCdec_inst).prevGain; 
         
        /* if pitch pred gain high, do overlap-add */ 
         
        if (gain >= PLC_GAINTHRESHOLD) {         
         
            /* Compute mixing factor of pitch repeatition  
            and noise */ 
             
            if (gain > PLC_XT_MIX) { 
                pitchfact = PLC_YT_MIX; 
            } else if (gain < PLC_XB_MIX) { 
                pitchfact = PLC_YB_MIX; 
            } else { 
                pitchfact = PLC_YB_MIX + (gain - PLC_XB_MIX) *  
                    (PLC_YT_MIX-PLC_YB_MIX)/(PLC_XT_MIX-PLC_XB_MIX); 
            } 
 
            /* compute concealed residual for 3 subframes */ 
 
            for (i=0; i<3*SUBL; i++) { 
                 
                (*iLBCdec_inst).seed=((*iLBCdec_inst).seed* 
                    69069L+1) & (0x80000000L-1); 
                randlag = 50 + ((signed long)  
                    (*iLBCdec_inst).seed)%70; 
                 
                /* noise component */ 
 
                pick = i - randlag; 
                 
                if (pick < 0) { 
                    randvec[i] = gain *  
                        (*iLBCdec_inst).prevResidual[BLOCKL+pick]; 
                } else { 
                    randvec[i] = gain * randvec[pick]; 
                } 
                 
                /* pitch repeatition component */ 
 
                pick = i - lag; 
                 
                if (pick < 0) { 
                    PLCresidual[i] = gain *  
                        (*iLBCdec_inst).prevResidual[BLOCKL+pick]; 
                } else { 
                    PLCresidual[i] = gain * PLCresidual[pick]; 
                } 
 
                /* mix noise and pitch repeatition */ 
 
                PLCresidual[i] = (pitchfact * PLCresidual[i] +  
                    ((float)1.0 - pitchfact) * randvec[i]); 
            } 
             
            /* interpolate concealed residual with actual  
               residual */ 
 
            offset = 3*SUBL; 
            for (i=0; i<offset; i++) { 
                ftmp1 = (float) (i+1) / (float) (offset+1); 
                ftmp = (float)1.0 - ftmp1; 
                PLCresidual[i]=PLCresidual[i]*ftmp+ 
                    decresidual[i]*ftmp1; 
            } 
             
            memcpy(PLCresidual+offset, decresidual+offset,  
                (BLOCKL-offset)*sizeof(float)); 
 
        } else { 
            memcpy(PLCresidual, decresidual, BLOCKL*sizeof(float)); 
        } 
 
        /* copy LPC */ 
 
        memcpy(PLClpc, lpc, (LPC_FILTERORDER+1)*sizeof(float)); 
                         
        (*iLBCdec_inst).consPLICount = 0; 
    } 
 
    /* no packet loss, copy input */ 
 
    else { 
        memcpy(PLCresidual, decresidual, BLOCKL*sizeof(float)); 
        memcpy(PLClpc, lpc, (LPC_FILTERORDER+1)*sizeof(float)); 
    } 
     
    /* update state */ 
 
    (*iLBCdec_inst).prevLag = lag; 
    (*iLBCdec_inst).prevGain = gain; 
    (*iLBCdec_inst).prevPLI = PLI; 
    memcpy((*iLBCdec_inst).prevLpc, PLClpc,  
        (LPC_FILTERORDER+1)*sizeof(float)); 
    memcpy((*iLBCdec_inst).prevResidual, PLCresidual, 
        BLOCKL*sizeof(float)); 
}