< prev index next >

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

Print this page

        

*** 20,29 **** --- 20,30 ---- * * 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. */ + package com.sun.media.sound; import java.io.IOException; import javax.sound.sampled.AudioInputStream;
*** 68,77 **** --- 69,79 ---- } catch (InterruptedException e) { //e.printStackTrace(); } } + @Override public void run() { byte[] buffer = SoftAudioPusher.this.buffer; AudioInputStream ais = SoftAudioPusher.this.ais; SourceDataLine sourceDataLine = SoftAudioPusher.this.sourceDataLine;
*** 85,92 **** } } catch (IOException e) { active = false; //e.printStackTrace(); } - } } --- 87,93 ----
< prev index next >