18045010223
2025-07-07 4d55075574ff1d55c1f56f89f5f3f95889258914
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
 
package cn.org.hentai.jtt1078.codec.g726;
 
import cn.org.hentai.jtt1078.codec.G711Codec;
import cn.org.hentai.jtt1078.codec.G711UCodec;
 
/** G726_32 encoder and decoder.
  * <p>
  * These routines comprise an implementation of the CCITT G.726 32kbps ADPCM
  * coding algorithm.  Essentially, this implementation is identical to
  * the bit level description except for a few deviations which
  * take advantage of work station attributes, such as hardware 2's
  * complement arithmetic and large memory.  Specifically, certain time
  * consuming operations such as multiplications are replaced
  * with lookup tables and software 2's complement operations are
  * replaced with hardware 2's complement.
  * <p>
  * The deviation from the bit level specification (lookup tables)
  * preserves the bit level performance specifications.
  * <p>
  * As outlined in the G.726 Recommendation, the algorithm is broken
  * down into modules.  Each section of code below is preceded by
  * the name of the module which it is implementing.
  * <p>
  * This implementation is based on the ANSI-C language reference implementations
  * of the CCITT (International Telegraph and Telephone Consultative Committee)
  * G.711, G.721 and G.723 voice compressions, provided by Sun Microsystems, Inc.
  * <p>
  * Acknowledgement to Sun Microsystems, Inc. for having released the original
  * ANSI-C source code to the public domain.
  */
public class G726_32 extends G726 {
    
    // ##### C-to-Java conversion: #####
    // short becomes int
    // char becomes int
    // unsigned char becomes int
 
 
    // *************************** STATIC ***************************
 
    static /*short*/int[] qtab_721={-124, 80, 178, 246, 300, 349, 400};
    /*
     * Maps G726_32 code word to reconstructed scale factor normalized log
     * magnitude values.
     */
    static /*short*/int[] _dqlntab={-2048, 4, 135, 213, 273, 323, 373, 425, 425, 373, 323, 273, 213, 135, 4, -2048};
    
    /* Maps G726_32 code word to log of scale factor multiplier. */
    static /*short*/int[] _witab={-12, 18, 41, 64, 112, 198, 355, 1122, 1122, 355, 198, 112, 64, 41, 18, -12};
 
    /*
     * Maps G726_32 code words to a set of values whose long and short
     * term averages are computed and then compared to give an indication
     * how stationary (steady state) the signal is.
     */
    static /*short*/int[] _fitab={0, 0, 0, 0x200, 0x200, 0x200, 0x600, 0xE00, 0xE00, 0x600, 0x200, 0x200, 0x200, 0, 0, 0};
    
    /** Encodes the input vale of linear PCM, A-law or u-law data sl and returns
      * the resulting code. -1 is returned for unknown input coding value. */
    public static int encode(int sl, int in_coding, G726State state) {
        
        /*short*/int sezi, se, sez; /* ACCUM */
        /*short*/int d; /* SUBTA */
        /*short*/int sr; /* ADDB */
        /*short*/int y; /* MIX */
        /*short*/int dqsez; /* ADDC */
        /*short*/int dq, i;
    
        switch (in_coding) {
            /* linearize input sample to 14-bit PCM */
            case AUDIO_ENCODING_ALAW:
                sl= G711Codec.alaw2linear((byte)sl) >> 2;
                break;
            case AUDIO_ENCODING_ULAW:
                sl= G711UCodec.ulaw2linear((byte)sl) >> 2;
                break;
            case AUDIO_ENCODING_LINEAR:
                sl >>= 2; /* 14-bit dynamic range */
                break;
            default:
                return -1;
        }
    
        sezi=state.predictor_zero();
        sez=sezi >> 1;
        se=(sezi+state.predictor_pole()) >> 1;   /* estimated signal */
    
        d=sl-se; /* estimation difference */
    
        /* quantize the prediction difference */
        y=state.step_size(); /* quantizer step size */
        i=quantize(d, y, qtab_721, 7); /* i=ADPCM code */
    
        dq=reconstruct(i & 8, _dqlntab[i], y); /* quantized est diff */
    
        sr=(dq<0)? se-(dq & 0x3FFF) : se+dq; /* reconst. signal */
    
        dqsez=sr+sez-se;        /* pole prediction diff. */
    
        update(4, y, _witab[i] << 5, _fitab[i], dq, sr, dqsez, state);
    
        return i;
    }
    
    /** Decodes a 4-bit code of G726_32 encoded data of i and
      * returns the resulting linear PCM, A-law or u-law value.
      * return -1 for unknown out_coding value. */
    public static int decode(int i, int out_coding, G726State state) {
        
        /*short*/int sezi, sei, sez, se; /* ACCUM */
        /*short*/int y; /* MIX */
        /*short*/int sr; /* ADDB */
        /*short*/int dq;
        /*short*/int dqsez;
    
        i &= 0x0f; /* mask to get proper bits */
        sezi=state.predictor_zero();
        sez=sezi >> 1;
        sei=sezi+state.predictor_pole();
        se=sei >> 1; /* se=estimated signal */
    
        y=state.step_size(); /* dynamic quantizer step size */
    
        dq=reconstruct(i & 0x08, _dqlntab[i], y); /* quantized diff. */
    
        sr=(dq<0)? (se-(dq & 0x3FFF)) : se+dq; /* reconst. signal */
    
        dqsez=sr-se+sez; /* pole prediction diff. */
    
        update(4, y, _witab[i] << 5, _fitab[i], dq, sr, dqsez, state);
    
        switch (out_coding) {
            
            case AUDIO_ENCODING_ALAW:
                return (tandem_adjust_alaw(sr, se, y, i, 8, qtab_721));
            case AUDIO_ENCODING_ULAW:
                return (tandem_adjust_ulaw(sr, se, y, i, 8, qtab_721));
            case AUDIO_ENCODING_LINEAR:
                return (sr << 2); /* sr was 14-bit dynamic range */
            default:
                return -1;
        }
    }
 
 
    /** Encodes the input chunk in_buff of linear PCM, A-law or u-law data and returns
      * the G726_32 encoded chuck into out_buff. <br>
      * It returns the actual size of the output data, or -1 in case of unknown
      * in_coding value. */
    public static int encode(byte[] in_buff, int in_offset, int in_len, int in_coding, byte[] out_buff, int out_offset, G726State state) {
        
        if (in_coding==AUDIO_ENCODING_ALAW || in_coding==AUDIO_ENCODING_ULAW) {
            
            /*
            for (int i=0; i<in_len; i++) {
                int in_value=in_buff[in_offset+i];
                int out_value=encode(in_value,in_coding,state);
                int i_div_2=i/2;
                if (i_div_2*2==i)
                    out_buff[out_offset+i_div_2]=(byte)(out_value<<4);
                else
                    out_buff[out_offset+i_div_2]=(byte)(out_value+unsignedInt(out_buff[out_offset+i_div_2]));
            }
            return in_len/2;
            */
            int len_div_2=in_len/2;
            for (int i=0; i<len_div_2; i++) {
                int in_index=in_offset+i*2;
                int in_value1=in_buff[in_index];
                int in_value2=in_buff[in_index+1];
                int out_value1=encode(in_value1,in_coding,state);        
                int out_value2=encode(in_value2,in_coding,state);      
                out_buff[out_offset+i]=(byte)((out_value1<<4) + out_value2);
            }
            return len_div_2;
        }
        else
        if (in_coding==AUDIO_ENCODING_LINEAR) {
            
            int len_div_4=in_len/4;
            for (int i=0; i<len_div_4; i++) {
                int in_index=in_offset+i*4;
                int in_value1=signedIntLittleEndian(in_buff[in_index+1],in_buff[in_index+0]);
                int in_value2=signedIntLittleEndian(in_buff[in_index+3],in_buff[in_index+2]);
 
                //int out_value1=encode(G711.linear2ulaw(in_value1),AUDIO_ENCODING_ULAW,state);        
                //int out_value2=encode(G711.linear2ulaw(in_value2),AUDIO_ENCODING_ULAW,state);      
                int out_value1=encode(in_value1,in_coding,state);        
                int out_value2=encode(in_value2,in_coding,state);      
                out_buff[out_offset+i]=(byte)((out_value1<<4) + out_value2);
            }
            return len_div_4;
        }
        else return -1;
    }
 
 
    /** Decodes the input chunk in_buff of G726_32 encoded data and returns
      * the linear PCM, A-law or u-law chunk into out_buff. <br>
      * It returns the actual size of the output data, or -1 in case of unknown
      * out_coding value. */
    public static int decode(byte[] in_buff, int in_offset, int in_len, int out_coding, byte[] out_buff, int out_offset, G726State state) {
        
        if (out_coding==AUDIO_ENCODING_ALAW || out_coding==AUDIO_ENCODING_ULAW) {
            
            /*
            for (int i=0; i<in_len*2; i++) {
                int in_value=unsignedInt(in_buff[in_offset+i/2]);
                if ((i/2)*2==i)
                    in_value>>=4;
                else
                    in_value%=0x10; 
                int out_value=decode(in_value,out_coding,state);  
                out_buff[out_offset+i]=(byte)out_value;
            }
            return in_len*2;
            */
            for (int i=0; i<in_len; i++) {
                int in_value=unsignedInt(in_buff[in_offset+i]);
                int out_value1=decode(in_value>>4,out_coding,state);  
                int out_value2=decode(in_value&0xF,out_coding,state);
                int out_index=out_offset+i*2;
                out_buff[out_index]=(byte)out_value1;
                out_buff[out_index+1]=(byte)out_value2;
            }
            return in_len*2;
        }
        else
        if (out_coding==AUDIO_ENCODING_LINEAR) {
            
            for (int i=0; i<in_len; i++) {
                int in_value=unsignedInt(in_buff[in_offset+i]);
                //int out_value1=G711.ulaw2linear(decode(in_value>>4,AUDIO_ENCODING_ULAW,state));  
                //int out_value2=G711.ulaw2linear(decode(in_value&0xF,AUDIO_ENCODING_ULAW,state));
                int out_value1=decode(in_value>>4,out_coding,state);  
                int out_value2=decode(in_value&0xF,out_coding,state);
                int out_index=out_offset+i*4;
                out_buff[out_index]=(byte)(out_value1&0xFF);
                out_buff[out_index+1]=(byte)(out_value1>>8);
                out_buff[out_index+2]=(byte)(out_value2&0xFF);
                out_buff[out_index+3]=(byte)(out_value2>>8);
            }
            return in_len*4;
        }
        else return -1;
    }
 
 
    // ************************* NON-STATIC *************************
 
    /** Creates a new G726_32 processor, that can be used to encode from or decode do PCM audio data. */
    public G726_32() {
        super(32000);
    }
 
 
    /** Encodes the input vale of linear PCM, A-law or u-law data sl and returns
      * the resulting code. -1 is returned for unknown input coding value. */
    public int encode(int sl, int in_coding) {
        return encode(sl,in_coding,state);
    }
 
    /** Encodes the input chunk in_buff of linear PCM, A-law or u-law data and returns
      * the G726_32 encoded chuck into out_buff. <br>
      * It returns the actual size of the output data, or -1 in case of unknown
      * in_coding value. */
    public int encode(byte[] in_buff, int in_offset, int in_len, int in_coding, byte[] out_buff, int out_offset) {
        return encode(in_buff,in_offset,in_len,in_coding,out_buff,out_offset,state);
    }
 
 
    /** Decodes a 4-bit code of G726_32 encoded data of i and
      * returns the resulting linear PCM, A-law or u-law value.
      * return -1 for unknown out_coding value. */
    public int decode(int i, int out_coding) {
        return decode(i,out_coding,state);
    }
 
 
    /** Decodes the input chunk in_buff of G726_32 encoded data and returns
      * the linear PCM, A-law or u-law chunk into out_buff. <br>
      * It returns the actual size of the output data, or -1 in case of unknown
      * out_coding value. */
    public int decode(byte[] in_buff, int in_offset, int in_len, int out_coding, byte[] out_buff, int out_offset) {
        return decode(in_buff,in_offset,in_len,out_coding,out_buff,out_offset,state);
    }
 
}