public final class com.sun.media.sound.SoftAudioPusher implements java.lang.Runnable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.sun.media.sound.SoftAudioPusher
  super_class: java.lang.Object
{
  private volatile boolean active;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private javax.sound.sampled.SourceDataLine sourceDataLine;
    descriptor: Ljavax/sound/sampled/SourceDataLine;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Thread audiothread;
    descriptor: Ljava/lang/Thread;
    flags: (0x0002) ACC_PRIVATE

  private final javax.sound.sampled.AudioInputStream ais;
    descriptor: Ljavax/sound/sampled/AudioInputStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final byte[] buffer;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(javax.sound.sampled.SourceDataLine, javax.sound.sampled.AudioInputStream, int);
    descriptor: (Ljavax/sound/sampled/SourceDataLine;Ljavax/sound/sampled/AudioInputStream;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.sun.media.sound.SoftAudioPusher this
        start local 1 // javax.sound.sampled.SourceDataLine sourceDataLine
        start local 2 // javax.sound.sampled.AudioInputStream ais
        start local 3 // int workbuffersizer
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            iconst_0
            putfield com.sun.media.sound.SoftAudioPusher.active:Z
         2: .line 41
            aload 0 /* this */
            aconst_null
            putfield com.sun.media.sound.SoftAudioPusher.sourceDataLine:Ljavax/sound/sampled/SourceDataLine;
         3: .line 48
            aload 0 /* this */
            aload 2 /* ais */
            putfield com.sun.media.sound.SoftAudioPusher.ais:Ljavax/sound/sampled/AudioInputStream;
         4: .line 49
            aload 0 /* this */
            iload 3 /* workbuffersizer */
            newarray 8
            putfield com.sun.media.sound.SoftAudioPusher.buffer:[B
         5: .line 50
            aload 0 /* this */
            aload 1 /* sourceDataLine */
            putfield com.sun.media.sound.SoftAudioPusher.sourceDataLine:Ljavax/sound/sampled/SourceDataLine;
         6: .line 51
            return
        end local 3 // int workbuffersizer
        end local 2 // javax.sound.sampled.AudioInputStream ais
        end local 1 // javax.sound.sampled.SourceDataLine sourceDataLine
        end local 0 // com.sun.media.sound.SoftAudioPusher this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Lcom/sun/media/sound/SoftAudioPusher;
            0    7     1   sourceDataLine  Ljavax/sound/sampled/SourceDataLine;
            0    7     2              ais  Ljavax/sound/sampled/AudioInputStream;
            0    7     3  workbuffersizer  I
    MethodParameters:
                 Name  Flags
      sourceDataLine   
      ais              
      workbuffersizer  

  public synchronized void start();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=9, locals=1, args_size=1
        start local 0 // com.sun.media.sound.SoftAudioPusher this
         0: .line 54
            aload 0 /* this */
            getfield com.sun.media.sound.SoftAudioPusher.active:Z
            ifeq 2
         1: .line 55
            return
         2: .line 56
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.sun.media.sound.SoftAudioPusher.active:Z
         3: .line 57
            aload 0 /* this */
            new java.lang.Thread
            dup
            aconst_null
            aload 0 /* this */
            ldc "AudioPusher"
            lconst_0
            iconst_0
            invokespecial java.lang.Thread.<init>:(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;Ljava/lang/String;JZ)V
            putfield com.sun.media.sound.SoftAudioPusher.audiothread:Ljava/lang/Thread;
         4: .line 58
            aload 0 /* this */
            getfield com.sun.media.sound.SoftAudioPusher.audiothread:Ljava/lang/Thread;
            iconst_1
            invokevirtual java.lang.Thread.setDaemon:(Z)V
         5: .line 59
            aload 0 /* this */
            getfield com.sun.media.sound.SoftAudioPusher.audiothread:Ljava/lang/Thread;
            bipush 10
            invokevirtual java.lang.Thread.setPriority:(I)V
         6: .line 60
            aload 0 /* this */
            getfield com.sun.media.sound.SoftAudioPusher.audiothread:Ljava/lang/Thread;
            invokevirtual java.lang.Thread.start:()V
         7: .line 61
            return
        end local 0 // com.sun.media.sound.SoftAudioPusher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/sun/media/sound/SoftAudioPusher;

  public synchronized void stop();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.media.sound.SoftAudioPusher this
         0: .line 64
            aload 0 /* this */
            getfield com.sun.media.sound.SoftAudioPusher.active:Z
            ifne 2
         1: .line 65
            return
         2: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.sun.media.sound.SoftAudioPusher.active:Z
         3: .line 68
            aload 0 /* this */
            getfield com.sun.media.sound.SoftAudioPusher.audiothread:Ljava/lang/Thread;
            invokevirtual java.lang.Thread.join:()V
         4: .line 69
            goto 6
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
         5: pop
         6: .line 72
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.media.sound.SoftAudioPusher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/media/sound/SoftAudioPusher;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.InterruptedException

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // com.sun.media.sound.SoftAudioPusher this
         0: .line 76
            aload 0 /* this */
            getfield com.sun.media.sound.SoftAudioPusher.buffer:[B
            astore 1 /* buffer */
        start local 1 // byte[] buffer
         1: .line 77
            aload 0 /* this */
            getfield com.sun.media.sound.SoftAudioPusher.ais:Ljavax/sound/sampled/AudioInputStream;
            astore 2 /* ais */
        start local 2 // javax.sound.sampled.AudioInputStream ais
         2: .line 78
            aload 0 /* this */
            getfield com.sun.media.sound.SoftAudioPusher.sourceDataLine:Ljavax/sound/sampled/SourceDataLine;
            astore 3 /* sourceDataLine */
        start local 3 // javax.sound.sampled.SourceDataLine sourceDataLine
         3: .line 81
            goto 7
         4: .line 83
      StackMap locals: byte[] javax.sound.sampled.AudioInputStream javax.sound.sampled.SourceDataLine
      StackMap stack:
            aload 2 /* ais */
            aload 1 /* buffer */
            invokevirtual javax.sound.sampled.AudioInputStream.read:([B)I
            istore 4 /* count */
        start local 4 // int count
         5: .line 84
            iload 4 /* count */
            ifge 6
            goto 11
         6: .line 86
      StackMap locals: int
      StackMap stack:
            aload 3 /* sourceDataLine */
            aload 1 /* buffer */
            iconst_0
            iload 4 /* count */
            invokeinterface javax.sound.sampled.SourceDataLine.write:([BII)I
            pop
        end local 4 // int count
         7: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.sound.SoftAudioPusher.active:Z
            ifne 4
         8: .line 88
            goto 11
      StackMap locals:
      StackMap stack: java.io.IOException
         9: pop
        10: .line 89
            aload 0 /* this */
            iconst_0
            putfield com.sun.media.sound.SoftAudioPusher.active:Z
        11: .line 92
      StackMap locals:
      StackMap stack:
            return
        end local 3 // javax.sound.sampled.SourceDataLine sourceDataLine
        end local 2 // javax.sound.sampled.AudioInputStream ais
        end local 1 // byte[] buffer
        end local 0 // com.sun.media.sound.SoftAudioPusher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   12     0            this  Lcom/sun/media/sound/SoftAudioPusher;
            1   12     1          buffer  [B
            2   12     2             ais  Ljavax/sound/sampled/AudioInputStream;
            3   12     3  sourceDataLine  Ljavax/sound/sampled/SourceDataLine;
            5    7     4           count  I
      Exception table:
        from    to  target  type
           3     8       9  Class java.io.IOException
}
SourceFile: "SoftAudioPusher.java"