for (int i = 0; i < 256; ++i)
{
byte[] inputBufferData = new byte[] {(byte) i, 0, 2};
byte[] targetOutputBufferData = new byte[] {(byte) i, (byte) i, 0, 0, 2, 2};
test( new AudioFormat(AudioFormat.LINEAR, 4000.0, 8, 1, -1, AudioFormat.SIGNED, 8, 4000.0, Format.byteArray),
new AudioFormat(AudioFormat.LINEAR, 8000.0, 8, 1, -1, AudioFormat.SIGNED, 8, 8000.0, Format.byteArray),
inputBufferData,
targetOutputBufferData
);
}
}