updated libgdx

This commit is contained in:
2018-06-15 01:45:10 -05:00
parent 0f296bfe1c
commit 92ff8871a9
13 changed files with 115 additions and 94 deletions

View File

@@ -4,21 +4,17 @@ import java.io.File;
public class MP3PCMProcessor implements PCMProcessor {
private int channels;
private int sampleRate;
private byte[] buffer;
private volatile float volume, pan;
private boolean initiated;
public MP3PCMProcessor(File musicFile, int windowSize) {
}
@Override
public void dispose() {
// TODO Auto-generated method stub
}
@Override
public void initiate() {
// TODO Auto-generated method stub
}
@Override
@@ -63,4 +59,10 @@ public class MP3PCMProcessor implements PCMProcessor {
return 0;
}
@Override
public void dispose() {
// TODO Auto-generated method stub
}
}

View File

@@ -15,7 +15,7 @@ public class WAVPCMProcessor implements PCMProcessor {
private File file;
private AudioInputStream audioInputStream;
private volatile float volume, pan;
private volatile boolean initiated;
private boolean initiated;
public WAVPCMProcessor(File musicFile, int windowSize) throws IOException, UnsupportedAudioFileException {
this.file = musicFile;