commit
885f8bb8c5
|
@ -199,4 +199,13 @@ public class Mp3InputStream extends InputStream implements AudioInputStream {
|
|||
|
||||
return skipped;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() throws IOException {
|
||||
try {
|
||||
bitstream.close();
|
||||
} catch (BitstreamException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -392,5 +392,16 @@ public class OpenALStreamPlayer {
|
|||
public void resuming() {
|
||||
lastUpdateTime = System.currentTimeMillis() - offsetTime;
|
||||
}
|
||||
|
||||
public void close() {
|
||||
if(audio != null){
|
||||
try {
|
||||
audio.close();
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -916,6 +916,9 @@ public class SoundStore {
|
|||
return;
|
||||
}
|
||||
|
||||
if(this.stream != null){
|
||||
this.stream.close();
|
||||
}
|
||||
currentMusic = sources.get(0);
|
||||
this.stream = stream;
|
||||
if (stream != null) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user