src/java.desktop/share/classes/com/sun/media/sound/JavaSoundAudioClip.java

Print this page

        

*** 86,98 **** * $$jb: 11.07.99: the engine has a limit of 1M * samples to play as a Clip, so compare this number * with the number of samples in the stream. * */ ! private final static long CLIP_THRESHOLD = 1048576; //private final static long CLIP_THRESHOLD = 1; ! private final static int STREAM_BUFFER_SIZE = 1024; public JavaSoundAudioClip(InputStream in) throws IOException { if (DEBUG || Printer.debug)Printer.debug("JavaSoundAudioClip.<init>"); BufferedInputStream bis = new BufferedInputStream(in, STREAM_BUFFER_SIZE); --- 86,98 ---- * $$jb: 11.07.99: the engine has a limit of 1M * samples to play as a Clip, so compare this number * with the number of samples in the stream. * */ ! private static final long CLIP_THRESHOLD = 1048576; //private final static long CLIP_THRESHOLD = 1; ! private static final int STREAM_BUFFER_SIZE = 1024; public JavaSoundAudioClip(InputStream in) throws IOException { if (DEBUG || Printer.debug)Printer.debug("JavaSoundAudioClip.<init>"); BufferedInputStream bis = new BufferedInputStream(in, STREAM_BUFFER_SIZE);