d0f217dc8c3a872909493a3c132b69bb5ae9c6fb
[IRC.git] / Robust / src / Benchmarks / SSJava / MP3DecoderInfer / LayerIIIDecoder.java
1 /*
2  * 11/19/04      1.0 moved to LGPL.
3  * 
4  * 18/06/01  Michael Scheerer,  Fixed bugs which causes
5  *           negative indexes in method huffmann_decode and in method 
6  *           dequanisize_sample.
7  *
8  * 16/07/01  Michael Scheerer, Catched a bug in method
9  *           huffmann_decode, which causes an outOfIndexException.
10  *           Cause : Indexnumber of 24 at SfBandIndex,
11  *           which has only a length of 22. I have simply and dirty 
12  *           fixed the index to <= 22, because I'm not really be able
13  *           to fix the bug. The Indexnumber is taken from the MP3 
14  *           file and the origin Ma-Player with the same code works 
15  *           well.      
16  * 
17  * 02/19/99  Java Conversion by E.B, javalayer@javazoom.net
18  *-----------------------------------------------------------------------
19  *   This program is free software; you can redistribute it and/or modify
20  *   it under the terms of the GNU Library General Public License as published
21  *   by the Free Software Foundation; either version 2 of the License, or
22  *   (at your option) any later version.
23  *
24  *   This program is distributed in the hope that it will be useful,
25  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
26  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  *   GNU Library General Public License for more details.
28  *
29  *   You should have received a copy of the GNU Library General Public
30  *   License along with this program; if not, write to the Free Software
31  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32  *----------------------------------------------------------------------
33  */
34
35 /**
36  * Class Implementing Layer 3 Decoder.
37  * 
38  * @since 0.0
39  */
40 //
41 // 4th line added for hybrid.
42 // 5th added for stereo
43 // 6th added for reorder method
44 // 7th added for huffman_decode method
45 // 8th added for get_LSF_scale_data
46 // 9th added for get_LSF_scale_factors
47 // 10th added for get_scale_factors
48 // llth added for decode
49 //
50
51 final class LayerIIIDecoder implements FrameDecoder {
52   static final double d43 = (4.0 / 3.0);
53
54   public int[] scalefac_buffer;
55
56   // MDM: removed, as this wasn't being used.
57   // private float CheckSumOut1d = 0.0f;
58
59   private int CheckSumHuff = 0;
60
61   private int[] is_1d;
62
63   private float[][][] ro;
64
65   private float[][][] lr;
66
67   private float[] inter; // 576 samples
68
69   private float[] out_1d; // 576 samples
70
71   private float[][] prevblck;
72
73   private float[][] k;
74
75   private int[] nonzero;
76
77   private SynthesisFilter filter1;
78
79   private SynthesisFilter filter2;
80   //
81   // private Obuffer buffer; // output buffer
82
83   private int which_channels;
84
85   private BitReserve br;
86
87   private III_side_info_t si;
88
89   // private temporaire2[] III_scalefac_t;
90
91   private final temporaire2[] scalefac;
92   // private III_scalefac_t scalefac;
93
94   private int max_gr;
95
96   private int frame_start;
97   // private int part2_start;
98
99   private final int channels;
100
101   private int first_channel;
102
103   private int last_channel;
104
105   private int sfreq;
106
107   private int part2_start;
108
109   private boolean initialized = false;
110
111   float[][] raw_full; // 18 left shfited since it will be copied into prevblck!
112
113   // constructor for the linear type system
114   public LayerIIIDecoder(Header h, @DELEGATE SynthesisFilter filtera,
115       @DELEGATE SynthesisFilter filterb, int which_ch0) {
116
117     filter_pos = 11;
118     raw_full = new float[2][SBLIMIT * SSLIMIT];
119
120     filter1 = filtera;
121     filter2 = filterb;
122
123     huffcodetab.inithuff();
124     is_1d = new int[SBLIMIT * SSLIMIT + 4];
125     ro = new float[2][SBLIMIT][SSLIMIT];
126     lr = new float[2][SBLIMIT][SSLIMIT];
127     out_1d = new float[SBLIMIT * SSLIMIT];
128     inter = new float[SBLIMIT * SSLIMIT];
129     prevblck = new float[2][SBLIMIT * SSLIMIT];
130     k = new float[2][SBLIMIT * SSLIMIT];
131     nonzero = new int[2];
132
133     // removes unnecessary aliases
134     // III_scalefact_t
135     // III_scalefac_t = new temporaire2[2];
136     // III_scalefac_t[0] = new temporaire2();
137     // III_scalefac_t[1] = new temporaire2();
138     // scalefac = III_scalefac_t;
139
140     scalefac = new temporaire2[2];
141     scalefac[0] = new temporaire2();
142     scalefac[1] = new temporaire2();
143
144     // L3TABLE INIT
145
146     sfBandIndex = new SBI[9]; // SZD: MPEG2.5 +3 indices
147     int[] l0 = { 0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238, 284, 336, 396, 464, 522, 576 };
148     int[] s0 = { 0, 4, 8, 12, 18, 24, 32, 42, 56, 74, 100, 132, 174, 192 };
149     int[] l1 = { 0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 114, 136, 162, 194, 232, 278, 330, 394, 464, 540, 576 };
150     int[] s1 = { 0, 4, 8, 12, 18, 26, 36, 48, 62, 80, 104, 136, 180, 192 };
151     int[] l2 = { 0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238, 284, 336, 396, 464, 522, 576 };
152     int[] s2 = { 0, 4, 8, 12, 18, 26, 36, 48, 62, 80, 104, 134, 174, 192 };
153
154     int[] l3 = { 0, 4, 8, 12, 16, 20, 24, 30, 36, 44, 52, 62, 74, 90, 110, 134, 162, 196, 238, 288, 342, 418, 576 };
155     int[] s3 = { 0, 4, 8, 12, 16, 22, 30, 40, 52, 66, 84, 106, 136, 192 };
156     int[] l4 = { 0, 4, 8, 12, 16, 20, 24, 30, 36, 42, 50, 60, 72, 88, 106, 128, 156, 190, 230, 276, 330, 384, 576 };
157     int[] s4 = { 0, 4, 8, 12, 16, 22, 28, 38, 50, 64, 80, 100, 126, 192 };
158     int[] l5 = { 0, 4, 8, 12, 16, 20, 24, 30, 36, 44, 54, 66, 82, 102, 126, 156, 194, 240, 296, 364, 448, 550, 576 };
159     int[] s5 = { 0, 4, 8, 12, 16, 22, 30, 42, 58, 78, 104, 138, 180, 192 };
160     // SZD: MPEG2.5
161     int[] l6 = { 0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238, 284, 336, 396, 464, 522, 576 };
162     int[] s6 = { 0, 4, 8, 12, 18, 26, 36, 48, 62, 80, 104, 134, 174, 192 };
163     int[] l7 = { 0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238, 284, 336, 396, 464, 522, 576 };
164     int[] s7 = { 0, 4, 8, 12, 18, 26, 36, 48, 62, 80, 104, 134, 174, 192 };
165     int[] l8 = { 0, 12, 24, 36, 48, 60, 72, 88, 108, 132, 160, 192, 232, 280, 336, 400, 476, 566, 568, 570, 572, 574, 576 };
166     int[] s8 = { 0, 8, 16, 24, 36, 52, 72, 96, 124, 160, 162, 164, 166, 192 };
167
168     sfBandIndex[0] = new SBI(l0, s0);
169     sfBandIndex[1] = new SBI(l1, s1);
170     sfBandIndex[2] = new SBI(l2, s2);
171
172     sfBandIndex[3] = new SBI(l3, s3);
173     sfBandIndex[4] = new SBI(l4, s4);
174     sfBandIndex[5] = new SBI(l5, s5);
175     // SZD: MPEG2.5
176     sfBandIndex[6] = new SBI(l6, s6);
177     sfBandIndex[7] = new SBI(l7, s7);
178     sfBandIndex[8] = new SBI(l8, s8);
179     // END OF L3TABLE INIT
180
181     if (reorder_table == null) { // SZD: generate LUT
182       reorder_table = new int[9][];
183       for (int i = 0; i < 9; i++)
184         reorder_table[i] = reorder(sfBandIndex[i].s);
185     }
186
187     // scalefac_buffer
188     scalefac_buffer = new int[54];
189     // END OF scalefac_buffer
190
191     init(h);
192   }
193
194   private void init(Header header) {
195
196     frame_start = 0;
197     channels = (header.mode() == Header.SINGLE_CHANNEL) ? 1 : 2;
198     max_gr = (header.version() == Header.MPEG1) ? 2 : 1;
199
200     sfreq = header.sample_frequency() + ((header.version() == Header.MPEG1) ? 3
201         : (header.version() == Header.MPEG25_LSF) ? 6 : 0); // SZD
202
203     if (channels == 2) {
204       switch (which_channels) {
205       case OutputChannels.LEFT_CHANNEL:
206       case OutputChannels.DOWNMIX_CHANNELS:
207         first_channel = last_channel = 0;
208         break;
209
210       case OutputChannels.RIGHT_CHANNEL:
211         first_channel = last_channel = 1;
212         break;
213
214       case OutputChannels.BOTH_CHANNELS:
215       default:
216         first_channel = 0;
217         last_channel = 1;
218         break;
219       }
220     } else {
221       first_channel = last_channel = 0;
222     }
223
224     for (int ch = 0; ch < 2; ch++)
225       for (int j = 0; j < 576; j++)
226         prevblck[ch][j] = 0.0f;
227
228     nonzero[0] = nonzero[1] = 576;
229
230     si = new III_side_info_t();
231
232     initialized = true;
233
234   }
235
236   /**
237    * Constructor.
238    */
239   // REVIEW: these constructor arguments should be moved to the
240   // decodeFrame() method, where possible, so that one
241   //
242   // public LayerIIIDecoder( Header header0,
243   // SynthesisFilter filtera,
244   // SynthesisFilter filterb, int which_ch0) {
245   //
246   // huffcodetab.inithuff();
247   // is_1d = new int[SBLIMIT * SSLIMIT + 4];
248   // ro = new float[2][SBLIMIT][SSLIMIT];
249   // lr = new float[2][SBLIMIT][SSLIMIT];
250   // out_1d = new float[SBLIMIT * SSLIMIT];
251   // prevblck = new float[2][SBLIMIT * SSLIMIT];
252   // k = new float[2][SBLIMIT * SSLIMIT];
253   // nonzero = new int[2];
254   //
255   // // removes unnecessary aliases
256   // // III_scalefact_t
257   // // III_scalefac_t = new temporaire2[2];
258   // // III_scalefac_t[0] = new temporaire2();
259   // // III_scalefac_t[1] = new temporaire2();
260   // // scalefac = III_scalefac_t;
261   //
262   // scalefac = new temporaire2[2];
263   // scalefac[0] = new temporaire2();
264   // scalefac[1] = new temporaire2();
265   //
266   // // L3TABLE INIT
267   //
268   // sfBandIndex = new SBI[9]; // SZD: MPEG2.5 +3 indices
269   // int[] l0 =
270   // { 0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238,
271   // 284, 336, 396,
272   // 464, 522, 576 };
273   // int[] s0 = { 0, 4, 8, 12, 18, 24, 32, 42, 56, 74, 100, 132,
274   // 174, 192 };
275   // int[] l1 =
276   // { 0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 114, 136, 162, 194, 232,
277   // 278, 330, 394,
278   // 464, 540, 576 };
279   // int[] s1 = { 0, 4, 8, 12, 18, 26, 36, 48, 62, 80, 104, 136,
280   // 180, 192 };
281   // int[] l2 =
282   // { 0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238,
283   // 284, 336, 396,
284   // 464, 522, 576 };
285   // int[] s2 = { 0, 4, 8, 12, 18, 26, 36, 48, 62, 80, 104, 134,
286   // 174, 192 };
287   //
288   // int[] l3 =
289   // { 0, 4, 8, 12, 16, 20, 24, 30, 36, 44, 52, 62, 74, 90, 110, 134, 162, 196,
290   // 238, 288, 342,
291   // 418, 576 };
292   // int[] s3 = { 0, 4, 8, 12, 16, 22, 30, 40, 52, 66, 84, 106, 136,
293   // 192 };
294   // int[] l4 =
295   // { 0, 4, 8, 12, 16, 20, 24, 30, 36, 42, 50, 60, 72, 88, 106, 128, 156, 190,
296   // 230, 276, 330,
297   // 384, 576 };
298   // int[] s4 = { 0, 4, 8, 12, 16, 22, 28, 38, 50, 64, 80, 100, 126,
299   // 192 };
300   // int[] l5 =
301   // { 0, 4, 8, 12, 16, 20, 24, 30, 36, 44, 54, 66, 82, 102, 126, 156, 194, 240,
302   // 296, 364, 448,
303   // 550, 576 };
304   // int[] s5 = { 0, 4, 8, 12, 16, 22, 30, 42, 58, 78, 104, 138,
305   // 180, 192 };
306   // // SZD: MPEG2.5
307   // int[] l6 =
308   // { 0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238,
309   // 284, 336, 396,
310   // 464, 522, 576 };
311   // int[] s6 = { 0, 4, 8, 12, 18, 26, 36, 48, 62, 80, 104, 134,
312   // 174, 192 };
313   // int[] l7 =
314   // { 0, 6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96, 116, 140, 168, 200, 238,
315   // 284, 336, 396,
316   // 464, 522, 576 };
317   // int[] s7 = { 0, 4, 8, 12, 18, 26, 36, 48, 62, 80, 104, 134,
318   // 174, 192 };
319   // int[] l8 =
320   // { 0, 12, 24, 36, 48, 60, 72, 88, 108, 132, 160, 192, 232, 280, 336, 400,
321   // 476, 566, 568,
322   // 570, 572, 574, 576 };
323   // int[] s8 = { 0, 8, 16, 24, 36, 52, 72, 96, 124, 160, 162, 164,
324   // 166, 192 };
325   //
326   // sfBandIndex[0] = new SBI(l0, s0);
327   // sfBandIndex[1] = new SBI(l1, s1);
328   // sfBandIndex[2] = new SBI(l2, s2);
329   //
330   // sfBandIndex[3] = new SBI(l3, s3);
331   // sfBandIndex[4] = new SBI(l4, s4);
332   // sfBandIndex[5] = new SBI(l5, s5);
333   // // SZD: MPEG2.5
334   // sfBandIndex[6] = new SBI(l6, s6);
335   // sfBandIndex[7] = new SBI(l7, s7);
336   // sfBandIndex[8] = new SBI(l8, s8);
337   // // END OF L3TABLE INIT
338   //
339   // if (reorder_table == null) { // SZD: generate LUT
340   // reorder_table = new int[9][];
341   // for ( int i = 0; i < 9; i++)
342   // reorder_table[i] = reorder(sfBandIndex[i].s);
343   // }
344   //
345   // // Sftable
346   // int[] ll0 = { 0, 6, 11, 16, 21 };
347   // int[] ss0 = { 0, 6, 12 };
348   // sftable = new Sftable(ll0, ss0);
349   // // END OF Sftable
350   //
351   // // scalefac_buffer
352   // scalefac_buffer = new int[54];
353   // // END OF scalefac_buffer
354   //
355   // // header = header0;
356   // filter1 = filtera;
357   // filter2 = filterb;
358   // // buffer = buffer0;
359   // which_channels = which_ch0;
360   //
361   // frame_start = 0;
362   // channels = (header.mode() == Header.SINGLE_CHANNEL) ? 1 : 2;
363   // max_gr = (header.version() == Header.MPEG1) ? 2 : 1;
364   //
365   // sfreq =
366   // header.sample_frequency()
367   // + ((header.version() == Header.MPEG1) ? 3 : (header.version() ==
368   // Header.MPEG25_LSF) ? 6
369   // : 0); // SZD
370   //
371   // if (channels == 2) {
372   // switch (which_channels) {
373   // case OutputChannels.LEFT_CHANNEL:
374   // case OutputChannels.DOWNMIX_CHANNELS:
375   // first_channel = last_channel = 0;
376   // break;
377   //
378   // case OutputChannels.RIGHT_CHANNEL:
379   // first_channel = last_channel = 1;
380   // break;
381   //
382   // case OutputChannels.BOTH_CHANNELS:
383   // default:
384   // first_channel = 0;
385   // last_channel = 1;
386   // break;
387   // }
388   // } else {
389   // first_channel = last_channel = 0;
390   // }
391   //
392   // for ( int ch = 0; ch < 2; ch++)
393   // for ( int j = 0; j < 576; j++)
394   // prevblck[ch][j] = 0.0f;
395   //
396   // nonzero[0] = nonzero[1] = 576;
397   //
398   // br = new BitReserve();
399   // si = new III_side_info_t();
400   // }
401
402   /**
403    * Notify decoder that a seek is being made.
404    */
405
406   public void seek_notify() {
407     frame_start = 0;
408     for (int ch = 0; ch < 2; ch++)
409       for (int j = 0; j < 576; j++)
410         prevblck[ch][j] = 0.0f;
411     br = new BitReserve();
412   }
413
414   public void decodeFrame(Header header) {
415     decode(header);
416   }
417
418   /**
419    * Decode one frame, filling the buffer with the output samples.
420    */
421
422   // subband samples are buffered and passed to the
423   // SynthesisFilter in one go.
424
425   private float[] samples1 = new float[32];
426
427   private float[] samples2 = new float[32];
428
429   private int filter_pos;
430
431   /*
432    * location hierarchy of decode() {header} {stream} {si} {br, flush_main,
433    * main_data_end,frame_start,nSlots,bytes_to_discard}* {gr,max_gr} // granule
434    * {ch,channels,first_channel, last_channel, which_channels} // channel
435    * {part2_start} {sb18, ss} {out_1d}* {sb}* {samples1,sample2}
436    * {filter1,filter2}
437    */
438   //
439
440   public void decode(Header header) {
441
442     // if (!initialized) {
443     // init(header);
444     // }
445
446     // overwrites once per a loop
447     SSJAVA.arrayinit(samples1, 0);
448     SSJAVA.arrayinit(samples2, 0);
449     SSJAVA.arrayinit(ro, 2, SBLIMIT, SSLIMIT, 0);
450     SSJAVA.arrayinit(lr, 2, SBLIMIT, SSLIMIT, 0);
451     SSJAVA.arrayinit(is_pos, 7);
452     SSJAVA.arrayinit(is_ratio, 0);
453     SSJAVA.arrayinit(out_1d, 0);
454     SSJAVA.arrayinit(inter, 0);
455     SSJAVA.arrayinit(k, 2, SBLIMIT * SSLIMIT, 0);
456     SSJAVA.arrayinit(is_1d, 0);
457     SSJAVA.arrayinit(tsOutCopy, 0);
458     SSJAVA.arrayinit(scalefac_buffer, 0);
459     SSJAVA.arrayinit(nonzero, 576);
460     SSJAVA.arrayinit(new_slen, 0);
461
462     SSJAVA.arrayinit(raw_full, 2, SBLIMIT * SSLIMIT, 0);
463     SSJAVA.arrayinit(rawout, 0);
464     CheckSumHuff = 0;
465     // prevblck = new float[2][SBLIMIT * SSLIMIT];
466     si = new III_side_info_t();
467     //
468
469     int nSlots = header.slots();
470
471     int gr;
472     int ch;
473
474     int ss;
475     int sb;
476     int sb18;
477
478     int main_data_end;
479     int flush_main;
480
481     int bytes_to_discard;
482     int i;
483
484     // modifications for linear type
485     get_side_info(header);
486     br = header.getBitReserve();
487
488     int version = header.version();
489
490     // additional codes for the definitely written property
491     filter_pos = (header.getIdx() * 4) & 0xf;
492     filter1.vidx = 1;
493     filter2.vidx = 1;
494     filter1.actual_write_pos = filter_pos;
495     filter2.actual_write_pos = filter_pos;
496
497     // here 'gr' and 'max_gr' should be higher than 'ch','channels', and more
498     for (gr = 0; gr < max_gr; gr++) { // two granules per channel
499       // in the loop body, access set={part2_start}
500
501       // 'ch', 'channels' should be higher than all locs in the below body
502       for (ch = 0; ch < channels; ch++) {
503         // part2_start = br.hsstell();
504         int part2_start_local = br.hsstell();
505
506         // grab scale factors from the main data.
507         // following the scale factors is the actual compressed data
508         if (version == Header.MPEG1)
509           get_scale_factors(header, ch, gr); // no need to care from this side
510         // here move scale factor data from 'br' buffer to 'scalefac' field
511         else
512           // MPEG-2 LSF, SZD: MPEG-2.5 LSF
513           get_LSF_scale_factors(header, ch, gr); // no need to care from this
514                                                  // side
515
516         // here, decoding the compressed audio data
517         huffman_decode(part2_start_local, ch, gr); // no need to care from this
518                                                    // side
519         // System.out.println("CheckSum HuffMan = " + CheckSumHuff);
520         dequantize_sample(/* ro[ch], */ch, gr); // no need to care from this
521                                                 // side
522       }
523
524       stereo(header, gr); // no need to care from this side
525
526       if ((which_channels == OutputChannels.DOWNMIX_CHANNELS) && (channels > 1)) {
527         do_downmix();
528       }
529
530       for (ch = first_channel; ch <= last_channel; ch++) { // 'ch' and
531                                                            // 'first_channel' >
532                                                            // the body
533
534         reorder(/* lr[ch], */ch, gr);
535         antialias(ch, gr);
536
537         // float CheckSumOut1d=0;
538         // for (int hb = 0;hb<576;hb++) {
539         // CheckSumOut1d = CheckSumOut1d + out_1d[hb];
540         // }
541         // System.out.println("CheckSumOut1d = "+CheckSumOut1d);
542
543         for (int index = 0; index < 576; index++) {
544           out_1d[index] = inter[index];
545         }
546
547         hybrid(ch, gr);
548
549         // float CheckSumOut1d=0;
550         // for (int hb = 0;hb<576;hb++) {
551         // CheckSumOut1d = CheckSumOut1d + out_1d[hb];
552         // }
553         // System.out.println("CheckSumOut1d = "+CheckSumOut1d);
554
555         for (sb18 = 18; sb18 < 576; sb18 += 36) {
556           // sb18 > ss, SSLIMIT, out1d
557           // Frequency inversion
558           for (ss = 1; ss < SSLIMIT; ss += 2) {
559             // 'ss','SSLIMIT' > out_1d
560             out_1d[sb18 + ss] = -out_1d[sb18 + ss]; // out1d*
561           }
562         }
563
564         // 'ch', 'which_channels' should be higher than if/else body!
565         // location set written by if/else body
566         // = {samples1, samples2, filter1, filter2}
567         if ((ch == 0) || (which_channels == OutputChannels.RIGHT_CHANNEL)) {
568           for (ss = 0; ss < SSLIMIT; ss++) { // Polyphase synthesis
569             sb = 0;
570             for (sb18 = 0; sb18 < 576; sb18 += 18) {
571               samples1[sb] = out_1d[sb18 + ss]; // out_1d > samples1
572               // filter1.input_sample(out_1d[sb18+ss], sb);
573               sb++; // sb should be loc*
574             }
575             filter1.input_samples(samples1);
576             // System.out.println("filter1 writepos=" + filter1.actual_write_pos
577             // + " vidx=" + filter1.vidx);
578             filter1.calculate_pcm_samples();
579           }
580         } else {
581           for (ss = 0; ss < SSLIMIT; ss++) { // Polyphase synthesis
582             sb = 0;
583             for (sb18 = 0; sb18 < 576; sb18 += 18) {
584               samples2[sb] = out_1d[sb18 + ss]; // out_1d > samples2
585               // filter2.input_sample(out_1d[sb18+ss], sb);
586               sb++;
587             }
588             filter2.input_samples(samples2);
589             filter2.calculate_pcm_samples();
590           }
591         }
592         // System.out.println("#END CH=" + ch + " actual_write_pos=" +
593         // filter1.actual_write_pos);
594       } // channels
595
596       // TODO
597       if (gr < max_gr - 1) {
598         // init prev
599         SSJAVA.arrayinit(prevblck, 2, SBLIMIT * SSLIMIT, 0);
600         // copy from raw_full to prev
601         SSJAVA.arraycopy(prevblck, raw_full, 2, SBLIMIT * SSLIMIT);
602       }
603       // for (int chidx = 0; chidx < 2; chidx++) {
604       // for (int sidx = 0; sidx < SBLIMIT * SSLIMIT; sidx++) {
605       // prevblck[chidx][sidx] = raw_full[chidx][sidx];
606       // }
607       // }
608       // System.out.println("#END GR=" + gr + " actual_write_pos=" +
609       // filter1.actual_write_pos);
610     } // granule
611
612     // TODO
613     // init prev
614     SSJAVA.arrayinit(prevblck, 2, SBLIMIT * SSLIMIT, 0);
615     // copy from raw_full to prev
616     SSJAVA.arraycopy(prevblck, raw_full, 2, SBLIMIT * SSLIMIT);
617
618     // System.out.println("#END FRAME actual_write_pos=" +
619     // filter1.actual_write_pos);
620
621     filter1.clear();
622     filter2.clear();
623
624     // System.out.println("Counter = ................................."+counter);
625     // if (counter < 609)
626     // {
627     // counter++; // count should be loc*
628     // buffer.write_buffer(1); // buffer!!!
629     // }
630     // else if (counter == 609)
631     // {
632     // buffer.close();
633     // counter++;
634     // }
635     // else
636     // {
637     // }
638
639   }
640
641   /**
642    * Reads the side info from the stream, assuming the entire. frame has been
643    * read already. Mono : 136 bits (= 17 bytes) Stereo : 256 bits (= 32 bytes)
644    */
645
646   private boolean get_side_info(Header header) {
647
648     SideInfoBuffer sib = header.getSideInfoBuffer();
649     int version = header.version();
650
651     int ch;
652     int gr;
653     // System.out.println("#get_side_info");
654     if (version == Header.MPEG1) {
655
656       si.main_data_begin = sib.get_bits(9);
657       if (channels == 1)
658         si.private_bits = sib.get_bits(5);
659       else
660         si.private_bits = sib.get_bits(3);
661
662       for (ch = 0; ch < channels; ch++) {
663         si.ch[ch].scfsi[0] = sib.get_bits(1);
664         si.ch[ch].scfsi[1] = sib.get_bits(1);
665         si.ch[ch].scfsi[2] = sib.get_bits(1);
666         si.ch[ch].scfsi[3] = sib.get_bits(1);
667       }
668
669       // System.out.println("BEFORE GR,CH");
670
671       for (gr = 0; gr < 2; gr++) {
672         // System.out.println("GR=" + gr);
673         for (ch = 0; ch < channels; ch++) {
674           // System.out.println("CH");
675           si.ch[ch].gr[gr].part2_3_length = sib.get_bits(12);
676           si.ch[ch].gr[gr].big_values = sib.get_bits(9);
677           si.ch[ch].gr[gr].global_gain = sib.get_bits(8);
678           si.ch[ch].gr[gr].scalefac_compress = sib.get_bits(4);
679           int cond = sib.get_bits(1);
680           // si.ch[ch].gr[gr].window_switching_flag = sib.get_bits(1);
681           // if ((si.ch[ch].gr[gr].window_switching_flag) != 0) {
682           if (cond != 0) {
683             si.ch[ch].gr[gr].block_type = sib.get_bits(2);
684             si.ch[ch].gr[gr].mixed_block_flag = sib.get_bits(1);
685
686             si.ch[ch].gr[gr].table_select[0] = sib.get_bits(5);
687             si.ch[ch].gr[gr].table_select[1] = sib.get_bits(5);
688
689             si.ch[ch].gr[gr].subblock_gain[0] = sib.get_bits(3);
690             si.ch[ch].gr[gr].subblock_gain[1] = sib.get_bits(3);
691             si.ch[ch].gr[gr].subblock_gain[2] = sib.get_bits(3);
692
693             // Set region_count parameters since they are implicit
694             // in this case.
695
696             if (si.ch[ch].gr[gr].block_type == 0) {
697               // Side info bad: block_type == 0 in split block
698               return false;
699             } else if (si.ch[ch].gr[gr].block_type == 2 && si.ch[ch].gr[gr].mixed_block_flag == 0) {
700               si.ch[ch].gr[gr].region0_count = 8;
701             } else {
702               si.ch[ch].gr[gr].region0_count = 7;
703             }
704             si.ch[ch].gr[gr].region1_count = 20 - si.ch[ch].gr[gr].region0_count;
705           } else {
706             si.ch[ch].gr[gr].table_select[0] = sib.get_bits(5);
707             si.ch[ch].gr[gr].table_select[1] = sib.get_bits(5);
708             si.ch[ch].gr[gr].table_select[2] = sib.get_bits(5);
709             si.ch[ch].gr[gr].region0_count = sib.get_bits(4);
710             si.ch[ch].gr[gr].region1_count = sib.get_bits(3);
711             si.ch[ch].gr[gr].block_type = 0;
712           }
713           //
714           si.ch[ch].gr[gr].window_switching_flag = cond;
715           //
716           si.ch[ch].gr[gr].preflag = sib.get_bits(1);
717           si.ch[ch].gr[gr].scalefac_scale = sib.get_bits(1);
718           si.ch[ch].gr[gr].count1table_select = sib.get_bits(1);
719         }
720       }
721
722     } else { // MPEG-2 LSF, SZD: MPEG-2.5 LSF
723
724       si.main_data_begin = sib.get_bits(8);
725       if (channels == 1)
726         si.private_bits = sib.get_bits(1);
727       else
728         si.private_bits = sib.get_bits(2);
729
730       for (ch = 0; ch < channels; ch++) {
731
732         si.ch[ch].gr[0].part2_3_length = sib.get_bits(12);
733         si.ch[ch].gr[0].big_values = sib.get_bits(9);
734         si.ch[ch].gr[0].global_gain = sib.get_bits(8);
735         si.ch[ch].gr[0].scalefac_compress = sib.get_bits(9);
736
737         int cond = sib.get_bits(1);
738         // si.ch[ch].gr[0].window_switching_flag = sib.get_bits(1);
739         // if ((si.ch[ch].gr[0].window_switching_flag) != 0) {
740         if (cond != 0) {
741
742           si.ch[ch].gr[0].block_type = sib.get_bits(2);
743           si.ch[ch].gr[0].mixed_block_flag = sib.get_bits(1);
744           si.ch[ch].gr[0].table_select[0] = sib.get_bits(5);
745           si.ch[ch].gr[0].table_select[1] = sib.get_bits(5);
746
747           si.ch[ch].gr[0].subblock_gain[0] = sib.get_bits(3);
748           si.ch[ch].gr[0].subblock_gain[1] = sib.get_bits(3);
749           si.ch[ch].gr[0].subblock_gain[2] = sib.get_bits(3);
750
751           // Set region_count parameters since they are implicit in
752           // this case.
753
754           if (si.ch[ch].gr[0].block_type == 0) {
755             // Side info bad: block_type == 0 in split block
756             return false;
757           } else if (si.ch[ch].gr[0].block_type == 2 && si.ch[ch].gr[0].mixed_block_flag == 0) {
758             si.ch[ch].gr[0].region0_count = 8;
759           } else {
760             si.ch[ch].gr[0].region0_count = 7;
761             si.ch[ch].gr[0].region1_count = 20 - si.ch[ch].gr[0].region0_count;
762           }
763
764         } else {
765           si.ch[ch].gr[0].table_select[0] = sib.get_bits(5);
766           si.ch[ch].gr[0].table_select[1] = sib.get_bits(5);
767           si.ch[ch].gr[0].table_select[2] = sib.get_bits(5);
768           si.ch[ch].gr[0].region0_count = sib.get_bits(4);
769           si.ch[ch].gr[0].region1_count = sib.get_bits(3);
770           si.ch[ch].gr[0].block_type = 0;
771         }
772         //
773         si.ch[ch].gr[gr].window_switching_flag = cond;
774         //
775
776         si.ch[ch].gr[0].scalefac_scale = sib.get_bits(1);
777         si.ch[ch].gr[0].count1table_select = sib.get_bits(1);
778       } // for(ch=0; ch<channels; ch++)
779     } // if (header.version() == MPEG1)
780     return true;
781   }
782
783   /**
784          *
785          */
786
787   private void get_scale_factors(Header header, int ch, int gr) {
788
789     // gr_info_s gr_info = (si.ch[ch].gr[gr]); remove alias
790
791     int sfb;
792     int window;
793     int scale_comp = si.ch[ch].gr[gr].scalefac_compress;
794     int length0 = slen[0][scale_comp];
795     int length1 = slen[1][scale_comp];
796
797     if ((si.ch[ch].gr[gr].window_switching_flag != 0) && (si.ch[ch].gr[gr].block_type == 2)) {
798       if ((si.ch[ch].gr[gr].mixed_block_flag) != 0) { // MIXED
799         for (sfb = 0; sfb < 8; sfb++)
800           scalefac[ch].l[sfb] = br.hgetbits(slen[0][si.ch[ch].gr[gr].scalefac_compress]);
801         for (sfb = 3; sfb < 6; sfb++)
802           for (window = 0; window < 3; window++)
803             scalefac[ch].s[window][sfb] = br.hgetbits(slen[0][si.ch[ch].gr[gr].scalefac_compress]);
804         for (sfb = 6; sfb < 12; sfb++)
805           for (window = 0; window < 3; window++)
806             scalefac[ch].s[window][sfb] = br.hgetbits(slen[1][si.ch[ch].gr[gr].scalefac_compress]);
807         for (sfb = 12, window = 0; window < 3; window++)
808           scalefac[ch].s[window][sfb] = 0;
809
810       } else { // SHORT
811
812         scalefac[ch].s[0][0] = br.hgetbits(length0);
813         scalefac[ch].s[1][0] = br.hgetbits(length0);
814         scalefac[ch].s[2][0] = br.hgetbits(length0);
815         scalefac[ch].s[0][1] = br.hgetbits(length0);
816         scalefac[ch].s[1][1] = br.hgetbits(length0);
817         scalefac[ch].s[2][1] = br.hgetbits(length0);
818         scalefac[ch].s[0][2] = br.hgetbits(length0);
819         scalefac[ch].s[1][2] = br.hgetbits(length0);
820         scalefac[ch].s[2][2] = br.hgetbits(length0);
821         scalefac[ch].s[0][3] = br.hgetbits(length0);
822         scalefac[ch].s[1][3] = br.hgetbits(length0);
823         scalefac[ch].s[2][3] = br.hgetbits(length0);
824         scalefac[ch].s[0][4] = br.hgetbits(length0);
825         scalefac[ch].s[1][4] = br.hgetbits(length0);
826         scalefac[ch].s[2][4] = br.hgetbits(length0);
827         scalefac[ch].s[0][5] = br.hgetbits(length0);
828         scalefac[ch].s[1][5] = br.hgetbits(length0);
829         scalefac[ch].s[2][5] = br.hgetbits(length0);
830         scalefac[ch].s[0][6] = br.hgetbits(length1);
831         scalefac[ch].s[1][6] = br.hgetbits(length1);
832         scalefac[ch].s[2][6] = br.hgetbits(length1);
833         scalefac[ch].s[0][7] = br.hgetbits(length1);
834         scalefac[ch].s[1][7] = br.hgetbits(length1);
835         scalefac[ch].s[2][7] = br.hgetbits(length1);
836         scalefac[ch].s[0][8] = br.hgetbits(length1);
837         scalefac[ch].s[1][8] = br.hgetbits(length1);
838         scalefac[ch].s[2][8] = br.hgetbits(length1);
839         scalefac[ch].s[0][9] = br.hgetbits(length1);
840         scalefac[ch].s[1][9] = br.hgetbits(length1);
841         scalefac[ch].s[2][9] = br.hgetbits(length1);
842         scalefac[ch].s[0][10] = br.hgetbits(length1);
843         scalefac[ch].s[1][10] = br.hgetbits(length1);
844         scalefac[ch].s[2][10] = br.hgetbits(length1);
845         scalefac[ch].s[0][11] = br.hgetbits(length1);
846         scalefac[ch].s[1][11] = br.hgetbits(length1);
847         scalefac[ch].s[2][11] = br.hgetbits(length1);
848         scalefac[ch].s[0][12] = 0;
849         scalefac[ch].s[1][12] = 0;
850         scalefac[ch].s[2][12] = 0;
851       } // SHORT
852
853     } else { // LONG types 0,1,3
854
855       if ((si.ch[ch].scfsi[0] == 0) || (gr == 0)) {
856         scalefac[ch].l[0] = br.hgetbits(length0);
857         scalefac[ch].l[1] = br.hgetbits(length0);
858         scalefac[ch].l[2] = br.hgetbits(length0);
859         scalefac[ch].l[3] = br.hgetbits(length0);
860         scalefac[ch].l[4] = br.hgetbits(length0);
861         scalefac[ch].l[5] = br.hgetbits(length0);
862       }
863       if ((si.ch[ch].scfsi[1] == 0) || (gr == 0)) {
864         scalefac[ch].l[6] = br.hgetbits(length0);
865         scalefac[ch].l[7] = br.hgetbits(length0);
866         scalefac[ch].l[8] = br.hgetbits(length0);
867         scalefac[ch].l[9] = br.hgetbits(length0);
868         scalefac[ch].l[10] = br.hgetbits(length0);
869       }
870       if ((si.ch[ch].scfsi[2] == 0) || (gr == 0)) {
871         scalefac[ch].l[11] = br.hgetbits(length1);
872         scalefac[ch].l[12] = br.hgetbits(length1);
873         scalefac[ch].l[13] = br.hgetbits(length1);
874         scalefac[ch].l[14] = br.hgetbits(length1);
875         scalefac[ch].l[15] = br.hgetbits(length1);
876       }
877       if ((si.ch[ch].scfsi[3] == 0) || (gr == 0)) {
878         scalefac[ch].l[16] = br.hgetbits(length1);
879         scalefac[ch].l[17] = br.hgetbits(length1);
880         scalefac[ch].l[18] = br.hgetbits(length1);
881         scalefac[ch].l[19] = br.hgetbits(length1);
882         scalefac[ch].l[20] = br.hgetbits(length1);
883       }
884
885       scalefac[ch].l[21] = 0;
886       scalefac[ch].l[22] = 0;
887     }
888   }
889
890   /**
891          *
892          */
893   // MDM: new_slen is fully initialized before use, no need
894   // to reallocate array.
895
896   private int[] new_slen = new int[4];
897
898   // ssjava
899
900   private void get_LSF_scale_data(Header header, int ch, int gr) {
901
902     int mode_ext = header.mode_extension();
903     // gr_info_s gr_info =
904     // (si.ch[ch].gr[gr]); // remove alias
905
906     int scalefac_comp = si.ch[ch].gr[gr].scalefac_compress;
907     int blocktypenumber;
908
909     int int_scalefac_comp;
910     int m;
911     int blocknumber = 0;
912
913     if (si.ch[ch].gr[gr].block_type == 2) {
914       if (si.ch[ch].gr[gr].mixed_block_flag == 0) {
915         blocktypenumber = 1;
916       } else if (si.ch[ch].gr[gr].mixed_block_flag == 1) {
917         blocktypenumber = 2;
918       } else {
919         blocktypenumber = 0;
920       }
921     } else {
922       blocktypenumber = 0;
923     }
924
925     if (!(((mode_ext == 1) || (mode_ext == 3)) && (ch == 1))) {
926
927       if (scalefac_comp < 400) {
928
929         new_slen[0] = (scalefac_comp >>> 4) / 5;
930         new_slen[1] = (scalefac_comp >>> 4) % 5;
931         new_slen[2] = (scalefac_comp & 0xF) >>> 2;
932         new_slen[3] = (scalefac_comp & 3);
933         si.ch[ch].gr[gr].preflag = 0;
934         blocknumber = 0;
935
936       } else if (scalefac_comp < 500) {
937
938         new_slen[0] = ((scalefac_comp - 400) >>> 2) / 5;
939         new_slen[1] = ((scalefac_comp - 400) >>> 2) % 5;
940         new_slen[2] = (scalefac_comp - 400) & 3;
941         new_slen[3] = 0;
942         si.ch[ch].gr[gr].preflag = 0;
943         blocknumber = 1;
944
945       } else if (scalefac_comp < 512) {
946
947         new_slen[0] = (scalefac_comp - 500) / 3;
948         new_slen[1] = (scalefac_comp - 500) % 3;
949         new_slen[2] = 0;
950         new_slen[3] = 0;
951         si.ch[ch].gr[gr].preflag = 1;
952         blocknumber = 2;
953       }
954     }
955
956     if ((((mode_ext == 1) || (mode_ext == 3)) && (ch == 1))) {
957       int_scalefac_comp = scalefac_comp >>> 1;
958
959       if (int_scalefac_comp < 180) {
960         new_slen[0] = int_scalefac_comp / 36;
961         new_slen[1] = (int_scalefac_comp % 36) / 6;
962         new_slen[2] = (int_scalefac_comp % 36) % 6;
963         new_slen[3] = 0;
964         si.ch[ch].gr[gr].preflag = 0;
965         blocknumber = 3;
966       } else if (int_scalefac_comp < 244) {
967         new_slen[0] = ((int_scalefac_comp - 180) & 0x3F) >>> 4;
968         new_slen[1] = ((int_scalefac_comp - 180) & 0xF) >>> 2;
969         new_slen[2] = (int_scalefac_comp - 180) & 3;
970         new_slen[3] = 0;
971         si.ch[ch].gr[gr].preflag = 0;
972         blocknumber = 4;
973       } else if (int_scalefac_comp < 255) {
974         new_slen[0] = (int_scalefac_comp - 244) / 3;
975         new_slen[1] = (int_scalefac_comp - 244) % 3;
976         new_slen[2] = 0;
977         new_slen[3] = 0;
978         si.ch[ch].gr[gr].preflag = 0;
979         blocknumber = 5;
980       }
981     }
982
983     // for ( int x = 0; x < 45; x++)
984     // // why 45, not 54?
985     // scalefac_buffer[x] = 0;
986
987     m = 0;
988     for (int i = 0; i < 4; i++) {
989       int jmax = nr_of_sfb_block[blocknumber][blocktypenumber][i];
990       for (int j = 0; j < jmax; j++) {
991         scalefac_buffer[m] = (new_slen[i] == 0) ? 0 : br.hgetbits(new_slen[i]);
992         m++;
993
994       } // for (unint32 j ...
995     } // for (uint32 i ...
996   }
997
998   /**
999          *
1000          */
1001
1002   private void get_LSF_scale_factors(Header header, int ch, int gr) {
1003
1004     int sfb;
1005     int m = 0;
1006     int window;
1007     // gr_info_s gr_info = (si.ch[ch].gr[gr]); // remove alias
1008
1009     get_LSF_scale_data(header, ch, gr);
1010
1011     if ((si.ch[ch].gr[gr].window_switching_flag != 0) && (si.ch[ch].gr[gr].block_type == 2)) {
1012       if (si.ch[ch].gr[gr].mixed_block_flag != 0) { // MIXED
1013         for (sfb = 0; sfb < 8; sfb++) {
1014           scalefac[ch].l[sfb] = scalefac_buffer[m];
1015           m++;
1016         }
1017         for (sfb = 3; sfb < 12; sfb++) {
1018           for (window = 0; window < 3; window++) {
1019             scalefac[ch].s[window][sfb] = scalefac_buffer[m];
1020             m++;
1021           }
1022         }
1023         for (window = 0; window < 3; window++)
1024           scalefac[ch].s[window][12] = 0;
1025
1026       } else { // SHORT
1027
1028         for (sfb = 0; sfb < 12; sfb++) {
1029           for (window = 0; window < 3; window++) {
1030             scalefac[ch].s[window][sfb] = scalefac_buffer[m];
1031             m++;
1032           }
1033         }
1034
1035         for (window = 0; window < 3; window++)
1036           scalefac[ch].s[window][12] = 0;
1037       }
1038     } else { // LONG types 0,1,3
1039
1040       for (sfb = 0; sfb < 21; sfb++) {
1041         scalefac[ch].l[sfb] = scalefac_buffer[m];
1042         m++;
1043       }
1044       scalefac[ch].l[21] = 0; // Jeff
1045       scalefac[ch].l[22] = 0;
1046     }
1047   }
1048
1049   /**
1050          *
1051          */
1052   //
1053   // int[] x = { 0 };
1054   //
1055   // int[] y = { 0 };
1056   //
1057   // int[] v = { 0 };
1058   //
1059   // int[] w = { 0 };
1060   //
1061   // int x[] = { 0 };
1062   //
1063   // int y[] = { 0 };
1064   //
1065   // int v[] = { 0 };
1066   //
1067   // int w[] = { 0 };
1068
1069   private void huffman_decode(int part2_start_local, int ch, int gr) {
1070
1071     int x[] = new int[1];
1072     int y[] = new int[1];
1073     int v[] = new int[1];
1074     int w[] = new int[1];
1075
1076     int part2_3_end = part2_start_local + si.ch[ch].gr[gr].part2_3_length;
1077     int num_bits;
1078     int region1Start;
1079     int region2Start;
1080     int index;
1081
1082     int buf;
1083     int buf1;
1084
1085     // Find region boundary for short block case
1086
1087     if (((si.ch[ch].gr[gr].window_switching_flag) != 0) && (si.ch[ch].gr[gr].block_type == 2)) {
1088
1089       // Region2.
1090       // MS: Extrahandling for 8KHZ
1091       region1Start = (sfreq == 8) ? 72 : 36; // sfb[9/3]*3=36 or in case
1092                                              // 8KHZ = 72
1093       region2Start = 576; // No Region2 for short block case
1094
1095     } else { // Find region boundary for long block case
1096
1097       buf = si.ch[ch].gr[gr].region0_count + 1;
1098       buf1 = buf + si.ch[ch].gr[gr].region1_count + 1;
1099
1100       if (buf1 > sfBandIndex[sfreq].l.length - 1)
1101         buf1 = sfBandIndex[sfreq].l.length - 1;
1102
1103       region1Start = sfBandIndex[sfreq].l[buf];
1104       region2Start = sfBandIndex[sfreq].l[buf1]; /* MI */
1105     }
1106
1107     index = 0;
1108     // Read bigvalues area
1109     TERMINATE: for (int i = 0; i < (si.ch[ch].gr[gr].big_values << 1); i += 2) {
1110
1111       int htIdx;
1112       if (i < region1Start) {
1113         htIdx = si.ch[ch].gr[gr].table_select[0];
1114         // h = huffcodetab.ht[si.ch[ch].gr[gr].table_select[0]];
1115       } else if (i < region2Start) {
1116         htIdx = si.ch[ch].gr[gr].table_select[1];
1117         // h = huffcodetab.ht[si.ch[ch].gr[gr].table_select[1]];
1118       } else {
1119         htIdx = si.ch[ch].gr[gr].table_select[2];
1120         // h = huffcodetab.ht[si.ch[ch].gr[gr].table_select[2]];
1121       }
1122
1123       huffcodetab.huffman_decoder(htIdx, x, y, v, w, br);
1124       // if (index >= is_1d.length)
1125       // System.out.println("i0="+i+"/"+(si.ch[ch].gr[gr].big_values<<1)+" Index="+index+" is_1d="+is_1d.length);
1126
1127       is_1d[index++] = x[0];
1128       is_1d[index++] = y[0];
1129
1130       CheckSumHuff = CheckSumHuff + x[0] + y[0];
1131       // System.out.println("x = " + x[0] + " y = " + y[0]);
1132     }
1133
1134     // Read count1 area
1135
1136     int htIdx = si.ch[ch].gr[gr].count1table_select + 32;
1137     // h = huffcodetab.ht[si.ch[ch].gr[gr].count1table_select + 32];
1138     num_bits = br.hsstell();
1139
1140     TERMINATE: while ((num_bits < part2_3_end) && (index < 576)) {
1141
1142       huffcodetab.huffman_decoder(htIdx, x, y, v, w, br);
1143
1144       is_1d[index++] = v[0];
1145       is_1d[index++] = w[0];
1146       is_1d[index++] = x[0];
1147       is_1d[index++] = y[0];
1148       CheckSumHuff = CheckSumHuff + v[0] + w[0] + x[0] + y[0];
1149       // System.out.println("v = "+v[0]+" w = "+w[0]);
1150       // System.out.println("x = "+x[0]+" y = "+y[0]);
1151       num_bits = br.hsstell();
1152     }
1153
1154     if (num_bits > part2_3_end) {
1155       br.rewindNbits(num_bits - part2_3_end);
1156       index -= 4;
1157     }
1158
1159     num_bits = br.hsstell();
1160
1161     // Dismiss stuffing bits
1162     if (num_bits < part2_3_end)
1163       br.hgetbits(part2_3_end - num_bits);
1164
1165     // Zero out rest
1166
1167     if (index < 576)
1168       nonzero[ch] = index;
1169     else
1170       nonzero[ch] = 576;
1171
1172     if (index < 0)
1173       index = 0;
1174
1175     // may not be necessary
1176     for (; index < 576; index++)
1177       is_1d[index] = 0;
1178   }
1179
1180   private int huffcodetab_huffman_decoder(int h) {
1181     // TODO need to move huffmancodetab implementation here
1182     return 0;
1183   }
1184
1185   /**
1186          *
1187          */
1188   private void i_stereo_k_values(int is_pos, int io_type, int i) {
1189     if (is_pos == 0) {
1190       k[0][i] = 1.0f;
1191       k[1][i] = 1.0f;
1192     } else if ((is_pos & 1) != 0) {
1193       k[0][i] = io[io_type][(is_pos + 1) >>> 1];
1194       k[1][i] = 1.0f;
1195     } else {
1196       k[0][i] = 1.0f;
1197       k[1][i] = io[io_type][is_pos >>> 1];
1198     }
1199   }
1200
1201   /**
1202          *
1203          */
1204   //
1205
1206   // ssjava
1207   private void dequantize_sample(
1208   /* float xr[][], */int ch, int gr) {
1209
1210     // gr_info_s gr_info = (si.ch[ch].gr[gr]); remove alias!
1211     int cb = 0;
1212
1213     int next_cb_boundary;
1214     int cb_begin = 0;
1215     int cb_width = 0;
1216     float g_gain;
1217
1218     int index = 0;
1219     int t_index;
1220     int j;
1221
1222     // float[][] xr_1d = xr;//substituted xr for instances of xr_1d to decrease
1223     // number of areas
1224
1225     // choose correct scalefactor band per block type, initalize boundary
1226
1227     if ((si.ch[ch].gr[gr].window_switching_flag != 0) && (si.ch[ch].gr[gr].block_type == 2)) {
1228       if (si.ch[ch].gr[gr].mixed_block_flag != 0)
1229         next_cb_boundary = sfBandIndex[sfreq].l[1]; // LONG blocks: 0,1,3
1230       else {
1231         cb_width = sfBandIndex[sfreq].s[1];
1232         next_cb_boundary = (cb_width << 2) - cb_width;
1233         cb_begin = 0;
1234       }
1235     } else {
1236       next_cb_boundary = sfBandIndex[sfreq].l[1]; // LONG blocks: 0,1,3
1237     }
1238
1239     // Compute overall (global) scaling.
1240
1241     g_gain = (float) Math.pow(2.0, (0.25 * (si.ch[ch].gr[gr].global_gain - 210.0)));
1242
1243     for (j = 0; j < nonzero[ch]; j++) {
1244       // Modif E.B 02/22/99
1245       int reste = j % SSLIMIT;
1246       int quotien = (int) ((j - reste) / SSLIMIT);
1247       if (is_1d[j] == 0) {
1248         ro[ch][quotien][reste] = 0.0f;
1249       } else {
1250         int abv = is_1d[j];
1251         // Pow Array fix (11/17/04)
1252         if (abv < t_43.length) {
1253           if (is_1d[j] > 0)
1254             ro[ch][quotien][reste] = g_gain * t_43[abv];
1255           else {
1256             if (-abv < t_43.length)
1257               ro[ch][quotien][reste] = -g_gain * t_43[-abv];
1258             else
1259               ro[ch][quotien][reste] = -g_gain * (float) Math.pow(-abv, d43);
1260           }
1261         } else {
1262           if (is_1d[j] > 0)
1263             ro[ch][quotien][reste] = g_gain * (float) Math.pow(abv, d43);
1264           else
1265             ro[ch][quotien][reste] = -g_gain * (float) Math.pow(-abv, d43);
1266         }
1267       }
1268     }
1269
1270     // apply formula per block type
1271     for (j = 0; j < nonzero[ch]; j++) {
1272       // Modif E.B 02/22/99
1273       int reste = j % SSLIMIT;
1274       int quotien = (int) ((j - reste) / SSLIMIT);
1275
1276       if (index == next_cb_boundary) { /* Adjust critical band boundary */
1277         if ((si.ch[ch].gr[gr].window_switching_flag != 0) && (si.ch[ch].gr[gr].block_type == 2)) {
1278           if (si.ch[ch].gr[gr].mixed_block_flag != 0) {
1279
1280             if (index == sfBandIndex[sfreq].l[8]) {
1281               next_cb_boundary = sfBandIndex[sfreq].s[4];
1282               next_cb_boundary = (next_cb_boundary << 2) - next_cb_boundary;
1283               cb = 3;
1284               cb_width = sfBandIndex[sfreq].s[4] - sfBandIndex[sfreq].s[3];
1285
1286               cb_begin = sfBandIndex[sfreq].s[3];
1287               cb_begin = (cb_begin << 2) - cb_begin;
1288
1289             } else if (index < sfBandIndex[sfreq].l[8]) {
1290
1291               next_cb_boundary = sfBandIndex[sfreq].l[(++cb) + 1];
1292
1293             } else {
1294
1295               next_cb_boundary = sfBandIndex[sfreq].s[(++cb) + 1];
1296               next_cb_boundary = (next_cb_boundary << 2) - next_cb_boundary;
1297
1298               cb_begin = sfBandIndex[sfreq].s[cb];
1299               cb_width = sfBandIndex[sfreq].s[cb + 1] - cb_begin;
1300               cb_begin = (cb_begin << 2) - cb_begin;
1301             }
1302
1303           } else {
1304
1305             next_cb_boundary = sfBandIndex[sfreq].s[(++cb) + 1];
1306             next_cb_boundary = (next_cb_boundary << 2) - next_cb_boundary;
1307
1308             cb_begin = sfBandIndex[sfreq].s[cb];
1309             cb_width = sfBandIndex[sfreq].s[cb + 1] - cb_begin;
1310             cb_begin = (cb_begin << 2) - cb_begin;
1311           }
1312
1313         } else { // long blocks
1314
1315           next_cb_boundary = sfBandIndex[sfreq].l[(++cb) + 1];
1316
1317         }
1318       }
1319
1320       // Do long/short dependent scaling operations
1321
1322       if ((si.ch[ch].gr[gr].window_switching_flag != 0) && (((si.ch[ch].gr[gr].block_type == 2) && (si.ch[ch].gr[gr].mixed_block_flag == 0)) || ((si.ch[ch].gr[gr].block_type == 2) && (si.ch[ch].gr[gr].mixed_block_flag != 0) && (j >= 36)))) {
1323
1324         t_index = (index - cb_begin) / cb_width;
1325         /*
1326          * xr[sb][ss] *= pow(2.0, ((-2.0 * gr_info.subblock_gain[t_index]) -(0.5
1327          * * (1.0 + gr_info.scalefac_scale) scalefac[ch].s[t_index][cb])));
1328          */
1329         int idx = scalefac[ch].s[t_index][cb] << si.ch[ch].gr[gr].scalefac_scale;
1330         idx += (si.ch[ch].gr[gr].subblock_gain[t_index] << 2);
1331
1332         ro[ch][quotien][reste] *= two_to_negative_half_pow[idx];
1333
1334       } else { // LONG block types 0,1,3 & 1st 2 subbands of switched blocks
1335         /*
1336          * xr[sb][ss] *= pow(2.0, -0.5 * (1.0+gr_info.scalefac_scale)
1337          * (scalefac[ch].l[cb] + gr_info.preflag * pretab[cb]));
1338          */
1339         int idx = scalefac[ch].l[cb];
1340
1341         if (si.ch[ch].gr[gr].preflag != 0)
1342           idx += pretab[cb];
1343
1344         idx = idx << si.ch[ch].gr[gr].scalefac_scale;
1345         ro[ch][quotien][reste] *= two_to_negative_half_pow[idx];
1346       }
1347       index++;
1348     }
1349
1350     for (j = nonzero[ch]; j < 576; j++) {
1351       // Modif E.B 02/22/99
1352       int reste = j % SSLIMIT;
1353       int quotien = (int) ((j - reste) / SSLIMIT);
1354       if (reste < 0)
1355         reste = 0;
1356       if (quotien < 0)
1357         quotien = 0;
1358       ro[ch][quotien][reste] = 0.0f;
1359     }
1360
1361     return;
1362   }
1363
1364   /**
1365          *
1366          */
1367   // ssjava
1368   //
1369
1370   private void reorder(/* float xr[][], */int ch, int gr) {
1371     // the purpose of reordering: move 'short samples' back to their original
1372     // position
1373     // after reorder, the samples are no long ordered by frequency
1374
1375     // the format of input data to reorder:
1376     // three small chunks of 192 samples each are combined to 576 samples
1377     // ordered by frequency
1378
1379     // gr_info_s gr_info = (si.ch[ch].gr[gr]); //remove alias
1380
1381     int index;
1382
1383     int freq;
1384     int freq3;
1385     int sfb;
1386     int sfb_start;
1387     int sfb_lines;
1388     int src_line;
1389     int des_line;
1390     // float[][] xr_1d = xr; subbed in xr for xr_1d so as not to create extra
1391     // areas
1392
1393     if ((si.ch[ch].gr[gr].window_switching_flag != 0) && (si.ch[ch].gr[gr].block_type == 2)) {
1394
1395       // for (index = 0; index < 576; index++) {
1396       // inter[index] = 0.0f;
1397       // }
1398
1399       if (si.ch[ch].gr[gr].mixed_block_flag != 0) {
1400         // NO REORDER FOR LOW 2 SUBBANDS
1401         for (index = 0; index < 36; index++) {
1402           // Modif E.B 02/22/99
1403           int reste = index % SSLIMIT;
1404           int quotien = (int) ((index - reste) / SSLIMIT);
1405           inter[index] = lr[ch][quotien][reste];
1406         }
1407         // REORDERING FOR REST SWITCHED SHORT
1408         /*
1409          * for( sfb=3,sfb_start=sfBandIndex[sfreq].s[3],
1410          * sfb_lines=sfBandIndex[sfreq].s[4] - sfb_start; sfb < 13;
1411          * sfb++,sfb_start = sfBandIndex[sfreq].s[sfb], sfb_lines =
1412          * sfBandIndex[sfreq].s[sfb+1] - sfb_start ) {
1413          */
1414         for (sfb = 3; sfb < 13; sfb++) {
1415           // System.out.println("sfreq="+sfreq+" sfb="+sfb+" sfBandIndex="+sfBandIndex.length+" sfBandIndex[sfreq].s="+sfBandIndex[sfreq].s.length);
1416           sfb_start = sfBandIndex[sfreq].s[sfb];
1417           sfb_lines = sfBandIndex[sfreq].s[sfb + 1] - sfb_start;
1418
1419           int sfb_start3 = (sfb_start << 2) - sfb_start;
1420
1421           for (freq = 0, freq3 = 0; freq < sfb_lines; freq++, freq3 += 3) {
1422
1423             src_line = sfb_start3 + freq;
1424             des_line = sfb_start3 + freq3;
1425             // Modif E.B 02/22/99
1426             int reste = src_line % SSLIMIT;
1427             int quotien = (int) ((src_line - reste) / SSLIMIT);
1428
1429             inter[des_line] = lr[ch][quotien][reste];
1430             src_line += sfb_lines;
1431             des_line++;
1432
1433             reste = src_line % SSLIMIT;
1434             quotien = (int) ((src_line - reste) / SSLIMIT);
1435
1436             inter[des_line] = lr[ch][quotien][reste];
1437             src_line += sfb_lines;
1438             des_line++;
1439
1440             reste = src_line % SSLIMIT;
1441             quotien = (int) ((src_line - reste) / SSLIMIT);
1442
1443             inter[des_line] = lr[ch][quotien][reste];
1444           }
1445         }
1446
1447       } else { // pure short
1448         for (index = 0; index < 576; index++) {
1449           int j = reorder_table[sfreq][index];
1450           int reste = j % SSLIMIT;
1451           int quotien = (int) ((j - reste) / SSLIMIT);
1452           inter[index] = lr[ch][quotien][reste];
1453         }
1454       }
1455     } else { // long blocks
1456       for (index = 0; index < 576; index++) {
1457         // Modif E.B 02/22/99
1458         int reste = index % SSLIMIT;
1459         int quotien = (int) ((index - reste) / SSLIMIT);
1460         inter[index] = lr[ch][quotien][reste];
1461       }
1462     }
1463   }
1464
1465   /**
1466          *
1467          */
1468
1469   int[] is_pos = new int[576];
1470
1471   float[] is_ratio = new float[576];
1472
1473   // ssjava
1474
1475   private void stereo(Header header, int gr) {
1476     int sb;
1477     int ss;
1478
1479     if (channels == 1) { // mono , bypass xr[0][][] to lr[0][][]
1480
1481       for (sb = 0; sb < SBLIMIT; sb++)
1482         for (ss = 0; ss < SSLIMIT; ss += 3) {
1483           lr[0][sb][ss] = ro[0][sb][ss];
1484           lr[0][sb][ss + 1] = ro[0][sb][ss + 1];
1485           lr[0][sb][ss + 2] = ro[0][sb][ss + 2];
1486         }
1487
1488     } else {
1489
1490       // gr_info_s gr_info = (si.ch[0].gr[gr]); remove alias
1491       int mode_ext = header.mode_extension();
1492
1493       int sfb;
1494       int i;
1495       int lines;
1496       int temp;
1497       int temp2;
1498
1499       boolean ms_stereo = ((header.mode() == Header.JOINT_STEREO) && ((mode_ext & 0x2) != 0));
1500       boolean i_stereo = ((header.mode() == Header.JOINT_STEREO) && ((mode_ext & 0x1) != 0));
1501       boolean lsf = ((header.version() == Header.MPEG2_LSF || header.version() == Header.MPEG25_LSF)); // SZD
1502
1503       int io_type = (si.ch[0].gr[gr].scalefac_compress & 1);
1504
1505       // initialization
1506       // for (i = 0; i < 576; i++) {
1507       // is_pos[i] = 7;
1508       // is_ratio[i] = 0.0f;
1509       // }
1510
1511       if (i_stereo) {
1512         if ((si.ch[0].gr[gr].window_switching_flag != 0) && (si.ch[0].gr[gr].block_type == 2)) {
1513           if (si.ch[0].gr[gr].mixed_block_flag != 0) {
1514
1515             int max_sfb = 0;
1516
1517             for (int j = 0; j < 3; j++) {
1518               int sfbcnt;
1519               sfbcnt = 2;
1520               TERMINATE: for (sfb = 12; sfb >= 3; sfb--) {
1521                 i = sfBandIndex[sfreq].s[sfb];
1522                 lines = sfBandIndex[sfreq].s[sfb + 1] - i;
1523                 i = (i << 2) - i + (j + 1) * lines - 1;
1524                 TERMINATE: while (lines > 0) {
1525                   if (ro[1][i / 18][i % 18] != 0.0f) {
1526                     // MDM: in java, array access is very slow.
1527                     // Is quicker to compute div and mod values.
1528                     // if (ro[1][ss_div[i]][ss_mod[i]] != 0.0f) {
1529                     sfbcnt = sfb;
1530                     sfb = -10;
1531                     lines = -10;
1532                   }
1533
1534                   lines--;
1535                   i--;
1536
1537                 } // while (lines > 0)
1538
1539               } // for (sfb=12 ...
1540               sfb = sfbcnt + 1;
1541
1542               if (sfb > max_sfb)
1543                 max_sfb = sfb;
1544
1545               while (sfb < 12) {
1546                 temp = sfBandIndex[sfreq].s[sfb];
1547                 sb = sfBandIndex[sfreq].s[sfb + 1] - temp;
1548                 i = (temp << 2) - temp + j * sb;
1549
1550                 TERMINATE: for (; sb > 0; sb--) {
1551                   is_pos[i] = scalefac[1].s[j][sfb];
1552                   if (is_pos[i] != 7)
1553                     if (lsf)
1554                       i_stereo_k_values(is_pos[i], io_type, i);
1555                     else
1556                       is_ratio[i] = TAN12[is_pos[i]];
1557
1558                   i++;
1559                 } // for (; sb>0...
1560                 sfb++;
1561               } // while (sfb < 12)
1562               sfb = sfBandIndex[sfreq].s[10];
1563               sb = sfBandIndex[sfreq].s[11] - sfb;
1564               sfb = (sfb << 2) - sfb + j * sb;
1565               temp = sfBandIndex[sfreq].s[11];
1566               sb = sfBandIndex[sfreq].s[12] - temp;
1567               i = (temp << 2) - temp + j * sb;
1568               TERMINATE: for (; sb > 0; sb--) {
1569                 is_pos[i] = is_pos[sfb];
1570
1571                 if (lsf) {
1572                   k[0][i] = k[0][sfb];
1573                   k[1][i] = k[1][sfb];
1574                 } else {
1575                   is_ratio[i] = is_ratio[sfb];
1576                 }
1577                 i++;
1578               } // for (; sb > 0 ...
1579             }
1580             if (max_sfb <= 3) {
1581               i = 2;
1582               ss = 17;
1583               sb = -1;
1584               TERMINATE: while (i >= 0) {
1585                 if (ro[1][i][ss] != 0.0f) {
1586                   sb = (i << 4) + (i << 1) + ss;
1587                   i = -1;
1588                 } else {
1589                   ss--;
1590                   if (ss < 0) {
1591                     i--;
1592                     ss = 17;
1593                   }
1594                 } // if (ro ...
1595               } // while (i>=0)
1596               i = 0;
1597               while (sfBandIndex[sfreq].l[i] <= sb)
1598                 i++;
1599               sfb = i;
1600               i = sfBandIndex[sfreq].l[i];
1601               for (; sfb < 8; sfb++) {
1602                 sb = sfBandIndex[sfreq].l[sfb + 1] - sfBandIndex[sfreq].l[sfb];
1603                 TERMINATE: for (; sb > 0; sb--) {
1604                   is_pos[i] = scalefac[1].l[sfb];
1605                   if (is_pos[i] != 7)
1606                     if (lsf)
1607                       i_stereo_k_values(is_pos[i], io_type, i);
1608                     else
1609                       is_ratio[i] = TAN12[is_pos[i]];
1610                   i++;
1611                 } // for (; sb>0 ...
1612               } // for (; sfb<8 ...
1613             } // for (j=0 ...
1614           } else { // if (gr_info.mixed_block_flag)
1615             for (int j = 0; j < 3; j++) {
1616               int sfbcnt;
1617               sfbcnt = -1;
1618               TERMINATE: for (sfb = 12; sfb >= 0; sfb--) {
1619                 temp = sfBandIndex[sfreq].s[sfb];
1620                 lines = sfBandIndex[sfreq].s[sfb + 1] - temp;
1621                 i = (temp << 2) - temp + (j + 1) * lines - 1;
1622                 TERMINATE: while (lines > 0) {
1623                   if (ro[1][i / 18][i % 18] != 0.0f) {
1624                     // MDM: in java, array access is very slow.
1625                     // Is quicker to compute div and mod values.
1626                     // if (ro[1][ss_div[i]][ss_mod[i]] != 0.0f) {
1627                     sfbcnt = sfb;
1628                     sfb = -10;
1629                     lines = -10;
1630                   }
1631                   lines--;
1632                   i--;
1633                 } // while (lines > 0) */
1634
1635               } // for (sfb=12 ...
1636               sfb = sfbcnt + 1;
1637               while (sfb < 12) {
1638                 temp = sfBandIndex[sfreq].s[sfb];
1639                 sb = sfBandIndex[sfreq].s[sfb + 1] - temp;
1640                 i = (temp << 2) - temp + j * sb;
1641                 TERMINATE: for (; sb > 0; sb--) {
1642                   is_pos[i] = scalefac[1].s[j][sfb];
1643                   if (is_pos[i] != 7)
1644                     if (lsf)
1645                       i_stereo_k_values(is_pos[i], io_type, i);
1646                     else
1647                       is_ratio[i] = TAN12[is_pos[i]];
1648                   i++;
1649                 } // for (; sb>0 ...
1650                 sfb++;
1651               } // while (sfb<12)
1652
1653               temp = sfBandIndex[sfreq].s[10];
1654               temp2 = sfBandIndex[sfreq].s[11];
1655               sb = temp2 - temp;
1656               sfb = (temp << 2) - temp + j * sb;
1657               sb = sfBandIndex[sfreq].s[12] - temp2;
1658               i = (temp2 << 2) - temp2 + j * sb;
1659               TERMINATE: for (; sb > 0; sb--) {
1660                 is_pos[i] = is_pos[sfb];
1661
1662                 if (lsf) {
1663                   k[0][i] = k[0][sfb];
1664                   k[1][i] = k[1][sfb];
1665                 } else {
1666                   is_ratio[i] = is_ratio[sfb];
1667                 }
1668                 i++;
1669               } // for (; sb>0 ...
1670             } // for (sfb=12
1671           } // for (j=0 ...
1672         } else { // if (gr_info.window_switching_flag ...
1673           i = 31;
1674           ss = 17;
1675           sb = 0;
1676           TERMINATE: while (i >= 0) {
1677             if (ro[1][i][ss] != 0.0f) {
1678               sb = (i << 4) + (i << 1) + ss;
1679               i = -1;
1680             } else {
1681               ss--;
1682               if (ss < 0) {
1683                 i--;
1684                 ss = 17;
1685               }
1686             }
1687           }
1688           i = 0;
1689           while (sfBandIndex[sfreq].l[i] <= sb)
1690             i++;
1691
1692           sfb = i;
1693           i = sfBandIndex[sfreq].l[i];
1694           for (; sfb < 21; sfb++) {
1695             sb = sfBandIndex[sfreq].l[sfb + 1] - sfBandIndex[sfreq].l[sfb];
1696             TERMINATE: for (; sb > 0; sb--) {
1697               is_pos[i] = scalefac[1].l[sfb];
1698               if (is_pos[i] != 7)
1699                 if (lsf)
1700                   i_stereo_k_values(is_pos[i], io_type, i);
1701                 else
1702                   is_ratio[i] = TAN12[is_pos[i]];
1703               i++;
1704             }
1705           }
1706           sfb = sfBandIndex[sfreq].l[20];
1707           TERMINATE: for (sb = 576 - sfBandIndex[sfreq].l[21]; (sb > 0) && (i < 576); sb--) {
1708             is_pos[i] = is_pos[sfb]; // error here : i >=576
1709
1710             if (lsf) {
1711               k[0][i] = k[0][sfb];
1712               k[1][i] = k[1][sfb];
1713             } else {
1714               is_ratio[i] = is_ratio[sfb];
1715             }
1716             i++;
1717           } // if (gr_info.mixed_block_flag)
1718         } // if (gr_info.window_switching_flag ...
1719       } // if (i_stereo)
1720
1721       i = 0;
1722       for (sb = 0; sb < SBLIMIT; sb++)
1723         for (ss = 0; ss < SSLIMIT; ss++) {
1724           if (is_pos[i] == 7) {
1725             if (ms_stereo) {
1726               lr[0][sb][ss] = (ro[0][sb][ss] + ro[1][sb][ss]) * 0.707106781f;
1727               lr[1][sb][ss] = (ro[0][sb][ss] - ro[1][sb][ss]) * 0.707106781f;
1728             } else {
1729               lr[0][sb][ss] = ro[0][sb][ss];
1730               lr[1][sb][ss] = ro[1][sb][ss];
1731             }
1732           } else if (i_stereo) {
1733
1734             if (lsf) {
1735               lr[0][sb][ss] = ro[0][sb][ss] * k[0][i];
1736               lr[1][sb][ss] = ro[0][sb][ss] * k[1][i];
1737             } else {
1738               lr[1][sb][ss] = ro[0][sb][ss] / (float) (1 + is_ratio[i]);
1739               lr[0][sb][ss] = lr[1][sb][ss] * is_ratio[i];
1740             }
1741           }
1742           /*
1743            * else { System.out.println("Error in stereo processing\n"); }
1744            */
1745           i++;
1746         }
1747
1748     } // channels == 2
1749
1750   }
1751
1752   /**
1753          *
1754          */
1755   //
1756
1757   private void antialias(int ch, int gr) {
1758
1759     int sb18;
1760     int ss;
1761     int sb18lim;
1762
1763     //
1764     // gr_info_s gr_info =
1765     // (si.ch[ch].gr[gr]);
1766     // 31 alias-reduction operations between each pair of sub-bands
1767     // with 8 butterflies between each pair
1768
1769     if ((si.ch[ch].gr[gr].window_switching_flag != 0) && (si.ch[ch].gr[gr].block_type == 2) && !(si.ch[ch].gr[gr].mixed_block_flag != 0))
1770       return;
1771
1772     if ((si.ch[ch].gr[gr].window_switching_flag != 0) && (si.ch[ch].gr[gr].mixed_block_flag != 0) && (si.ch[ch].gr[gr].block_type == 2)) {
1773       sb18lim = 18;
1774     } else {
1775       sb18lim = 558;
1776     }
1777
1778     for (sb18 = 0; sb18 < sb18lim; sb18 += 18) {
1779       for (ss = 0; ss < 8; ss++) {
1780         int src_idx1 = sb18 + 17 - ss;
1781         int src_idx2 = sb18 + 18 + ss;
1782         float bu = inter[src_idx1];
1783         float bd = inter[src_idx2];
1784         inter[src_idx1] = (bu * cs[ss]) - (bd * ca[ss]);
1785         inter[src_idx2] = (bd * cs[ss]) + (bu * ca[ss]);
1786       }
1787     }
1788   }
1789
1790   /**
1791          *
1792          */
1793
1794   // MDM: tsOutCopy and rawout do not need initializing, so the arrays
1795   // can be reused.
1796
1797   float[] tsOutCopy = new float[18];
1798
1799   float[] rawout = new float[36];
1800
1801   private void hybrid(int ch, int gr) {
1802
1803     int bt;
1804     int sb18;
1805     // gr_info_s gr_info = (si.ch[ch].gr[gr]); //remove alias
1806     // float[] tsOut; //remove alias
1807
1808     // float[][] prvblk;
1809
1810     for (sb18 = 0; sb18 < 576; sb18 += 18) {
1811       if ((si.ch[ch].gr[gr].window_switching_flag != 0) && (si.ch[ch].gr[gr].mixed_block_flag != 0) && (sb18 < 36)) {
1812         bt = 0;
1813       } else {
1814         bt = si.ch[ch].gr[gr].block_type;
1815       }
1816
1817       // tsOut = out_1d;
1818       // Modif E.B 02/22/99
1819       for (int cc = 0; cc < 18; cc++) {
1820         // tsOutCopy[cc] = out_1d[cc + sb18];
1821         tsOutCopy[cc] = inter[cc + sb18];
1822       }
1823
1824       inv_mdct(bt);
1825
1826       for (int cc = 0; cc < 18; cc++) {
1827         out_1d[cc + sb18] = tsOutCopy[cc];
1828       }
1829
1830       // Fin Modif
1831
1832       // overlap addition
1833       out_1d[0 + sb18] = rawout[0] + prevblck[ch][sb18 + 0];
1834       out_1d[1 + sb18] = rawout[1] + prevblck[ch][sb18 + 1];
1835       out_1d[2 + sb18] = rawout[2] + prevblck[ch][sb18 + 2];
1836       out_1d[3 + sb18] = rawout[3] + prevblck[ch][sb18 + 3];
1837       out_1d[4 + sb18] = rawout[4] + prevblck[ch][sb18 + 4];
1838       out_1d[5 + sb18] = rawout[5] + prevblck[ch][sb18 + 5];
1839       out_1d[6 + sb18] = rawout[6] + prevblck[ch][sb18 + 6];
1840       out_1d[7 + sb18] = rawout[7] + prevblck[ch][sb18 + 7];
1841       out_1d[8 + sb18] = rawout[8] + prevblck[ch][sb18 + 8];
1842       out_1d[9 + sb18] = rawout[9] + prevblck[ch][sb18 + 9];
1843       out_1d[10 + sb18] = rawout[10] + prevblck[ch][sb18 + 10];
1844       out_1d[11 + sb18] = rawout[11] + prevblck[ch][sb18 + 11];
1845       out_1d[12 + sb18] = rawout[12] + prevblck[ch][sb18 + 12];
1846       out_1d[13 + sb18] = rawout[13] + prevblck[ch][sb18 + 13];
1847       out_1d[14 + sb18] = rawout[14] + prevblck[ch][sb18 + 14];
1848       out_1d[15 + sb18] = rawout[15] + prevblck[ch][sb18 + 15];
1849       out_1d[16 + sb18] = rawout[16] + prevblck[ch][sb18 + 16];
1850       out_1d[17 + sb18] = rawout[17] + prevblck[ch][sb18 + 17];
1851       raw_full[ch][sb18 + 0] = rawout[18];
1852       raw_full[ch][sb18 + 1] = rawout[19];
1853       raw_full[ch][sb18 + 2] = rawout[20];
1854       raw_full[ch][sb18 + 3] = rawout[21];
1855       raw_full[ch][sb18 + 4] = rawout[22];
1856       raw_full[ch][sb18 + 5] = rawout[23];
1857       raw_full[ch][sb18 + 6] = rawout[24];
1858       raw_full[ch][sb18 + 7] = rawout[25];
1859       raw_full[ch][sb18 + 8] = rawout[26];
1860       raw_full[ch][sb18 + 9] = rawout[27];
1861       raw_full[ch][sb18 + 10] = rawout[28];
1862       raw_full[ch][sb18 + 11] = rawout[29];
1863       raw_full[ch][sb18 + 12] = rawout[30];
1864       raw_full[ch][sb18 + 13] = rawout[31];
1865       raw_full[ch][sb18 + 14] = rawout[32];
1866       raw_full[ch][sb18 + 15] = rawout[33];
1867       raw_full[ch][sb18 + 16] = rawout[34];
1868       raw_full[ch][sb18 + 17] = rawout[35];
1869
1870       // original implementation:
1871       // out_1d[0 + sb18] = rawout[0] + prevblck[ch][sb18 + 0];
1872       // prevblck[ch][sb18 + 0] = rawout[18];
1873       // out_1d[1 + sb18] = rawout[1] + prevblck[ch][sb18 + 1];
1874       // prevblck[ch][sb18 + 1] = rawout[19];
1875       // out_1d[2 + sb18] = rawout[2] + prevblck[ch][sb18 + 2];
1876       // prevblck[ch][sb18 + 2] = rawout[20];
1877       // out_1d[3 + sb18] = rawout[3] + prevblck[ch][sb18 + 3];
1878       // prevblck[ch][sb18 + 3] = rawout[21];
1879       // out_1d[4 + sb18] = rawout[4] + prevblck[ch][sb18 + 4];
1880       // prevblck[ch][sb18 + 4] = rawout[22];
1881       // out_1d[5 + sb18] = rawout[5] + prevblck[ch][sb18 + 5];
1882       // prevblck[ch][sb18 + 5] = rawout[23];
1883       // out_1d[6 + sb18] = rawout[6] + prevblck[ch][sb18 + 6];
1884       // prevblck[ch][sb18 + 6] = rawout[24];
1885       // out_1d[7 + sb18] = rawout[7] + prevblck[ch][sb18 + 7];
1886       // prevblck[ch][sb18 + 7] = rawout[25];
1887       // out_1d[8 + sb18] = rawout[8] + prevblck[ch][sb18 + 8];
1888       // prevblck[ch][sb18 + 8] = rawout[26];
1889       // out_1d[9 + sb18] = rawout[9] + prevblck[ch][sb18 + 9];
1890       // prevblck[ch][sb18 + 9] = rawout[27];
1891       // out_1d[10 + sb18] = rawout[10] + prevblck[ch][sb18 + 10];
1892       // prevblck[ch][sb18 + 10] = rawout[28];
1893       // out_1d[11 + sb18] = rawout[11] + prevblck[ch][sb18 + 11];
1894       // prevblck[ch][sb18 + 11] = rawout[29];
1895       // out_1d[12 + sb18] = rawout[12] + prevblck[ch][sb18 + 12];
1896       // prevblck[ch][sb18 + 12] = rawout[30];
1897       // out_1d[13 + sb18] = rawout[13] + prevblck[ch][sb18 + 13];
1898       // prevblck[ch][sb18 + 13] = rawout[31];
1899       // out_1d[14 + sb18] = rawout[14] + prevblck[ch][sb18 + 14];
1900       // prevblck[ch][sb18 + 14] = rawout[32];
1901       // out_1d[15 + sb18] = rawout[15] + prevblck[ch][sb18 + 15];
1902       // prevblck[ch][sb18 + 15] = rawout[33];
1903       // out_1d[16 + sb18] = rawout[16] + prevblck[ch][sb18 + 16];
1904       // prevblck[ch][sb18 + 16] = rawout[34];
1905       // out_1d[17 + sb18] = rawout[17] + prevblck[ch][sb18 + 17];
1906       // prevblck[ch][sb18 + 17] = rawout[35];
1907
1908     }
1909   }
1910
1911   /**
1912          *
1913          */
1914   private void do_downmix() {
1915     for (int sb = 0; sb < SSLIMIT; sb++) {
1916       for (int ss = 0; ss < SSLIMIT; ss += 3) {
1917         lr[0][sb][ss] = (lr[0][sb][ss] + lr[1][sb][ss]) * 0.5f;
1918         lr[0][sb][ss + 1] = (lr[0][sb][ss + 1] + lr[1][sb][ss + 1]) * 0.5f;
1919         lr[0][sb][ss + 2] = (lr[0][sb][ss + 2] + lr[1][sb][ss + 2]) * 0.5f;
1920       }
1921     }
1922   }
1923
1924   /**
1925    * Fast INV_MDCT.
1926    */
1927   //
1928   // public void inv_mdct( float[] in, float[] out,
1929   // int block_type) {//remove alias
1930   // ssjava
1931
1932   public void inv_mdct(int block_type) {
1933     // float[] win_bt;
1934     int i;
1935
1936     float tmpf_0;
1937     float tmpf_1;
1938     float tmpf_2;
1939     float tmpf_3;
1940     float tmpf_4;
1941     float tmpf_5;
1942     float tmpf_6;
1943     float tmpf_7;
1944     float tmpf_8;
1945     float tmpf_9;
1946     float tmpf_10;
1947     float tmpf_11;
1948     float tmpf_12;
1949     float tmpf_13;
1950     float tmpf_14;
1951     float tmpf_15;
1952     float tmpf_16;
1953     float tmpf_17;
1954
1955     tmpf_0 = tmpf_1 = tmpf_2 = tmpf_3 = tmpf_4 = tmpf_5 = tmpf_6 = tmpf_7 = tmpf_8 = tmpf_9 = tmpf_10 = tmpf_11 = tmpf_12 = tmpf_13 = tmpf_14 = tmpf_15 = tmpf_16 = tmpf_17 = 0.0f;
1956
1957     if (block_type == 2) {
1958
1959       /*
1960        * 
1961        * Under MicrosoftVM 2922, This causes a GPF, or At best, an
1962        * ArrayIndexOutOfBoundsExceptin. for(int p=0;p<36;p+=9) { out[p] =
1963        * out[p+1] = out[p+2] = out[p+3] = out[p+4] = out[p+5] = out[p+6] =
1964        * out[p+7] = out[p+8] = 0.0f; }
1965        */
1966       rawout[0] = 0.0f;
1967       rawout[1] = 0.0f;
1968       rawout[2] = 0.0f;
1969       rawout[3] = 0.0f;
1970       rawout[4] = 0.0f;
1971       rawout[5] = 0.0f;
1972       rawout[6] = 0.0f;
1973       rawout[7] = 0.0f;
1974       rawout[8] = 0.0f;
1975       rawout[9] = 0.0f;
1976       rawout[10] = 0.0f;
1977       rawout[11] = 0.0f;
1978       rawout[12] = 0.0f;
1979       rawout[13] = 0.0f;
1980       rawout[14] = 0.0f;
1981       rawout[15] = 0.0f;
1982       rawout[16] = 0.0f;
1983       rawout[17] = 0.0f;
1984       rawout[18] = 0.0f;
1985       rawout[19] = 0.0f;
1986       rawout[20] = 0.0f;
1987       rawout[21] = 0.0f;
1988       rawout[22] = 0.0f;
1989       rawout[23] = 0.0f;
1990       rawout[24] = 0.0f;
1991       rawout[25] = 0.0f;
1992       rawout[26] = 0.0f;
1993       rawout[27] = 0.0f;
1994       rawout[28] = 0.0f;
1995       rawout[29] = 0.0f;
1996       rawout[30] = 0.0f;
1997       rawout[31] = 0.0f;
1998       rawout[32] = 0.0f;
1999       rawout[33] = 0.0f;
2000       rawout[34] = 0.0f;
2001       rawout[35] = 0.0f;
2002
2003       int six_i = 0;
2004
2005       for (i = 0; i < 3; i++) {
2006         // 12 point IMDCT
2007         // Begin 12 point IDCT
2008         // Input aliasing for 12 pt IDCT
2009         tsOutCopy[15 + i] += tsOutCopy[12 + i];
2010         tsOutCopy[12 + i] += tsOutCopy[9 + i];
2011         tsOutCopy[9 + i] += tsOutCopy[6 + i];
2012         tsOutCopy[6 + i] += tsOutCopy[3 + i];
2013         tsOutCopy[3 + i] += tsOutCopy[0 + i];
2014
2015         // Input aliasing on odd indices (for 6 point IDCT)
2016         tsOutCopy[15 + i] += tsOutCopy[9 + i];
2017         tsOutCopy[9 + i] += tsOutCopy[3 + i];
2018
2019         // 3 point IDCT on even indices
2020         float pp1;
2021         float pp2;
2022         float sum;
2023         pp2 = tsOutCopy[12 + i] * 0.500000000f;
2024         pp1 = tsOutCopy[6 + i] * 0.866025403f;
2025         sum = tsOutCopy[0 + i] + pp2;
2026         tmpf_1 = tsOutCopy[0 + i] - tsOutCopy[12 + i];
2027         tmpf_0 = sum + pp1;
2028         tmpf_2 = sum - pp1;
2029
2030         // End 3 point IDCT on even indices
2031         // 3 point IDCT on odd indices (for 6 point IDCT)
2032         pp2 = tsOutCopy[15 + i] * 0.500000000f;
2033         pp1 = tsOutCopy[9 + i] * 0.866025403f;
2034         sum = tsOutCopy[3 + i] + pp2;
2035         tmpf_4 = tsOutCopy[3 + i] - tsOutCopy[15 + i];
2036         tmpf_5 = sum + pp1;
2037         tmpf_3 = sum - pp1;
2038         // End 3 point IDCT on odd indices
2039         // Twiddle factors on odd indices (for 6 point IDCT)
2040
2041         tmpf_3 *= 1.931851653f;
2042         tmpf_4 *= 0.707106781f;
2043         tmpf_5 *= 0.517638090f;
2044
2045         // Output butterflies on 2 3 point IDCT's (for 6 point IDCT)
2046         float save = tmpf_0;
2047         tmpf_0 += tmpf_5;
2048         tmpf_5 = save - tmpf_5;
2049         save = tmpf_1;
2050         tmpf_1 += tmpf_4;
2051         tmpf_4 = save - tmpf_4;
2052         save = tmpf_2;
2053         tmpf_2 += tmpf_3;
2054         tmpf_3 = save - tmpf_3;
2055
2056         // End 6 point IDCT
2057         // Twiddle factors on indices (for 12 point IDCT)
2058
2059         tmpf_0 *= 0.504314480f;
2060         tmpf_1 *= 0.541196100f;
2061         tmpf_2 *= 0.630236207f;
2062         tmpf_3 *= 0.821339815f;
2063         tmpf_4 *= 1.306562965f;
2064         tmpf_5 *= 3.830648788f;
2065
2066         // End 12 point IDCT
2067
2068         // Shift to 12 point modified IDCT, multiply by window type 2
2069         tmpf_8 = -tmpf_0 * 0.793353340f;
2070         tmpf_9 = -tmpf_0 * 0.608761429f;
2071         tmpf_7 = -tmpf_1 * 0.923879532f;
2072         tmpf_10 = -tmpf_1 * 0.382683432f;
2073         tmpf_6 = -tmpf_2 * 0.991444861f;
2074         tmpf_11 = -tmpf_2 * 0.130526192f;
2075
2076         tmpf_0 = tmpf_3;
2077         tmpf_1 = tmpf_4 * 0.382683432f;
2078         tmpf_2 = tmpf_5 * 0.608761429f;
2079
2080         tmpf_3 = -tmpf_5 * 0.793353340f;
2081         tmpf_4 = -tmpf_4 * 0.923879532f;
2082         tmpf_5 = -tmpf_0 * 0.991444861f;
2083
2084         tmpf_0 *= 0.130526192f;
2085
2086         rawout[six_i + 6] += tmpf_0;
2087         rawout[six_i + 7] += tmpf_1;
2088         rawout[six_i + 8] += tmpf_2;
2089         rawout[six_i + 9] += tmpf_3;
2090         rawout[six_i + 10] += tmpf_4;
2091         rawout[six_i + 11] += tmpf_5;
2092         rawout[six_i + 12] += tmpf_6;
2093         rawout[six_i + 13] += tmpf_7;
2094         rawout[six_i + 14] += tmpf_8;
2095         rawout[six_i + 15] += tmpf_9;
2096         rawout[six_i + 16] += tmpf_10;
2097         rawout[six_i + 17] += tmpf_11;
2098
2099         six_i += 6;
2100       }
2101     } else {
2102       // 36 point IDCT
2103       // input aliasing for 36 point IDCT
2104       tsOutCopy[17] += tsOutCopy[16];
2105       tsOutCopy[16] += tsOutCopy[15];
2106       tsOutCopy[15] += tsOutCopy[14];
2107       tsOutCopy[14] += tsOutCopy[13];
2108       tsOutCopy[13] += tsOutCopy[12];
2109       tsOutCopy[12] += tsOutCopy[11];
2110       tsOutCopy[11] += tsOutCopy[10];
2111       tsOutCopy[10] += tsOutCopy[9];
2112       tsOutCopy[9] += tsOutCopy[8];
2113       tsOutCopy[8] += tsOutCopy[7];
2114       tsOutCopy[7] += tsOutCopy[6];
2115       tsOutCopy[6] += tsOutCopy[5];
2116       tsOutCopy[5] += tsOutCopy[4];
2117       tsOutCopy[4] += tsOutCopy[3];
2118       tsOutCopy[3] += tsOutCopy[2];
2119       tsOutCopy[2] += tsOutCopy[1];
2120       tsOutCopy[1] += tsOutCopy[0];
2121
2122       // 18 point IDCT for odd indices
2123       // input aliasing for 18 point IDCT
2124       tsOutCopy[17] += tsOutCopy[15];
2125       tsOutCopy[15] += tsOutCopy[13];
2126       tsOutCopy[13] += tsOutCopy[11];
2127       tsOutCopy[11] += tsOutCopy[9];
2128       tsOutCopy[9] += tsOutCopy[7];
2129       tsOutCopy[7] += tsOutCopy[5];
2130       tsOutCopy[5] += tsOutCopy[3];
2131       tsOutCopy[3] += tsOutCopy[1];
2132
2133       float tmp0;
2134       float tmp1;
2135       float tmp2;
2136       float tmp3;
2137       float tmp4;
2138       float tmp0_;
2139       float tmp1_;
2140       float tmp2_;
2141       float tmp3_;
2142       float tmp0o;
2143       float tmp1o;
2144       float tmp2o;
2145       float tmp3o;
2146       float tmp4o;
2147       float tmp0_o;
2148       float tmp1_o;
2149       float tmp2_o;
2150       float tmp3_o;
2151
2152       // Fast 9 Point Inverse Discrete Cosine Transform
2153       //
2154       // By Francois-Raymond Boyer
2155       // mailto:boyerf@iro.umontreal.ca
2156       // http://www.iro.umontreal.ca/~boyerf
2157       //
2158       // The code has been optimized for Intel processors
2159       // (takes a lot of time to convert float to and from iternal FPU
2160       // representation)
2161       //
2162       // It is a simple "factorization" of the IDCT matrix.
2163
2164       // 9 point IDCT on even indices
2165
2166       // 5 points on odd indices (not realy an IDCT)
2167       float i00 = tsOutCopy[0] + tsOutCopy[0];
2168       float iip12 = i00 + tsOutCopy[12];
2169
2170       tmp0 = iip12 + tsOutCopy[4] * 1.8793852415718f + tsOutCopy[8] * 1.532088886238f + tsOutCopy[16] * 0.34729635533386f;
2171       tmp1 = i00 + tsOutCopy[4] - tsOutCopy[8] - tsOutCopy[12] - tsOutCopy[12] - tsOutCopy[16];
2172       tmp2 = iip12 - tsOutCopy[4] * 0.34729635533386f - tsOutCopy[8] * 1.8793852415718f + tsOutCopy[16] * 1.532088886238f;
2173       tmp3 = iip12 - tsOutCopy[4] * 1.532088886238f + tsOutCopy[8] * 0.34729635533386f - tsOutCopy[16] * 1.8793852415718f;
2174       tmp4 = tsOutCopy[0] - tsOutCopy[4] + tsOutCopy[8] - tsOutCopy[12] + tsOutCopy[16];
2175
2176       // 4 points on even indices
2177       float i66_ = tsOutCopy[6] * 1.732050808f; // Sqrt[3]
2178
2179       tmp0_ = tsOutCopy[2] * 1.9696155060244f + i66_ + tsOutCopy[10] * 1.2855752193731f + tsOutCopy[14] * 0.68404028665134f;
2180       tmp1_ = (tsOutCopy[2] - tsOutCopy[10] - tsOutCopy[14]) * 1.732050808f;
2181       tmp2_ = tsOutCopy[2] * 1.2855752193731f - i66_ - tsOutCopy[10] * 0.68404028665134f + tsOutCopy[14] * 1.9696155060244f;
2182       tmp3_ = tsOutCopy[2] * 0.68404028665134f - i66_ + tsOutCopy[10] * 1.9696155060244f - tsOutCopy[14] * 1.2855752193731f;
2183
2184       // 9 point IDCT on odd indices
2185       // 5 points on odd indices (not realy an IDCT)
2186       float i0 = tsOutCopy[0 + 1] + tsOutCopy[0 + 1];
2187       float i0p12 = i0 + tsOutCopy[12 + 1];
2188
2189       tmp0o = i0p12 + tsOutCopy[4 + 1] * 1.8793852415718f + tsOutCopy[8 + 1] * 1.532088886238f + tsOutCopy[16 + 1] * 0.34729635533386f;
2190       tmp1o = i0 + tsOutCopy[4 + 1] - tsOutCopy[8 + 1] - tsOutCopy[12 + 1] - tsOutCopy[12 + 1] - tsOutCopy[16 + 1];
2191       tmp2o = i0p12 - tsOutCopy[4 + 1] * 0.34729635533386f - tsOutCopy[8 + 1] * 1.8793852415718f + tsOutCopy[16 + 1] * 1.532088886238f;
2192       tmp3o = i0p12 - tsOutCopy[4 + 1] * 1.532088886238f + tsOutCopy[8 + 1] * 0.34729635533386f - tsOutCopy[16 + 1] * 1.8793852415718f;
2193       tmp4o = (tsOutCopy[0 + 1] - tsOutCopy[4 + 1] + tsOutCopy[8 + 1] - tsOutCopy[12 + 1] + tsOutCopy[16 + 1]) * 0.707106781f; // Twiddled
2194
2195       // 4 points on even indices
2196       float i6_ = tsOutCopy[6 + 1] * 1.732050808f; // Sqrt[3]
2197
2198       tmp0_o = tsOutCopy[2 + 1] * 1.9696155060244f + i6_ + tsOutCopy[10 + 1] * 1.2855752193731f + tsOutCopy[14 + 1] * 0.68404028665134f;
2199       tmp1_o = (tsOutCopy[2 + 1] - tsOutCopy[10 + 1] - tsOutCopy[14 + 1]) * 1.732050808f;
2200       tmp2_o = tsOutCopy[2 + 1] * 1.2855752193731f - i6_ - tsOutCopy[10 + 1] * 0.68404028665134f + tsOutCopy[14 + 1] * 1.9696155060244f;
2201       tmp3_o = tsOutCopy[2 + 1] * 0.68404028665134f - i6_ + tsOutCopy[10 + 1] * 1.9696155060244f - tsOutCopy[14 + 1] * 1.2855752193731f;
2202
2203       // Twiddle factors on odd indices
2204       // and
2205       // Butterflies on 9 point IDCT's
2206       // and
2207       // twiddle factors for 36 point IDCT
2208
2209       float e;
2210       float o;
2211       e = tmp0 + tmp0_;
2212       o = (tmp0o + tmp0_o) * 0.501909918f;
2213       tmpf_0 = e + o;
2214       tmpf_17 = e - o;
2215       e = tmp1 + tmp1_;
2216       o = (tmp1o + tmp1_o) * 0.517638090f;
2217       tmpf_1 = e + o;
2218       tmpf_16 = e - o;
2219       e = tmp2 + tmp2_;
2220       o = (tmp2o + tmp2_o) * 0.551688959f;
2221       tmpf_2 = e + o;
2222       tmpf_15 = e - o;
2223       e = tmp3 + tmp3_;
2224       o = (tmp3o + tmp3_o) * 0.610387294f;
2225       tmpf_3 = e + o;
2226       tmpf_14 = e - o;
2227       tmpf_4 = tmp4 + tmp4o;
2228       tmpf_13 = tmp4 - tmp4o;
2229       e = tmp3 - tmp3_;
2230       o = (tmp3o - tmp3_o) * 0.871723397f;
2231       tmpf_5 = e + o;
2232       tmpf_12 = e - o;
2233       e = tmp2 - tmp2_;
2234       o = (tmp2o - tmp2_o) * 1.183100792f;
2235       tmpf_6 = e + o;
2236       tmpf_11 = e - o;
2237       e = tmp1 - tmp1_;
2238       o = (tmp1o - tmp1_o) * 1.931851653f;
2239       tmpf_7 = e + o;
2240       tmpf_10 = e - o;
2241       e = tmp0 - tmp0_;
2242       o = (tmp0o - tmp0_o) * 5.736856623f;
2243       tmpf_8 = e + o;
2244       tmpf_9 = e - o;
2245
2246       // end 36 point IDCT */
2247       // shift to modified IDCT
2248       // win_bt = win[block_type]; //substituted this so that a new area does
2249       // not become created
2250
2251       rawout[0] = -tmpf_9 * win[block_type][0];
2252       rawout[1] = -tmpf_10 * win[block_type][1];
2253       rawout[2] = -tmpf_11 * win[block_type][2];
2254       rawout[3] = -tmpf_12 * win[block_type][3];
2255       rawout[4] = -tmpf_13 * win[block_type][4];
2256       rawout[5] = -tmpf_14 * win[block_type][5];
2257       rawout[6] = -tmpf_15 * win[block_type][6];
2258       rawout[7] = -tmpf_16 * win[block_type][7];
2259       rawout[8] = -tmpf_17 * win[block_type][8];
2260       rawout[9] = tmpf_17 * win[block_type][9];
2261       rawout[10] = tmpf_16 * win[block_type][10];
2262       rawout[11] = tmpf_15 * win[block_type][11];
2263       rawout[12] = tmpf_14 * win[block_type][12];
2264       rawout[13] = tmpf_13 * win[block_type][13];
2265       rawout[14] = tmpf_12 * win[block_type][14];
2266       rawout[15] = tmpf_11 * win[block_type][15];
2267       rawout[16] = tmpf_10 * win[block_type][16];
2268       rawout[17] = tmpf_9 * win[block_type][17];
2269       rawout[18] = tmpf_8 * win[block_type][18];
2270       rawout[19] = tmpf_7 * win[block_type][19];
2271       rawout[20] = tmpf_6 * win[block_type][20];
2272       rawout[21] = tmpf_5 * win[block_type][21];
2273       rawout[22] = tmpf_4 * win[block_type][22];
2274       rawout[23] = tmpf_3 * win[block_type][23];
2275       rawout[24] = tmpf_2 * win[block_type][24];
2276       rawout[25] = tmpf_1 * win[block_type][25];
2277       rawout[26] = tmpf_0 * win[block_type][26];
2278       rawout[27] = tmpf_0 * win[block_type][27];
2279       rawout[28] = tmpf_1 * win[block_type][28];
2280       rawout[29] = tmpf_2 * win[block_type][29];
2281       rawout[30] = tmpf_3 * win[block_type][30];
2282       rawout[31] = tmpf_4 * win[block_type][31];
2283       rawout[32] = tmpf_5 * win[block_type][32];
2284       rawout[33] = tmpf_6 * win[block_type][33];
2285       rawout[34] = tmpf_7 * win[block_type][34];
2286       rawout[35] = tmpf_8 * win[block_type][35];
2287     }
2288
2289   }
2290
2291   private int counter = 0;
2292   private static final int SSLIMIT = 18;
2293   private static final int SBLIMIT = 32;
2294
2295   // Size of the table of whole numbers raised to 4/3 power.
2296   // This may be adjusted for performance without any problems.
2297   // public static final int POW_TABLE_LIMIT=512;
2298
2299   private static final int slen[][] = { { 0, 0, 0, 0, 3, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4 }, { 0, 1, 2, 3, 0, 1, 2, 3, 1, 2, 3, 1, 2, 3, 2, 3 } };
2300
2301   public static final int pretab[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 3, 3, 3, 2, 0 };
2302
2303   private SBI[] sfBandIndex; // Init in the constructor.
2304
2305   public static final float two_to_negative_half_pow[] = { 1.0000000000E+00f, 7.0710678119E-01f, 5.0000000000E-01f, 3.5355339059E-01f, 2.5000000000E-01f, 1.7677669530E-01f, 1.2500000000E-01f, 8.8388347648E-02f, 6.2500000000E-02f, 4.4194173824E-02f, 3.1250000000E-02f, 2.2097086912E-02f, 1.5625000000E-02f, 1.1048543456E-02f, 7.8125000000E-03f, 5.5242717280E-03f, 3.9062500000E-03f, 2.7621358640E-03f, 1.9531250000E-03f, 1.3810679320E-03f, 9.7656250000E-04f, 6.9053396600E-04f, 4.8828125000E-04f, 3.4526698300E-04f, 2.4414062500E-04f, 1.7263349150E-04f, 1.2207031250E-04f, 8.6316745750E-05f, 6.1035156250E-05f, 4.3158372875E-05f, 3.0517578125E-05f, 2.1579186438E-05f, 1.5258789062E-05f, 1.0789593219E-05f, 7.6293945312E-06f, 5.3947966094E-06f, 3.8146972656E-06f, 2.6973983047E-06f, 1.9073486328E-06f, 1.3486991523E-06f, 9.5367431641E-07f, 6.7434957617E-07f, 4.7683715820E-07f, 3.3717478809E-07f, 2.3841857910E-07f, 1.6858739404E-07f, 1.1920928955E-07f, 8.4293697022E-08f, 5.9604644775E-08f, 4.2146848511E-08f, 2.9802322388E-08f, 2.1073424255E-08f, 1.4901161194E-08f, 1.0536712128E-08f, 7.4505805969E-09f, 5.2683560639E-09f, 3.7252902985E-09f, 2.6341780319E-09f, 1.8626451492E-09f, 1.3170890160E-09f, 9.3132257462E-10f, 6.5854450798E-10f, 4.6566128731E-10f, 3.2927225399E-10f };
2306
2307   public static final float t_43[] = create_t_43();
2308
2309   static private float[] create_t_43() {
2310     float[] t43 = new float[8192];
2311     final double d43 = (4.0 / 3.0);
2312
2313     for (int i = 0; i < 8192; i++) {
2314       t43[i] = (float) Math.pow(i, d43);
2315     }
2316     return t43;
2317   }
2318
2319   public static final float io[][] = { { 1.0000000000E+00f, 8.4089641526E-01f, 7.0710678119E-01f, 5.9460355751E-01f, 5.0000000001E-01f, 4.2044820763E-01f, 3.5355339060E-01f, 2.9730177876E-01f, 2.5000000001E-01f, 2.1022410382E-01f, 1.7677669530E-01f, 1.4865088938E-01f, 1.2500000000E-01f, 1.0511205191E-01f, 8.8388347652E-02f, 7.4325444691E-02f, 6.2500000003E-02f, 5.2556025956E-02f, 4.4194173826E-02f, 3.7162722346E-02f, 3.1250000002E-02f, 2.6278012978E-02f, 2.2097086913E-02f, 1.8581361173E-02f, 1.5625000001E-02f, 1.3139006489E-02f, 1.1048543457E-02f, 9.2906805866E-03f, 7.8125000006E-03f, 6.5695032447E-03f, 5.5242717285E-03f, 4.6453402934E-03f }, { 1.0000000000E+00f, 7.0710678119E-01f, 5.0000000000E-01f, 3.5355339060E-01f, 2.5000000000E-01f, 1.7677669530E-01f, 1.2500000000E-01f, 8.8388347650E-02f, 6.2500000001E-02f, 4.4194173825E-02f, 3.1250000001E-02f, 2.2097086913E-02f, 1.5625000000E-02f, 1.1048543456E-02f, 7.8125000002E-03f, 5.5242717282E-03f, 3.9062500001E-03f, 2.7621358641E-03f, 1.9531250001E-03f, 1.3810679321E-03f, 9.7656250004E-04f, 6.9053396603E-04f, 4.8828125002E-04f, 3.4526698302E-04f, 2.4414062501E-04f, 1.7263349151E-04f, 1.2207031251E-04f, 8.6316745755E-05f, 6.1035156254E-05f, 4.3158372878E-05f, 3.0517578127E-05f, 2.1579186439E-05f } };
2320
2321   public static final float TAN12[] = { 0.0f, 0.26794919f, 0.57735027f, 1.0f, 1.73205081f, 3.73205081f, 9.9999999e10f, -3.73205081f, -1.73205081f, -1.0f, -0.57735027f, -0.26794919f, 0.0f, 0.26794919f, 0.57735027f, 1.0f };
2322
2323   // REVIEW: in java, the array lookup may well be slower than
2324   // the actual calculation
2325   // 576 / 18
2326   /*
2327    * private static final int ss_div[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2328    * 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
2329    * 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
2330    * 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
2331    * 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6,
2332    * 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
2333    * 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
2334    * 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10,
2335    * 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11,
2336    * 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12,
2337    * 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13,
2338    * 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14,
2339    * 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
2340    * 15, 15, 15, 15, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
2341    * 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
2342    * 17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
2343    * 18, 18, 18, 18, 18, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
2344    * 19, 19, 19, 19, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
2345    * 20, 20, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
2346    * 21, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
2347    * 22, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
2348    * 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 25,
2349    * 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 26, 26,
2350    * 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 27,
2351    * 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28, 28, 28, 28,
2352    * 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 29, 29, 29,
2353    * 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 30, 30, 30, 30, 30, 30,
2354    * 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 31, 31, 31, 31, 31, 31, 31,
2355    * 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31 };
2356    * 
2357    * // 576 % 18 private static final int ss_mod[] = { 0, 1, 2, 3, 4, 5, 6, 7,
2358    * 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
2359    * 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
2360    * 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
2361    * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3,
2362    * 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7,
2363    * 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
2364    * 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
2365    * 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
2366    * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3,
2367    * 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7,
2368    * 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
2369    * 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
2370    * 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
2371    * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3,
2372    * 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7,
2373    * 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
2374    * 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
2375    * 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
2376    * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3,
2377    * 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7,
2378    * 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
2379    * 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
2380    * 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
2381    * 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3,
2382    * 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7,
2383    * 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
2384    * 12, 13, 14, 15, 16, 17 };
2385    */
2386
2387   private static/* final */int reorder_table[][]/* = loadReorderTable() */; // SZD:
2388
2389   // will
2390   // be
2391   // generated
2392   // on
2393   // demand
2394
2395   /**
2396    * Loads the data for the reorder
2397    */
2398   /*
2399    * private static int[][] loadReorderTable() // SZD: table will be generated {
2400    * try { Class elemType = int[][].class.getComponentType(); Object o =
2401    * JavaLayerUtils.deserializeArrayResource("l3reorder.ser", elemType, 6);
2402    * return (int[][])o; } catch (IOException ex) { throw new
2403    * ExceptionInInitializerError(ex); } }
2404    */
2405
2406   static int[] reorder(int scalefac_band[]) { // SZD: converted from
2407                                               // LAME
2408     int j = 0;
2409     int ix[] = new int[576];
2410     for (int sfb = 0; sfb < 13; sfb++) {
2411       int start = scalefac_band[sfb];
2412       int end = scalefac_band[sfb + 1];
2413       for (int window = 0; window < 3; window++)
2414         for (int i = start; i < end; i++)
2415           ix[3 * i + window] = j++;
2416     }
2417     return ix;
2418   }
2419
2420   /*
2421    * static final int reorder_table_data[][]; = { { 0, 4, 8, 1, 5, 9, 2, 6, 10,
2422    * 3, 7, 11, 12, 16, 20, 13, 17, 21, 14, 18, 22, 15, 19, 23, 24, 28, 32, 25,
2423    * 29, 33, 26, 30, 34, 27, 31, 35, 36, 42, 48, 37, 43, 49, 38, 44, 50, 39, 45,
2424    * 51, 40, 46, 52, 41, 47, 53, 54, 60, 66, 55, 61, 67, 56, 62, 68, 57, 63, 69,
2425    * 58, 64, 70, 59, 65, 71, 72, 80, 88, 73, 81, 89, 74, 82, 90, 75, 83, 91, 76,
2426    * 84, 92, 77, 85, 93, 78, 86, 94, 79, 87, 95, 96,106,116, 97,107,117,
2427    * 98,108,118, 99,109,119,100,110,120,101,
2428    * 111,121,102,112,122,103,113,123,104,114,124,105,115,125,126,140,
2429    * 154,127,141,155,128,142,156,129,143,157,130,144,158,131,145,159,
2430    * 132,146,160,133,147,161,134,148,162,135,149,163,136,150,164,137,
2431    * 151,165,138,152,166,139,153,167,168,186,204,169,187,205,170,188,
2432    * 206,171,189,207,172,190,208,173,191,209,174,192,210,175,193,211,
2433    * 176,194,212,177,195,213,178,196,214,179,197,215,180,198,216,181,
2434    * 199,217,182,200,218,183,201,219,184,202,220,185,203,221,222,248,
2435    * 274,223,249,275,224,250,276,225,251,277,226,252,278,227,253,279,
2436    * 228,254,280,229,255,281,230,256,282,231,257,283,232,258,284,233,
2437    * 259,285,234,260,286,235,261,287,236,262,288,237,263,289,238,264,
2438    * 290,239,265,291,240,266,292,241,267,293,242,268,294,243,269,295,
2439    * 244,270,296,245,271,297,246,272,298,247,273,299,300,332,364,301,
2440    * 333,365,302,334,366,303,335,367,304,336,368,305,337,369,306,338,
2441    * 370,307,339,371,308,340,372,309,341,373,310,342,374,311,343,375,
2442    * 312,344,376,313,345,377,314,346,378,315,347,379,316,348,380,317,
2443    * 349,381,318,350,382,319,351,383,320,352,384,321,353,385,322,354,
2444    * 386,323,355,387,324,356,388,325,357,389,326,358,390,327,359,391,
2445    * 328,360,392,329,361,393,330,362,394,331,363,395,396,438,480,397,
2446    * 439,481,398,440,482,399,441,483,400,442,484,401,443,485,402,444,
2447    * 486,403,445,487,404,446,488,405,447,489,406,448,490,407,449,491,
2448    * 408,450,492,409,451,493,410,452,494,411,453,495,412,454,496,413,
2449    * 455,497,414,456,498,415,457,499,416,458,500,417,459,501,418,460,
2450    * 502,419,461,503,420,462,504,421,463,505,422,464,506,423,465,507,
2451    * 424,466,508,425,467,509,426,468,510,427,469,511,428,470,512,429,
2452    * 471,513,430,472,514,431,473,515,432,474,516,433,475,517,434,476,
2453    * 518,435,477,519,436,478,520,437,479,521,522,540,558,523,541,559,
2454    * 524,542,560,525,543,561,526,544,562,527,545,563,528,546,564,529,
2455    * 547,565,530,548,566,531,549,567,532,550,568,533,551,569,534,552,
2456    * 570,535,553,571,536,554,572,537,555,573,538,556,574,539,557,575}, { 0, 4,
2457    * 8, 1, 5, 9, 2, 6, 10, 3, 7, 11, 12, 16, 20, 13, 17, 21, 14, 18, 22, 15, 19,
2458    * 23, 24, 28, 32, 25, 29, 33, 26, 30, 34, 27, 31, 35, 36, 42, 48, 37, 43, 49,
2459    * 38, 44, 50, 39, 45, 51, 40, 46, 52, 41, 47, 53, 54, 62, 70, 55, 63, 71, 56,
2460    * 64, 72, 57, 65, 73, 58, 66, 74, 59, 67, 75, 60, 68, 76, 61, 69, 77, 78, 88,
2461    * 98, 79, 89, 99, 80, 90,100, 81, 91,101, 82, 92,102, 83, 93,103, 84, 94,104,
2462    * 85, 95,105, 86, 96,106, 87, 97,107,108,120,132,109,
2463    * 121,133,110,122,134,111,123,135,112,124,136,113,125,137,114,126,
2464    * 138,115,127,139,116,128,140,117,129,141,118,130,142,119,131,143,
2465    * 144,158,172,145,159,173,146,160,174,147,161,175,148,162,176,149,
2466    * 163,177,150,164,178,151,165,179,152,166,180,153,167,181,154,168,
2467    * 182,155,169,183,156,170,184,157,171,185,186,204,222,187,205,223,
2468    * 188,206,224,189,207,225,190,208,226,191,209,227,192,210,228,193,
2469    * 211,229,194,212,230,195,213,231,196,214,232,197,215,233,198,216,
2470    * 234,199,217,235,200,218,236,201,219,237,202,220,238,203,221,239,
2471    * 240,264,288,241,265,289,242,266,290,243,267,291,244,268,292,245,
2472    * 269,293,246,270,294,247,271,295,248,272,296,249,273,297,250,274,
2473    * 298,251,275,299,252,276,300,253,277,301,254,278,302,255,279,303,
2474    * 256,280,304,257,281,305,258,282,306,259,283,307,260,284,308,261,
2475    * 285,309,262,286,310,263,287,311,312,344,376,313,345,377,314,346,
2476    * 378,315,347,379,316,348,380,317,349,381,318,350,382,319,351,383,
2477    * 320,352,384,321,353,385,322,354,386,323,355,387,324,356,388,325,
2478    * 357,389,326,358,390,327,359,391,328,360,392,329,361,393,330,362,
2479    * 394,331,363,395,332,364,396,333,365,397,334,366,398,335,367,399,
2480    * 336,368,400,337,369,401,338,370,402,339,371,403,340,372,404,341,
2481    * 373,405,342,374,406,343,375,407,408,452,496,409,453,497,410,454,
2482    * 498,411,455,499,412,456,500,413,457,501,414,458,502,415,459,503,
2483    * 416,460,504,417,461,505,418,462,506,419,463,507,420,464,508,421,
2484    * 465,509,422,466,510,423,467,511,424,468,512,425,469,513,426,470,
2485    * 514,427,471,515,428,472,516,429,473,517,430,474,518,431,475,519,
2486    * 432,476,520,433,477,521,434,478,522,435,479,523,436,480,524,437,
2487    * 481,525,438,482,526,439,483,527,440,484,528,441,485,529,442,486,
2488    * 530,443,487,531,444,488,532,445,489,533,446,490,534,447,491,535,
2489    * 448,492,536,449,493,537,450,494,538,451,495,539,540,552,564,541,
2490    * 553,565,542,554,566,543,555,567,544,556,568,545,557,569,546,558,
2491    * 570,547,559,571,548,560,572,549,561,573,550,562,574,551,563,575}, { 0, 4,
2492    * 8, 1, 5, 9, 2, 6, 10, 3, 7, 11, 12, 16, 20, 13, 17, 21, 14, 18, 22, 15, 19,
2493    * 23, 24, 28, 32, 25, 29, 33, 26, 30, 34, 27, 31, 35, 36, 42, 48, 37, 43, 49,
2494    * 38, 44, 50, 39, 45, 51, 40, 46, 52, 41, 47, 53, 54, 62, 70, 55, 63, 71, 56,
2495    * 64, 72, 57, 65, 73, 58, 66, 74, 59, 67, 75, 60, 68, 76, 61, 69, 77, 78, 88,
2496    * 98, 79, 89, 99, 80, 90,100, 81, 91,101, 82, 92,102, 83, 93,103, 84, 94,104,
2497    * 85, 95,105, 86, 96,106, 87, 97,107,108,120,132,109,
2498    * 121,133,110,122,134,111,123,135,112,124,136,113,125,137,114,126,
2499    * 138,115,127,139,116,128,140,117,129,141,118,130,142,119,131,143,
2500    * 144,158,172,145,159,173,146,160,174,147,161,175,148,162,176,149,
2501    * 163,177,150,164,178,151,165,179,152,166,180,153,167,181,154,168,
2502    * 182,155,169,183,156,170,184,157,171,185,186,204,222,187,205,223,
2503    * 188,206,224,189,207,225,190,208,226,191,209,227,192,210,228,193,
2504    * 211,229,194,212,230,195,213,231,196,214,232,197,215,233,198,216,
2505    * 234,199,217,235,200,218,236,201,219,237,202,220,238,203,221,239,
2506    * 240,264,288,241,265,289,242,266,290,243,267,291,244,268,292,245,
2507    * 269,293,246,270,294,247,271,295,248,272,296,249,273,297,250,274,
2508    * 298,251,275,299,252,276,300,253,277,301,254,278,302,255,279,303,
2509    * 256,280,304,257,281,305,258,282,306,259,283,307,260,284,308,261,
2510    * 285,309,262,286,310,263,287,311,312,342,372,313,343,373,314,344,
2511    * 374,315,345,375,316,346,376,317,347,377,318,348,378,319,349,379,
2512    * 320,350,380,321,351,381,322,352,382,323,353,383,324,354,384,325,
2513    * 355,385,326,356,386,327,357,387,328,358,388,329,359,389,330,360,
2514    * 390,331,361,391,332,362,392,333,363,393,334,364,394,335,365,395,
2515    * 336,366,396,337,367,397,338,368,398,339,369,399,340,370,400,341,
2516    * 371,401,402,442,482,403,443,483,404,444,484,405,445,485,406,446,
2517    * 486,407,447,487,408,448,488,409,449,489,410,450,490,411,451,491,
2518    * 412,452,492,413,453,493,414,454,494,415,455,495,416,456,496,417,
2519    * 457,497,418,458,498,419,459,499,420,460,500,421,461,501,422,462,
2520    * 502,423,463,503,424,464,504,425,465,505,426,466,506,427,467,507,
2521    * 428,468,508,429,469,509,430,470,510,431,471,511,432,472,512,433,
2522    * 473,513,434,474,514,435,475,515,436,476,516,437,477,517,438,478,
2523    * 518,439,479,519,440,480,520,441,481,521,522,540,558,523,541,559,
2524    * 524,542,560,525,543,561,526,544,562,527,545,563,528,546,564,529,
2525    * 547,565,530,548,566,531,549,567,532,550,568,533,551,569,534,552,
2526    * 570,535,553,571,536,554,572,537,555,573,538,556,574,539,557,575}, { 0, 4,
2527    * 8, 1, 5, 9, 2, 6, 10, 3, 7, 11, 12, 16, 20, 13, 17, 21, 14, 18, 22, 15, 19,
2528    * 23, 24, 28, 32, 25, 29, 33, 26, 30, 34, 27, 31, 35, 36, 40, 44, 37, 41, 45,
2529    * 38, 42, 46, 39, 43, 47, 48, 54, 60, 49, 55, 61, 50, 56, 62, 51, 57, 63, 52,
2530    * 58, 64, 53, 59, 65, 66, 74, 82, 67, 75, 83, 68, 76, 84, 69, 77, 85, 70, 78,
2531    * 86, 71, 79, 87, 72, 80, 88, 73, 81, 89, 90,100,110, 91,101,111, 92,102,112,
2532    * 93,103,113, 94,104,114, 95,105,115, 96,106,116, 97, 107,117, 98,108,118,
2533    * 99,109,119,120,132,144,121,133,145,122,134,
2534    * 146,123,135,147,124,136,148,125,137,149,126,138,150,127,139,151,
2535    * 128,140,152,129,141,153,130,142,154,131,143,155,156,170,184,157,
2536    * 171,185,158,172,186,159,173,187,160,174,188,161,175,189,162,176,
2537    * 190,163,177,191,164,178,192,165,179,193,166,180,194,167,181,195,
2538    * 168,182,196,169,183,197,198,216,234,199,217,235,200,218,236,201,
2539    * 219,237,202,220,238,203,221,239,204,222,240,205,223,241,206,224,
2540    * 242,207,225,243,208,226,244,209,227,245,210,228,246,211,229,247,
2541    * 212,230,248,213,231,249,214,232,250,215,233,251,252,274,296,253,
2542    * 275,297,254,276,298,255,277,299,256,278,300,257,279,301,258,280,
2543    * 302,259,281,303,260,282,304,261,283,305,262,284,306,263,285,307,
2544    * 264,286,308,265,287,309,266,288,310,267,289,311,268,290,312,269,
2545    * 291,313,270,292,314,271,293,315,272,294,316,273,295,317,318,348,
2546    * 378,319,349,379,320,350,380,321,351,381,322,352,382,323,353,383,
2547    * 324,354,384,325,355,385,326,356,386,327,357,387,328,358,388,329,
2548    * 359,389,330,360,390,331,361,391,332,362,392,333,363,393,334,364,
2549    * 394,335,365,395,336,366,396,337,367,397,338,368,398,339,369,399,
2550    * 340,370,400,341,371,401,342,372,402,343,373,403,344,374,404,345,
2551    * 375,405,346,376,406,347,377,407,408,464,520,409,465,521,410,466,
2552    * 522,411,467,523,412,468,524,413,469,525,414,470,526,415,471,527,
2553    * 416,472,528,417,473,529,418,474,530,419,475,531,420,476,532,421,
2554    * 477,533,422,478,534,423,479,535,424,480,536,425,481,537,426,482,
2555    * 538,427,483,539,428,484,540,429,485,541,430,486,542,431,487,543,
2556    * 432,488,544,433,489,545,434,490,546,435,491,547,436,492,548,437,
2557    * 493,549,438,494,550,439,495,551,440,496,552,441,497,553,442,498,
2558    * 554,443,499,555,444,500,556,445,501,557,446,502,558,447,503,559,
2559    * 448,504,560,449,505,561,450,506,562,451,507,563,452,508,564,453,
2560    * 509,565,454,510,566,455,511,567,456,512,568,457,513,569,458,514,
2561    * 570,459,515,571,460,516,572,461,517,573,462,518,574,463,519,575}, { 0, 4,
2562    * 8, 1, 5, 9, 2, 6, 10, 3, 7, 11, 12, 16, 20, 13, 17, 21, 14, 18, 22, 15, 19,
2563    * 23, 24, 28, 32, 25, 29, 33, 26, 30, 34, 27, 31, 35, 36, 40, 44, 37, 41, 45,
2564    * 38, 42, 46, 39, 43, 47, 48, 54, 60, 49, 55, 61, 50, 56, 62, 51, 57, 63, 52,
2565    * 58, 64, 53, 59, 65, 66, 72, 78, 67, 73, 79, 68, 74, 80, 69, 75, 81, 70, 76,
2566    * 82, 71, 77, 83, 84, 94,104, 85, 95,105, 86, 96,106, 87, 97,107, 88, 98,108,
2567    * 89, 99,109, 90,100,110, 91,101,111, 92,102,112, 93,
2568    * 103,113,114,126,138,115,127,139,116,128,140,117,129,141,118,130,
2569    * 142,119,131,143,120,132,144,121,133,145,122,134,146,123,135,147,
2570    * 124,136,148,125,137,149,150,164,178,151,165,179,152,166,180,153,
2571    * 167,181,154,168,182,155,169,183,156,170,184,157,171,185,158,172,
2572    * 186,159,173,187,160,174,188,161,175,189,162,176,190,163,177,191,
2573    * 192,208,224,193,209,225,194,210,226,195,211,227,196,212,228,197,
2574    * 213,229,198,214,230,199,215,231,200,216,232,201,217,233,202,218,
2575    * 234,203,219,235,204,220,236,205,221,237,206,222,238,207,223,239,
2576    * 240,260,280,241,261,281,242,262,282,243,263,283,244,264,284,245,
2577    * 265,285,246,266,286,247,267,287,248,268,288,249,269,289,250,270,
2578    * 290,251,271,291,252,272,292,253,273,293,254,274,294,255,275,295,
2579    * 256,276,296,257,277,297,258,278,298,259,279,299,300,326,352,301,
2580    * 327,353,302,328,354,303,329,355,304,330,356,305,331,357,306,332,
2581    * 358,307,333,359,308,334,360,309,335,361,310,336,362,311,337,363,
2582    * 312,338,364,313,339,365,314,340,366,315,341,367,316,342,368,317,
2583    * 343,369,318,344,370,319,345,371,320,346,372,321,347,373,322,348,
2584    * 374,323,349,375,324,350,376,325,351,377,378,444,510,379,445,511,
2585    * 380,446,512,381,447,513,382,448,514,383,449,515,384,450,516,385,
2586    * 451,517,386,452,518,387,453,519,388,454,520,389,455,521,390,456,
2587    * 522,391,457,523,392,458,524,393,459,525,394,460,526,395,461,527,
2588    * 396,462,528,397,463,529,398,464,530,399,465,531,400,466,532,401,
2589    * 467,533,402,468,534,403,469,535,404,470,536,405,471,537,406,472,
2590    * 538,407,473,539,408,474,540,409,475,541,410,476,542,411,477,543,
2591    * 412,478,544,413,479,545,414,480,546,415,481,547,416,482,548,417,
2592    * 483,549,418,484,550,419,485,551,420,486,552,421,487,553,422,488,
2593    * 554,423,489,555,424,490,556,425,491,557,426,492,558,427,493,559,
2594    * 428,494,560,429,495,561,430,496,562,431,497,563,432,498,564,433,
2595    * 499,565,434,500,566,435,501,567,436,502,568,437,503,569,438,504,
2596    * 570,439,505,571,440,506,572,441,507,573,442,508,574,443,509,575}, { 0, 4,
2597    * 8, 1, 5, 9, 2, 6, 10, 3, 7, 11, 12, 16, 20, 13, 17, 21, 14, 18, 22, 15, 19,
2598    * 23, 24, 28, 32, 25, 29, 33, 26, 30, 34, 27, 31, 35, 36, 40, 44, 37, 41, 45,
2599    * 38, 42, 46, 39, 43, 47, 48, 54, 60, 49, 55, 61, 50, 56, 62, 51, 57, 63, 52,
2600    * 58, 64, 53, 59, 65, 66, 74, 82, 67, 75, 83, 68, 76, 84, 69, 77, 85, 70, 78,
2601    * 86, 71, 79, 87, 72, 80, 88, 73, 81, 89, 90,102,114, 91,103,115, 92,104,116,
2602    * 93,105,117, 94,106,118, 95,107,119, 96,108,120, 97, 109,121, 98,110,122,
2603    * 99,111,123,100,112,124,101,113,125,126,142,
2604    * 158,127,143,159,128,144,160,129,145,161,130,146,162,131,147,163,
2605    * 132,148,164,133,149,165,134,150,166,135,151,167,136,152,168,137,
2606    * 153,169,138,154,170,139,155,171,140,156,172,141,157,173,174,194,
2607    * 214,175,195,215,176,196,216,177,197,217,178,198,218,179,199,219,
2608    * 180,200,220,181,201,221,182,202,222,183,203,223,184,204,224,185,
2609    * 205,225,186,206,226,187,207,227,188,208,228,189,209,229,190,210,
2610    * 230,191,211,231,192,212,232,193,213,233,234,260,286,235,261,287,
2611    * 236,262,288,237,263,289,238,264,290,239,265,291,240,266,292,241,
2612    * 267,293,242,268,294,243,269,295,244,270,296,245,271,297,246,272,
2613    * 298,247,273,299,248,274,300,249,275,301,250,276,302,251,277,303,
2614    * 252,278,304,253,279,305,254,280,306,255,281,307,256,282,308,257,
2615    * 283,309,258,284,310,259,285,311,312,346,380,313,347,381,314,348,
2616    * 382,315,349,383,316,350,384,317,351,385,318,352,386,319,353,387,
2617    * 320,354,388,321,355,389,322,356,390,323,357,391,324,358,392,325,
2618    * 359,393,326,360,394,327,361,395,328,362,396,329,363,397,330,364,
2619    * 398,331,365,399,332,366,400,333,367,401,334,368,402,335,369,403,
2620    * 336,370,404,337,371,405,338,372,406,339,373,407,340,374,408,341,
2621    * 375,409,342,376,410,343,377,411,344,378,412,345,379,413,414,456,
2622    * 498,415,457,499,416,458,500,417,459,501,418,460,502,419,461,503,
2623    * 420,462,504,421,463,505,422,464,506,423,465,507,424,466,508,425,
2624    * 467,509,426,468,510,427,469,511,428,470,512,429,471,513,430,472,
2625    * 514,431,473,515,432,474,516,433,475,517,434,476,518,435,477,519,
2626    * 436,478,520,437,479,521,438,480,522,439,481,523,440,482,524,441,
2627    * 483,525,442,484,526,443,485,527,444,486,528,445,487,529,446,488,
2628    * 530,447,489,531,448,490,532,449,491,533,450,492,534,451,493,535,
2629    * 452,494,536,453,495,537,454,496,538,455,497,539,540,552,564,541,
2630    * 553,565,542,554,566,543,555,567,544,556,568,545,557,569,546,558,
2631    * 570,547,559,571,548,560,572,549,561,573,550,562,574,551,563,575} };
2632    */
2633
2634   private static final float cs[] = { 0.857492925712f, 0.881741997318f, 0.949628649103f, 0.983314592492f, 0.995517816065f, 0.999160558175f, 0.999899195243f, 0.999993155067f };
2635
2636   private static final float ca[] = { -0.5144957554270f, -0.4717319685650f, -0.3133774542040f, -0.1819131996110f, -0.0945741925262f, -0.0409655828852f, -0.0141985685725f, -0.00369997467375f };
2637
2638   /************************************************************/
2639   /* END OF L3TABLE */
2640   /************************************************************/
2641
2642   /************************************************************/
2643   /* L3TYPE */
2644   /************************************************************/
2645
2646   /***************************************************************/
2647   /* END OF L3TYPE */
2648   /***************************************************************/
2649
2650   /***************************************************************/
2651   /* INV_MDCT */
2652   /***************************************************************/
2653   public static final float win[][] = { { -1.6141214951E-02f, -5.3603178919E-02f, -1.0070713296E-01f, -1.6280817573E-01f, -4.9999999679E-01f, -3.8388735032E-01f, -6.2061144372E-01f, -1.1659756083E+00f, -3.8720752656E+00f, -4.2256286556E+00f, -1.5195289984E+00f, -9.7416483388E-01f, -7.3744074053E-01f, -1.2071067773E+00f, -5.1636156596E-01f, -4.5426052317E-01f, -4.0715656898E-01f, -3.6969460527E-01f, -3.3876269197E-01f, -3.1242222492E-01f, -2.8939587111E-01f, -2.6880081906E-01f, -5.0000000266E-01f, -2.3251417468E-01f, -2.1596714708E-01f, -2.0004979098E-01f, -1.8449493497E-01f, -1.6905846094E-01f, -1.5350360518E-01f, -1.3758624925E-01f, -1.2103922149E-01f, -2.0710679058E-01f, -8.4752577594E-02f, -6.4157525656E-02f, -4.1131172614E-02f, -1.4790705759E-02f },
2654
2655   { -1.6141214951E-02f, -5.3603178919E-02f, -1.0070713296E-01f, -1.6280817573E-01f, -4.9999999679E-01f, -3.8388735032E-01f, -6.2061144372E-01f, -1.1659756083E+00f, -3.8720752656E+00f, -4.2256286556E+00f, -1.5195289984E+00f, -9.7416483388E-01f, -7.3744074053E-01f, -1.2071067773E+00f, -5.1636156596E-01f, -4.5426052317E-01f, -4.0715656898E-01f, -3.6969460527E-01f, -3.3908542600E-01f, -3.1511810350E-01f, -2.9642226150E-01f, -2.8184548650E-01f, -5.4119610000E-01f, -2.6213228100E-01f, -2.5387916537E-01f, -2.3296291359E-01f, -1.9852728987E-01f, -1.5233534808E-01f, -9.6496400054E-02f, -3.3423828516E-02f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f },
2656
2657   { -4.8300800645E-02f, -1.5715656932E-01f, -2.8325045177E-01f, -4.2953747763E-01f, -1.2071067795E+00f, -8.2426483178E-01f, -1.1451749106E+00f, -1.7695290101E+00f, -4.5470225061E+00f, -3.4890531002E+00f, -7.3296292804E-01f, -1.5076514758E-01f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f },
2658
2659   { 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, 0.0000000000E+00f, -1.5076513660E-01f, -7.3296291107E-01f, -3.4890530566E+00f, -4.5470224727E+00f, -1.7695290031E+00f, -1.1451749092E+00f, -8.3137738100E-01f, -1.3065629650E+00f, -5.4142014250E-01f, -4.6528974900E-01f, -4.1066990750E-01f, -3.7004680800E-01f, -3.3876269197E-01f, -3.1242222492E-01f, -2.8939587111E-01f, -2.6880081906E-01f, -5.0000000266E-01f, -2.3251417468E-01f, -2.1596714708E-01f, -2.0004979098E-01f, -1.8449493497E-01f, -1.6905846094E-01f, -1.5350360518E-01f, -1.3758624925E-01f, -1.2103922149E-01f, -2.0710679058E-01f, -8.4752577594E-02f, -6.4157525656E-02f, -4.1131172614E-02f, -1.4790705759E-02f } };
2660
2661   /***************************************************************/
2662   /* END OF INV_MDCT */
2663   /***************************************************************/
2664
2665   public static final int nr_of_sfb_block[][][] = { { { 6, 5, 5, 5 }, { 9, 9, 9, 9 }, { 6, 9, 9, 9 } }, { { 6, 5, 7, 3 }, { 9, 9, 12, 6 }, { 6, 9, 12, 6 } }, { { 11, 10, 0, 0 }, { 18, 18, 0, 0 }, { 15, 18, 0, 0 } }, { { 7, 7, 7, 0 }, { 12, 12, 12, 0 }, { 6, 15, 12, 0 } }, { { 6, 6, 6, 3 }, { 12, 9, 9, 6 }, { 6, 12, 9, 6 } }, { { 8, 8, 5, 0 }, { 15, 12, 9, 0 }, { 6, 18, 9, 0 } } };
2666
2667 }
2668
2669 /************************************************************/
2670 /* L3TABLE */
2671 /************************************************************/
2672
2673 class SBI {
2674
2675   public int[] l;
2676
2677   public int[] s;
2678
2679   public SBI() {
2680     l = new int[23];
2681     s = new int[14];
2682   }
2683
2684   public SBI(@DELEGATE int[] thel, @DELEGATE int[] thes) {
2685     l = thel;
2686     s = thes;
2687   }
2688 }
2689
2690 class gr_info_s {
2691
2692   public int part2_3_length = 0;
2693
2694   public int big_values = 0;
2695
2696   public int global_gain = 0;
2697
2698   public int scalefac_compress = 0;
2699
2700   public int window_switching_flag = 0;
2701
2702   public int block_type = 0;
2703
2704   public int mixed_block_flag = 0;
2705
2706   public int[] table_select;
2707
2708   public int[] subblock_gain;
2709
2710   public int region0_count = 0;
2711
2712   public int region1_count = 0;
2713
2714   public int preflag = 0;
2715
2716   public int scalefac_scale = 0;
2717
2718   public int count1table_select = 0;
2719
2720   /**
2721    * Dummy Constructor
2722    */
2723   public gr_info_s() {
2724     table_select = new int[3];
2725     subblock_gain = new int[3];
2726   }
2727 }
2728
2729 class temporaire {
2730
2731   public int[] scfsi;
2732
2733   public gr_info_s[] gr;
2734
2735   /**
2736    * Dummy Constructor
2737    */
2738   public temporaire() {
2739     scfsi = new int[4];
2740     gr = new gr_info_s[2];
2741     gr[0] = new gr_info_s();
2742     gr[1] = new gr_info_s();
2743   }
2744 }
2745
2746 class III_side_info_t {
2747
2748   public int main_data_begin = 0;
2749
2750   public int private_bits = 0;
2751
2752   public temporaire[] ch;
2753
2754   /**
2755    * Dummy Constructor
2756    */
2757   public III_side_info_t() {
2758     ch = new temporaire[2];
2759     ch[0] = new temporaire();
2760     ch[1] = new temporaire();
2761   }
2762 }
2763
2764 class temporaire2 {
2765
2766   public int[] l; /* [cb] */
2767
2768   public int[][] s; /* [window][cb] */
2769
2770   /**
2771    * Dummy Constructor
2772    */
2773   public temporaire2() {
2774     l = new int[23];
2775     s = new int[3][13];
2776   }
2777 }
2778
2779 // class III_scalefac_t
2780 // {
2781 // public temporaire2[] tab;
2782 // /**
2783 // * Dummy Constructor
2784 // */
2785 // public III_scalefac_t()
2786 // {
2787 // tab = new temporaire2[2];
2788 // }
2789 // }