initial commit

This commit is contained in:
2013-03-22 19:19:12 +01:00
commit 817fcc796d
44 changed files with 1931 additions and 0 deletions

13
src/sound/Format.java Normal file
View File

@@ -0,0 +1,13 @@
package sound;
import javax.sound.sampled.AudioFormat;
public interface Format extends Cloneable {
public interface Standard extends Format {
public AudioFormat getAudioFormat();
}
public interface Mp3 extends Format {
public int getRate();
}
}