updated libgdx
This commit is contained in:
@@ -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
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user