changeset in /hg/icedtea: Import new Gervill CVS.
Mark Wielaard
mark at klomp.org
Thu May 29 14:13:33 PDT 2008
changeset 4706d355d973 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=4706d355d973
description:
Import new Gervill CVS.
2008-05-04 Mark Wielaard <mark at klomp.org>
* overlays/openjdk/jdk/src/share/classes/com/sun/media/sound:
Import new Gervill CVS. See CHANGES.txt. Changed:
AudioFloatConverter.java, DLSSoundbank.java, SoftChannel.java,
WaveFloatFileReader.java. Added: AudioFloatFormatConverter.java,
WaveExtensibleFileReader.java, WaveFloatFileWriter.java. Deleted:
PATInstrument.java, PATSample.java, PATSoundbankReader.java.
diffstat:
12 files changed, 1426 insertions(+), 973 deletions(-)
ChangeLog | 9
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/AudioFloatConverter.java | 384 +++++++
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/AudioFloatFormatConverter.java | 523 +++++++++
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/CHANGES.txt | 19
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/DLSSoundbank.java | 20
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/PATInstrument.java | 536 ----------
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/PATSample.java | 113 --
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/PATSoundbankReader.java | 296 -----
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/SoftChannel.java | 21
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/WaveExtensibleFileReader.java | 331 ++++++
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/WaveFloatFileReader.java | 6
overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/WaveFloatFileWriter.java | 141 ++
diffs (truncated from 2610 to 500 lines):
diff -r a952ab0e58fb -r 4706d355d973 ChangeLog
--- a/ChangeLog Sun May 04 23:35:04 2008 +0200
+++ b/ChangeLog Mon May 05 00:31:45 2008 +0200
@@ -1,3 +1,12 @@ 2008-05-04 Mark Wielaard <mark at klomp.o
+2008-05-04 Mark Wielaard <mark at klomp.org>
+
+ * overlays/openjdk/jdk/src/share/classes/com/sun/media/sound:
+ Import new Gervill CVS. See CHANGES.txt. Changed:
+ AudioFloatConverter.java, DLSSoundbank.java, SoftChannel.java,
+ WaveFloatFileReader.java. Added: AudioFloatFormatConverter.java,
+ WaveExtensibleFileReader.java, WaveFloatFileWriter.java. Deleted:
+ PATInstrument.java, PATSample.java, PATSoundbankReader.java.
+
2008-05-04 Mark Wielaard <mark at klomp.org>
* Makefile.am (EXTRA_DIST): Add patches/icedtea-hat-spl-gpl.patch.
diff -r a952ab0e58fb -r 4706d355d973 overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/AudioFloatConverter.java
--- a/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/AudioFloatConverter.java Sun May 04 23:35:04 2008 +0200
+++ b/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/AudioFloatConverter.java Mon May 05 00:31:45 2008 +0200
@@ -27,13 +27,14 @@ package com.sun.media.sound;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
+import java.nio.DoubleBuffer;
import java.nio.FloatBuffer;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioFormat.Encoding;
/**
- * This class is used to convert between 8,16,24,32 bit signed/unsigned
+ * This class is used to convert between 8,16,24,32,32+ bit signed/unsigned
* big/litle endian fixed/floating point byte buffers and float buffers.
*
* @version %I%, %E%
@@ -43,6 +44,173 @@ public abstract class AudioFloatConverte
public abstract class AudioFloatConverter {
public static final Encoding PCM_FLOAT = new Encoding("PCM_FLOAT");
+
+ /***************************************************************************
+ *
+ * LSB Filter, used filter least significant byte in samples arrays.
+ *
+ * Is used filter out data in lsb byte
+ * when SampleSizeInBits is not dividable by 8.
+ *
+ **************************************************************************/
+
+ private static class AudioFloatLSBFilter extends AudioFloatConverter {
+
+ private AudioFloatConverter converter;
+ final private int offset;
+ final private int stepsize;
+ final private byte mask;
+ private byte[] mask_buffer;
+
+ public AudioFloatLSBFilter(AudioFloatConverter converter, AudioFormat format)
+ {
+ int bits = format.getSampleSizeInBits();
+ boolean bigEndian = format.isBigEndian();
+ this.converter = converter;
+ stepsize = (bits + 7) / 8;
+ offset = bigEndian?(stepsize - 1):0;
+ int lsb_bits = bits % 8;
+ if(lsb_bits == 0) mask = (byte)0x00;
+ else if(lsb_bits == 1) mask = (byte)0x80;
+ else if(lsb_bits == 2) mask = (byte)0xC0;
+ else if(lsb_bits == 3) mask = (byte)0xE0;
+ else if(lsb_bits == 4) mask = (byte)0xF0;
+ else if(lsb_bits == 5) mask = (byte)0xF8;
+ else if(lsb_bits == 6) mask = (byte)0xFC;
+ else if(lsb_bits == 7) mask = (byte)0xFE;
+ else mask = (byte)0xFF;
+ }
+
+ public byte[] toByteArray(float[] in_buff, int in_offset, int in_len, byte[] out_buff, int out_offset) {
+ byte[] ret = converter.toByteArray(in_buff, in_offset, in_len, out_buff, out_offset);
+
+ int out_offset_end = in_len*stepsize;
+ for (int i = out_offset+offset; i < out_offset_end; i+=stepsize) {
+ out_buff[i] = (byte)(out_buff[i] & mask);
+ }
+
+ return ret;
+ }
+
+ public float[] toFloatArray(byte[] in_buff, int in_offset, float[] out_buff, int out_offset, int out_len) {
+ if(mask_buffer == null || mask_buffer.length < in_buff.length)
+ mask_buffer = new byte[in_buff.length];
+ System.arraycopy(in_buff, 0, mask_buffer, 0, in_buff.length);
+ int in_offset_end = out_len*stepsize;
+ for (int i = in_offset+offset; i < in_offset_end; i+=stepsize) {
+ mask_buffer[i] = (byte)(mask_buffer[i] & mask);
+ }
+ float[] ret = converter.toFloatArray(mask_buffer, in_offset, out_buff, out_offset, out_len);
+ return ret;
+ }
+
+ }
+
+ /***************************************************************************
+ *
+ * 64 bit float, little/big-endian
+ *
+ **************************************************************************/
+
+ // PCM 64 bit float, little-endian
+ private static class AudioFloatConversion64L extends AudioFloatConverter {
+ ByteBuffer bytebuffer = null;
+
+ DoubleBuffer floatbuffer = null;
+ double[] double_buff = null;
+
+ public float[] toFloatArray(byte[] in_buff, int in_offset,
+ float[] out_buff, int out_offset, int out_len) {
+ int in_len = out_len * 8;
+ if (bytebuffer == null || bytebuffer.capacity() < in_len) {
+ bytebuffer = ByteBuffer.allocate(in_len).order(
+ ByteOrder.LITTLE_ENDIAN);
+ floatbuffer = bytebuffer.asDoubleBuffer();
+ }
+ bytebuffer.position(0);
+ floatbuffer.position(0);
+ bytebuffer.put(in_buff, in_offset, in_len);
+ if(double_buff == null || double_buff.length < out_len+out_offset)
+ double_buff = new double[out_len+out_offset];
+ floatbuffer.get(double_buff, out_offset, out_len);
+ int out_offset_end = out_offset + out_len;
+ for (int i = out_offset; i < out_offset_end; i++) {
+ out_buff[i] = (float)double_buff[i];
+ }
+ return out_buff;
+ }
+
+ public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
+ byte[] out_buff, int out_offset) {
+ int out_len = in_len * 8;
+ if (bytebuffer == null || bytebuffer.capacity() < out_len) {
+ bytebuffer = ByteBuffer.allocate(out_len).order(
+ ByteOrder.LITTLE_ENDIAN);
+ floatbuffer = bytebuffer.asDoubleBuffer();
+ }
+ floatbuffer.position(0);
+ bytebuffer.position(0);
+ if(double_buff == null || double_buff.length < in_offset+in_len)
+ double_buff = new double[in_offset+in_len];
+ int in_offset_end = in_offset+in_len;
+ for (int i = in_offset; i < in_offset_end; i++) {
+ double_buff[i] = in_buff[i];
+ }
+ floatbuffer.put(double_buff, in_offset, in_len);
+ bytebuffer.get(out_buff, out_offset, out_len);
+ return out_buff;
+ }
+ }
+
+ // PCM 64 bit float, big-endian
+ private static class AudioFloatConversion64B extends AudioFloatConverter {
+ ByteBuffer bytebuffer = null;
+
+ DoubleBuffer floatbuffer = null;
+ double[] double_buff = null;
+
+ public float[] toFloatArray(byte[] in_buff, int in_offset,
+ float[] out_buff, int out_offset, int out_len) {
+ int in_len = out_len * 8;
+ if (bytebuffer == null || bytebuffer.capacity() < in_len) {
+ bytebuffer = ByteBuffer.allocate(in_len).order(
+ ByteOrder.BIG_ENDIAN);
+ floatbuffer = bytebuffer.asDoubleBuffer();
+ }
+ bytebuffer.position(0);
+ floatbuffer.position(0);
+ bytebuffer.put(in_buff, in_offset, in_len);
+ if(double_buff == null || double_buff.length < out_len+out_offset)
+ double_buff = new double[out_len+out_offset];
+ floatbuffer.get(double_buff, out_offset, out_len);
+ int out_offset_end = out_offset + out_len;
+ for (int i = out_offset; i < out_offset_end; i++) {
+ out_buff[i] = (float)double_buff[i];
+ }
+ return out_buff;
+ }
+
+ public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
+ byte[] out_buff, int out_offset) {
+ int out_len = in_len * 8;
+ if (bytebuffer == null || bytebuffer.capacity() < out_len) {
+ bytebuffer = ByteBuffer.allocate(out_len).order(
+ ByteOrder.BIG_ENDIAN);
+ floatbuffer = bytebuffer.asDoubleBuffer();
+ }
+ floatbuffer.position(0);
+ bytebuffer.position(0);
+ if(double_buff == null || double_buff.length < in_offset+in_len)
+ double_buff = new double[in_offset+in_len];
+ int in_offset_end = in_offset+in_len;
+ for (int i = in_offset; i < in_offset_end; i++) {
+ double_buff[i] = in_buff[i];
+ }
+ floatbuffer.put(double_buff, in_offset, in_len);
+ bytebuffer.get(out_buff, out_offset, out_len);
+ return out_buff;
+ }
+ }
/***************************************************************************
*
@@ -549,14 +717,196 @@ public abstract class AudioFloatConverte
}
}
+ /***************************************************************************
+ *
+ * 32+ bit signed/unsigned, little/big-endian
+ *
+ **************************************************************************/
+
+ // PCM 32+ bit, signed, little-endian
+ private static class AudioFloatConversion32xSL extends AudioFloatConverter {
+
+ final int xbytes;
+
+ public AudioFloatConversion32xSL(int xbytes)
+ {
+ this.xbytes = xbytes;
+ }
+
+ public float[] toFloatArray(byte[] in_buff, int in_offset,
+ float[] out_buff, int out_offset, int out_len) {
+ int ix = in_offset;
+ int ox = out_offset;
+ for (int i = 0; i < out_len; i++) {
+ ix += xbytes;
+ int x = (in_buff[ix++] & 0xFF) | ((in_buff[ix++] & 0xFF) << 8)
+ | ((in_buff[ix++] & 0xFF) << 16)
+ | ((in_buff[ix++] & 0xFF) << 24);
+ out_buff[ox++] = x * (1.0f / 2147483647.0f);
+ }
+ return out_buff;
+ }
+
+ public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
+ byte[] out_buff, int out_offset) {
+ int ix = in_offset;
+ int ox = out_offset;
+ for (int i = 0; i < in_len; i++) {
+ int x = (int) (in_buff[ix++] * 2147483647.0);
+ for (int j = 0; j < xbytes; j++) {
+ out_buff[ox++] = 0;
+ }
+ out_buff[ox++] = (byte) x;
+ out_buff[ox++] = (byte) (x >>> 8);
+ out_buff[ox++] = (byte) (x >>> 16);
+ out_buff[ox++] = (byte) (x >>> 24);
+ }
+ return out_buff;
+ }
+ }
+
+ // PCM 32+ bit, signed, big-endian
+ private static class AudioFloatConversion32xSB extends AudioFloatConverter {
+
+ final int xbytes;
+
+ public AudioFloatConversion32xSB(int xbytes)
+ {
+ this.xbytes = xbytes;
+ }
+
+ public float[] toFloatArray(byte[] in_buff, int in_offset,
+ float[] out_buff, int out_offset, int out_len) {
+ int ix = in_offset;
+ int ox = out_offset;
+ for (int i = 0; i < out_len; i++) {
+ int x = ((in_buff[ix++] & 0xFF) << 24)
+ | ((in_buff[ix++] & 0xFF) << 16)
+ | ((in_buff[ix++] & 0xFF) << 8)
+ | (in_buff[ix++] & 0xFF);
+ ix += xbytes;
+ out_buff[ox++] = x * (1.0f / 2147483647.0f);
+ }
+ return out_buff;
+ }
+
+ public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
+ byte[] out_buff, int out_offset) {
+ int ix = in_offset;
+ int ox = out_offset;
+ for (int i = 0; i < in_len; i++) {
+ int x = (int) (in_buff[ix++] * 2147483647.0);
+ out_buff[ox++] = (byte) (x >>> 24);
+ out_buff[ox++] = (byte) (x >>> 16);
+ out_buff[ox++] = (byte) (x >>> 8);
+ out_buff[ox++] = (byte) x;
+ for (int j = 0; j < xbytes; j++) {
+ out_buff[ox++] = 0;
+ }
+ }
+ return out_buff;
+ }
+ }
+
+ // PCM 32+ bit, unsigned, little-endian
+ private static class AudioFloatConversion32xUL extends AudioFloatConverter {
+
+ final int xbytes;
+
+ public AudioFloatConversion32xUL(int xbytes)
+ {
+ this.xbytes = xbytes;
+ }
+
+ public float[] toFloatArray(byte[] in_buff, int in_offset,
+ float[] out_buff, int out_offset, int out_len) {
+ int ix = in_offset;
+ int ox = out_offset;
+ for (int i = 0; i < out_len; i++) {
+ ix += xbytes;
+ int x = (in_buff[ix++] & 0xFF) | ((in_buff[ix++] & 0xFF) << 8)
+ | ((in_buff[ix++] & 0xFF) << 16)
+ | ((in_buff[ix++] & 0xFF) << 24);
+ x -= 2147483647;
+ out_buff[ox++] = x * (1.0f / 2147483647.0f);
+ }
+ return out_buff;
+ }
+
+ public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
+ byte[] out_buff, int out_offset) {
+ int ix = in_offset;
+ int ox = out_offset;
+ for (int i = 0; i < in_len; i++) {
+ int x = (int) (in_buff[ix++] * 2147483647.0);
+ x += 2147483647;
+ for (int j = 0; j < xbytes; j++) {
+ out_buff[ox++] = 0;
+ }
+ out_buff[ox++] = (byte) x;
+ out_buff[ox++] = (byte) (x >>> 8);
+ out_buff[ox++] = (byte) (x >>> 16);
+ out_buff[ox++] = (byte) (x >>> 24);
+ }
+ return out_buff;
+ }
+ }
+
+ // PCM 32+ bit, unsigned, big-endian
+ private static class AudioFloatConversion32xUB extends AudioFloatConverter {
+
+ final int xbytes;
+
+ public AudioFloatConversion32xUB(int xbytes)
+ {
+ this.xbytes = xbytes;
+ }
+
+ public float[] toFloatArray(byte[] in_buff, int in_offset,
+ float[] out_buff, int out_offset, int out_len) {
+ int ix = in_offset;
+ int ox = out_offset;
+ for (int i = 0; i < out_len; i++) {
+ int x = ((in_buff[ix++] & 0xFF) << 24)
+ | ((in_buff[ix++] & 0xFF) << 16)
+ | ((in_buff[ix++] & 0xFF) << 8)
+ | (in_buff[ix++] & 0xFF);
+ ix += xbytes;
+ x -= 2147483647;
+ out_buff[ox++] = x * (1.0f / 2147483647.0f);
+ }
+ return out_buff;
+ }
+
+ public byte[] toByteArray(float[] in_buff, int in_offset, int in_len,
+ byte[] out_buff, int out_offset) {
+ int ix = in_offset;
+ int ox = out_offset;
+ for (int i = 0; i < in_len; i++) {
+ int x = (int) (in_buff[ix++] * 2147483647.0);
+ x += 2147483647;
+ out_buff[ox++] = (byte) (x >>> 24);
+ out_buff[ox++] = (byte) (x >>> 16);
+ out_buff[ox++] = (byte) (x >>> 8);
+ out_buff[ox++] = (byte) x;
+ for (int j = 0; j < xbytes; j++) {
+ out_buff[ox++] = 0;
+ }
+ }
+ return out_buff;
+ }
+ }
+
+
public static AudioFloatConverter getConverter(AudioFormat format) {
AudioFloatConverter conv = null;
- if (format.getFrameSize() != (format.getSampleSizeInBits() / 8)
+ if (format.getFrameSize() == 0) return null;
+ if (format.getFrameSize() != ((format.getSampleSizeInBits()+7) / 8)
* format.getChannels())
return null;
if (format.getEncoding().equals(Encoding.PCM_SIGNED)) {
if (format.isBigEndian()) {
- if (format.getSampleSizeInBits() == 8)
+ if (format.getSampleSizeInBits() <= 8)
conv = new AudioFloatConversion8S();
else if (format.getSampleSizeInBits() > 8
&& format.getSampleSizeInBits() <= 16)
@@ -567,8 +917,10 @@ public abstract class AudioFloatConverte
else if (format.getSampleSizeInBits() > 24
&& format.getSampleSizeInBits() <= 32)
conv = new AudioFloatConversion32SB();
+ else if (format.getSampleSizeInBits() > 32)
+ conv = new AudioFloatConversion32xSB(((format.getSampleSizeInBits()+7)/8)-4);
} else {
- if (format.getSampleSizeInBits() == 8)
+ if (format.getSampleSizeInBits() <= 8)
conv = new AudioFloatConversion8S();
else if (format.getSampleSizeInBits() > 8
& format.getSampleSizeInBits() <= 16)
@@ -579,10 +931,12 @@ public abstract class AudioFloatConverte
else if (format.getSampleSizeInBits() > 24
&& format.getSampleSizeInBits() <= 32)
conv = new AudioFloatConversion32SL();
+ else if (format.getSampleSizeInBits() > 32)
+ conv = new AudioFloatConversion32xSL(((format.getSampleSizeInBits()+7)/8)-4);
}
} else if (format.getEncoding().equals(Encoding.PCM_UNSIGNED)) {
if (format.isBigEndian()) {
- if (format.getSampleSizeInBits() == 8)
+ if (format.getSampleSizeInBits() <= 8)
conv = new AudioFloatConversion8U();
else if (format.getSampleSizeInBits() > 8
&& format.getSampleSizeInBits() <= 16)
@@ -593,8 +947,10 @@ public abstract class AudioFloatConverte
else if (format.getSampleSizeInBits() > 24
&& format.getSampleSizeInBits() <= 32)
conv = new AudioFloatConversion32UB();
+ else if (format.getSampleSizeInBits() > 32)
+ conv = new AudioFloatConversion32xUB(((format.getSampleSizeInBits()+7)/8)-4);
} else {
- if (format.getSampleSizeInBits() == 8)
+ if (format.getSampleSizeInBits() <= 8)
conv = new AudioFloatConversion8U();
else if (format.getSampleSizeInBits() > 8
&& format.getSampleSizeInBits() <= 16)
@@ -605,6 +961,8 @@ public abstract class AudioFloatConverte
else if (format.getSampleSizeInBits() > 24
&& format.getSampleSizeInBits() <= 32)
conv = new AudioFloatConversion32UL();
+ else if (format.getSampleSizeInBits() > 32)
+ conv = new AudioFloatConversion32xUL(((format.getSampleSizeInBits()+7)/8)-4);
}
} else if (format.getEncoding().equals(PCM_FLOAT)) {
if (format.getSampleSizeInBits() == 32) {
@@ -613,6 +971,20 @@ public abstract class AudioFloatConverte
else
conv = new AudioFloatConversion32L();
}
+ else
+ if (format.getSampleSizeInBits() == 64) {
+ if (format.isBigEndian())
+ conv = new AudioFloatConversion64B();
+ else
+ conv = new AudioFloatConversion64L();
+ }
+
+ }
+
+ if ((format.getEncoding().equals(Encoding.PCM_SIGNED) ||
+ format.getEncoding().equals(Encoding.PCM_UNSIGNED))
+ && (format.getSampleSizeInBits() % 8 != 0)) {
+ conv = new AudioFloatLSBFilter(conv, format);
}
if (conv != null)
diff -r a952ab0e58fb -r 4706d355d973 overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/AudioFloatFormatConverter.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/AudioFloatFormatConverter.java Mon May 05 00:31:45 2008 +0200
@@ -0,0 +1,523 @@
+/*
+ * Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation. Sun designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Sun in the LICENSE file that accompanied this code.
+ *
+ * This code 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 General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
More information about the distro-pkg-dev
mailing list