{
{
byte[] inputBufferData = new byte[] {2, 4, 6, 8};
byte[] targetOutputBufferData = new byte[] {2, 2, 4, 4, 6, 6, 8, 8};
test( new AudioFormat(AudioFormat.LINEAR, 4000.0, 8, 1, -1, AudioFormat.SIGNED, 8, 4000.0, Format.byteArray),
new AudioFormat(AudioFormat.LINEAR, 4000.0, 8, 2, -1, AudioFormat.SIGNED, 16, 4000.0, Format.byteArray),
inputBufferData,
targetOutputBufferData
);
}
}