< prev index next >

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

Print this page

        

*** 22,33 **** * or visit www.oracle.com if you need additional information or have any * questions. */ package com.sun.media.sound; - import sun.misc.ManagedLocalsThread; - import javax.sound.sampled.AudioFormat; import javax.sound.sampled.AudioInputStream; import java.io.EOFException; import java.io.IOException; import java.io.InputStream; --- 22,31 ----
*** 214,224 **** next += nanos; } } }; ! thread = new ManagedLocalsThread(runnable); thread.setDaemon(true); thread.setPriority(Thread.MAX_PRIORITY); thread.start(); } --- 212,222 ---- next += nanos; } } }; ! thread = new Thread(null, runnable, "JitterCorrector", 0, false); thread.setDaemon(true); thread.setPriority(Thread.MAX_PRIORITY); thread.start(); }
< prev index next >