Skip to content

Commit

Permalink
Merge pull request #3 from umjammer/1.9.8
Browse files Browse the repository at this point in the history
1.9.8
  • Loading branch information
umjammer authored Nov 13, 2020
2 parents 61c5740 + d98a5ee commit 8fc7241
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

<groupId>net.javazoom</groupId>
<artifactId>mp3spi</artifactId>
<version>1.9.7</version>
<version>1.9.8</version>

<properties>
<tritonus.groupId>com.github.umjammer.tritonus</tritonus.groupId>
<tritonus.version>0.3.8</tritonus.version>
<tritonus.groupId>org.tritonus</tritonus.groupId>
<tritonus.version>0.3.9</tritonus.version>
</properties>

<build>
Expand Down Expand Up @@ -36,6 +36,14 @@
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>bintray-umjammer-maven</id>
<name>bintray</name>
<url>https://dl.bintray.com/umjammer/maven</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/javazoom/spi/mpeg/sampled/file/SkipTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void testSkipUrl() throws Exception {
false);
out.info("Target Format : " + decodedFormat.toString());
din = AudioSystem.getAudioInputStream(decodedFormat, in);
long toSkip = in.available() * 19 / 20;
long toSkip = in.available() * 19L / 20;
long skipped = skip(din, toSkip);
out.info("Skip : " + skipped + "/" + toSkip + " (Total=" + in.available() + ")");
out.info("Start playing");
Expand Down

0 comments on commit 8fc7241

Please sign in to comment.