This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package as.adamsmith.etherealdialpad.dsp; | |
| import android.media.AudioFormat; | |
| import android.media.AudioManager; | |
| import android.media.AudioTrack; | |
| public class Dac extends UGen { | |
| private final float[] localBuffer; | |
| private boolean isClean; |