--- old/test/javax/sound/sampled/FileWriter/AlawEncoderSync.java 2015-09-14 15:32:06.000000000 +0300 +++ /dev/null 2015-09-14 15:32:06.000000000 +0300 @@ -1,137 +0,0 @@ -/* - * Copyright (c) 2010, 2013, Oracle and/or its affiliates. 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. - * - * 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. - * - * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA - * or visit www.oracle.com if you need additional information or have any - * questions. - */ - -/** - * @test - * @bug 6938426 - * @bug 7058852 - * @summary Tests that Alaw encoder works properly in multithreaded environment - * @author Alex Menkov - */ - -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.InputStream; -import java.util.Arrays; -import javax.sound.sampled.AudioFormat; -import javax.sound.sampled.AudioInputStream; -import javax.sound.sampled.AudioSystem; - -public class AlawEncoderSync { - - static final int THREAD_COUNT = 20; - - static final AudioFormat pcmFormat = new AudioFormat(8000f, 16, 2, true, false); - static final int STREAM_LENGTH = 10; // in seconds - static byte[] pcmBuffer; - static final AudioFormat alawFormat - = new AudioFormat(AudioFormat.Encoding.ALAW, 8000f, 8, 2, 2, 8000f, false); - - static final ConversionThread[] threads = new ConversionThread[THREAD_COUNT]; - - public static void main(String[] args) { - preparePCMBuffer(); - log("pcmStream size: " + pcmBuffer.length); - - for (int i=0; i 0) { - throw new RuntimeException("test FAILED"); - } - log("test PASSED."); - } - - - static void preparePCMBuffer() { - pcmBuffer = new byte[STREAM_LENGTH * (int)pcmFormat.getSampleRate() - * (pcmFormat.getSampleSizeInBits() / 8) * pcmFormat.getChannels()]; - for (int i=0; i 0) { + throw new RuntimeException("test FAILED"); + } + log("test PASSED."); + } + + + static void preparePCMBuffer() { + pcmBuffer = new byte[STREAM_LENGTH * (int)pcmFormat.getSampleRate() + * (pcmFormat.getSampleSizeInBits() / 8) * pcmFormat.getChannels()]; + for (int i=0; i