~gryle-devel/gryle/trunk-deleted

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
/*
 * 11/19/04		1.0 moved to LGPL.
 * 
 * 12/12/99		Initial version. Adapted from javalayer.java
 *				and Subband*.java. mdm@techie.com
 *
 * 02/28/99		Initial version : javalayer.java by E.B
 *-----------------------------------------------------------------------
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU Library General Public License as published
 *   by the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU Library General Public License for more details.
 *
 *   You should have received a copy of the GNU Library General Public
 *   License along with this program; if not, write to the Free Software
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *----------------------------------------------------------------------
 */

package javazoom.jl.decoder;

/**
 * Implements decoding of MPEG Audio Layer I frames.
 */
class LayerIDecoder implements FrameDecoder {
	protected Bitstream stream;

	protected Header header;

	protected SynthesisFilter filter1, filter2;

	protected Obuffer buffer;

	protected int which_channels;

	protected int mode;

	protected int num_subbands;

	protected Subband[] subbands;

	protected Crc16 crc = null; // new Crc16[1] to enable CRC checking.

	public LayerIDecoder() {
		crc = new Crc16();
	}

	public void create(Bitstream stream0, Header header0,
			SynthesisFilter filtera, SynthesisFilter filterb, Obuffer buffer0,
			int which_ch0) {
		stream = stream0;
		header = header0;
		filter1 = filtera;
		filter2 = filterb;
		buffer = buffer0;
		which_channels = which_ch0;

	}

	public void decodeFrame() {

		num_subbands = header.number_of_subbands();
		subbands = new Subband[32];
		mode = header.mode();

		createSubbands();

		readAllocation();
		readScaleFactorSelection();

		if ((crc != null) || header.checksum_ok()) {
			readScaleFactors();

			readSampleData();
		}

	}

	protected void createSubbands() {
		int i;
		if (mode == Header.SINGLE_CHANNEL)
			for (i = 0; i < num_subbands; ++i)
				subbands[i] = new SubbandLayer1(i);
		else if (mode == Header.JOINT_STEREO) {
			for (i = 0; i < header.intensity_stereo_bound(); ++i)
				subbands[i] = new SubbandLayer1Stereo(i);
			for (; i < num_subbands; ++i)
				subbands[i] = new SubbandLayer1IntensityStereo(i);
		} else {
			for (i = 0; i < num_subbands; ++i)
				subbands[i] = new SubbandLayer1Stereo(i);
		}
	}

	protected void readAllocation() {
		// start to read audio data:
		for (int i = 0; i < num_subbands; ++i)
			subbands[i].read_allocation(stream, header, crc);

	}

	protected void readScaleFactorSelection() {
		// scale factor selection not present for layer I.
	}

	protected void readScaleFactors() {
		for (int i = 0; i < num_subbands; ++i)
			subbands[i].read_scalefactor(stream, header);
	}

	protected void readSampleData() {
		boolean read_ready = false;
		boolean write_ready = false;
		int mode = header.mode();
		int i;
		do {
			for (i = 0; i < num_subbands; ++i)
				read_ready = subbands[i].read_sampledata(stream);
			do {
				for (i = 0; i < num_subbands; ++i)
					write_ready = subbands[i].put_next_sample(which_channels,
							filter1, filter2);

				filter1.calculate_pcm_samples(buffer);
				if ((which_channels == OutputChannels.BOTH_CHANNELS)
						&& (mode != Header.SINGLE_CHANNEL))
					filter2.calculate_pcm_samples(buffer);
			} while (!write_ready);
		} while (!read_ready);

	}

	/**
	 * Abstract base class for subband classes of layer I and II
	 */
	static abstract class Subband {
		/*
		 * Changes from version 1.1 to 1.2: - array size increased by one,
		 * although a scalefactor with index 63 is illegal (to prevent
		 * segmentation faults)
		 */
		// Scalefactors for layer I and II, Annex 3-B.1 in ISO/IEC DIS 11172:
		public static final float scalefactors[] = { 2.00000000000000f,
				1.58740105196820f, 1.25992104989487f, 1.00000000000000f,
				0.79370052598410f, 0.62996052494744f, 0.50000000000000f,
				0.39685026299205f, 0.31498026247372f, 0.25000000000000f,
				0.19842513149602f, 0.15749013123686f, 0.12500000000000f,
				0.09921256574801f, 0.07874506561843f, 0.06250000000000f,
				0.04960628287401f, 0.03937253280921f, 0.03125000000000f,
				0.02480314143700f, 0.01968626640461f, 0.01562500000000f,
				0.01240157071850f, 0.00984313320230f, 0.00781250000000f,
				0.00620078535925f, 0.00492156660115f, 0.00390625000000f,
				0.00310039267963f, 0.00246078330058f, 0.00195312500000f,
				0.00155019633981f, 0.00123039165029f, 0.00097656250000f,
				0.00077509816991f, 0.00061519582514f, 0.00048828125000f,
				0.00038754908495f, 0.00030759791257f, 0.00024414062500f,
				0.00019377454248f, 0.00015379895629f, 0.00012207031250f,
				0.00009688727124f, 0.00007689947814f, 0.00006103515625f,
				0.00004844363562f, 0.00003844973907f, 0.00003051757813f,
				0.00002422181781f, 0.00001922486954f, 0.00001525878906f,
				0.00001211090890f, 0.00000961243477f, 0.00000762939453f,
				0.00000605545445f, 0.00000480621738f, 0.00000381469727f,
				0.00000302772723f, 0.00000240310869f, 0.00000190734863f,
				0.00000151386361f, 0.00000120155435f, 0.00000000000000f /*
																		 * illegal
																		 * scalefactor
																		 */
		};

		public abstract void read_allocation(Bitstream stream, Header header,
				Crc16 crc);

		public abstract void read_scalefactor(Bitstream stream, Header header);

		public abstract boolean read_sampledata(Bitstream stream);

		public abstract boolean put_next_sample(int channels,
				SynthesisFilter filter1, SynthesisFilter filter2);
	};

	/**
	 * Class for layer I subbands in single channel mode. Used for single
	 * channel mode and in derived class for intensity stereo mode
	 */
	static class SubbandLayer1 extends Subband {

		// Factors and offsets for sample requantization
		public static final float table_factor[] = { 0.0f,
				(1.0f / 2.0f) * (4.0f / 3.0f), (1.0f / 4.0f) * (8.0f / 7.0f),
				(1.0f / 8.0f) * (16.0f / 15.0f),
				(1.0f / 16.0f) * (32.0f / 31.0f),
				(1.0f / 32.0f) * (64.0f / 63.0f),
				(1.0f / 64.0f) * (128.0f / 127.0f),
				(1.0f / 128.0f) * (256.0f / 255.0f),
				(1.0f / 256.0f) * (512.0f / 511.0f),
				(1.0f / 512.0f) * (1024.0f / 1023.0f),
				(1.0f / 1024.0f) * (2048.0f / 2047.0f),
				(1.0f / 2048.0f) * (4096.0f / 4095.0f),
				(1.0f / 4096.0f) * (8192.0f / 8191.0f),
				(1.0f / 8192.0f) * (16384.0f / 16383.0f),
				(1.0f / 16384.0f) * (32768.0f / 32767.0f) };

		public static final float table_offset[] = { 0.0f,
				((1.0f / 2.0f) - 1.0f) * (4.0f / 3.0f),
				((1.0f / 4.0f) - 1.0f) * (8.0f / 7.0f),
				((1.0f / 8.0f) - 1.0f) * (16.0f / 15.0f),
				((1.0f / 16.0f) - 1.0f) * (32.0f / 31.0f),
				((1.0f / 32.0f) - 1.0f) * (64.0f / 63.0f),
				((1.0f / 64.0f) - 1.0f) * (128.0f / 127.0f),
				((1.0f / 128.0f) - 1.0f) * (256.0f / 255.0f),
				((1.0f / 256.0f) - 1.0f) * (512.0f / 511.0f),
				((1.0f / 512.0f) - 1.0f) * (1024.0f / 1023.0f),
				((1.0f / 1024.0f) - 1.0f) * (2048.0f / 2047.0f),
				((1.0f / 2048.0f) - 1.0f) * (4096.0f / 4095.0f),
				((1.0f / 4096.0f) - 1.0f) * (8192.0f / 8191.0f),
				((1.0f / 8192.0f) - 1.0f) * (16384.0f / 16383.0f),
				((1.0f / 16384.0f) - 1.0f) * (32768.0f / 32767.0f) };

		protected int subbandnumber;

		protected int samplenumber;

		protected int allocation;

		protected float scalefactor;

		protected int samplelength;

		protected float sample;

		protected float factor, offset;

		/**
		 * Construtor.
		 */
		public SubbandLayer1(int subbandnumber) {
			this.subbandnumber = subbandnumber;
			samplenumber = 0;
		}

		/**
		 * 
		 */
		public void read_allocation(Bitstream stream, Header header, Crc16 crc) {
			if ((allocation = stream.get_bits(4)) == 15)
				;
			// cerr << "WARNING: stream contains an illegal allocation!\n";
			// MPEG-stream is corrupted!
			if (crc != null)
				crc.add_bits(allocation, 4);
			if (allocation != 0) {
				samplelength = allocation + 1;
				factor = table_factor[allocation];
				offset = table_offset[allocation];
			}
		}

		/**
		 * 
		 */
		public void read_scalefactor(Bitstream stream, Header header) {
			if (allocation != 0)
				scalefactor = scalefactors[stream.get_bits(6)];
		}

		/**
		 * 
		 */
		public boolean read_sampledata(Bitstream stream) {
			if (allocation != 0) {
				sample = (float) (stream.get_bits(samplelength));
			}
			if (++samplenumber == 12) {
				samplenumber = 0;
				return true;
			}
			return false;
		}

		/**
		 * 
		 */
		public boolean put_next_sample(int channels, SynthesisFilter filter1,
				SynthesisFilter filter2) {
			if ((allocation != 0) && (channels != OutputChannels.RIGHT_CHANNEL)) {
				float scaled_sample = (sample * factor + offset) * scalefactor;
				filter1.input_sample(scaled_sample, subbandnumber);
			}
			return true;
		}
	};

	/**
	 * Class for layer I subbands in joint stereo mode.
	 */
	static class SubbandLayer1IntensityStereo extends SubbandLayer1 {
		protected float channel2_scalefactor;

		/**
		 * Constructor
		 */
		public SubbandLayer1IntensityStereo(int subbandnumber) {
			super(subbandnumber);
		}

		/**
		 * 
		 */
		public void read_allocation(Bitstream stream, Header header, Crc16 crc) {
			super.read_allocation(stream, header, crc);
		}

		/**
		 * 
		 */
		public void read_scalefactor(Bitstream stream, Header header) {
			if (allocation != 0) {
				scalefactor = scalefactors[stream.get_bits(6)];
				channel2_scalefactor = scalefactors[stream.get_bits(6)];
			}
		}

		/**
		 * 
		 */
		public boolean read_sampledata(Bitstream stream) {
			return super.read_sampledata(stream);
		}

		/**
		 * 
		 */
		public boolean put_next_sample(int channels, SynthesisFilter filter1,
				SynthesisFilter filter2) {
			if (allocation != 0) {
				sample = sample * factor + offset; // requantization
				if (channels == OutputChannels.BOTH_CHANNELS) {
					float sample1 = sample * scalefactor, sample2 = sample
							* channel2_scalefactor;
					filter1.input_sample(sample1, subbandnumber);
					filter2.input_sample(sample2, subbandnumber);
				} else if (channels == OutputChannels.LEFT_CHANNEL) {
					float sample1 = sample * scalefactor;
					filter1.input_sample(sample1, subbandnumber);
				} else {
					float sample2 = sample * channel2_scalefactor;
					filter1.input_sample(sample2, subbandnumber);
				}
			}
			return true;
		}
	};

	/**
	 * Class for layer I subbands in stereo mode.
	 */
	static class SubbandLayer1Stereo extends SubbandLayer1 {
		protected int channel2_allocation;

		protected float channel2_scalefactor;

		protected int channel2_samplelength;

		protected float channel2_sample;

		protected float channel2_factor, channel2_offset;

		/**
		 * Constructor
		 */
		public SubbandLayer1Stereo(int subbandnumber) {
			super(subbandnumber);
		}

		/**
		 * 
		 */
		public void read_allocation(Bitstream stream, Header header, Crc16 crc) {
			allocation = stream.get_bits(4);
			channel2_allocation = stream.get_bits(4);
			if (crc != null) {
				crc.add_bits(allocation, 4);
				crc.add_bits(channel2_allocation, 4);
			}
			if (allocation != 0) {
				samplelength = allocation + 1;
				factor = table_factor[allocation];
				offset = table_offset[allocation];
			}
			if (channel2_allocation != 0) {
				channel2_samplelength = channel2_allocation + 1;
				channel2_factor = table_factor[channel2_allocation];
				channel2_offset = table_offset[channel2_allocation];
			}
		}

		/**
		 * 
		 */
		public void read_scalefactor(Bitstream stream, Header header) {
			if (allocation != 0)
				scalefactor = scalefactors[stream.get_bits(6)];
			if (channel2_allocation != 0)
				channel2_scalefactor = scalefactors[stream.get_bits(6)];
		}

		/**
		 * 
		 */
		public boolean read_sampledata(Bitstream stream) {
			boolean returnvalue = super.read_sampledata(stream);
			if (channel2_allocation != 0) {
				channel2_sample = (float) (stream
						.get_bits(channel2_samplelength));
			}
			return (returnvalue);
		}

		/**
		 * 
		 */
		public boolean put_next_sample(int channels, SynthesisFilter filter1,
				SynthesisFilter filter2) {
			super.put_next_sample(channels, filter1, filter2);
			if ((channel2_allocation != 0)
					&& (channels != OutputChannels.LEFT_CHANNEL)) {
				float sample2 = (channel2_sample * channel2_factor + channel2_offset)
						* channel2_scalefactor;
				if (channels == OutputChannels.BOTH_CHANNELS)
					filter2.input_sample(sample2, subbandnumber);
				else
					filter1.input_sample(sample2, subbandnumber);
			}
			return true;
		}
	};

}