Skip to content

Commit

Permalink
update settings
Browse files Browse the repository at this point in the history
  • Loading branch information
umjammer committed Nov 30, 2024
1 parent 18bbffa commit d294b2b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ A. yes you can, follow those steps
* ~~`tritonus:tritonus-remaining:org.tritonus.sampled.file.WaveAudioFileReader`~~
* use service provider for mfi, smaf sequencer
* service loader instead of vavi.properties
* [RTTTL (Ringing Tones text transfer language)](https://web.archive.org/web/20070704033948/http://www.convertyourtone.com/rtttl.html)
* https://github.com/SatyrDiamond/adpcm

---
<sub>images by <a href="https://www.silhouette-illust.com/illust/49312">melody</a>, <a href="https://www.silhouette-illust.com/illust/257">cellphone</a></sub>
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ TODO
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.12.1</version>
<configuration>
<release>17</release>
</configuration>
Expand All @@ -160,9 +160,11 @@ TODO
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.5</version>
<configuration>
<argLine>
--add-opens=java.base/java.io=ALL-UNNAMED
--add-opens=java.base/sun.nio.ch=ALL-UNNAMED
-Djava.util.logging.config.file=${project.build.testOutputDirectory}/logging.properties
-Dvavi.test.dev.null=@{dev.null}
-Dvavi.test.volume=@{vavi.test.volume}
Expand Down Expand Up @@ -191,7 +193,7 @@ TODO
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.2</version>
<version>5.10.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -202,7 +204,7 @@ TODO
<dependency>
<groupId>com.github.umjammer</groupId> <!-- vavi / com.github.umjammer -->
<artifactId>vavi-commons</artifactId>
<version>1.1.13</version>
<version>1.1.14</version>
</dependency>
<dependency>
<groupId>com.github.umjammer</groupId>
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/vavi/sound/adpcm/ccitt/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Provides CCITT recommendation audio compression related classes.
* encoder.exe is little endian
* it's necessary to provide '16Bit Signed' value when `PCM_SIGNED`


* G.711 ... VoIP

## TODO

* 3, 5bit
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/vavi/sound/adpcm/vox/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Provides VOX ADPCM codec related classes.

# Status
## Status

completed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ vavi.sound.sampled.adpcm.oki.OkiFormatConversionProvider
vavi.sound.sampled.adpcm.rohm.RohmFormatConversionProvider
vavi.sound.sampled.adpcm.vox.VoxFormatConversionProvider
vavi.sound.sampled.adpcm.yamaha.YamahaFormatConversionProvider
#vavi.sound.pcm.resampling.ssrc.SSRCSampleRateConversionProvider

0 comments on commit d294b2b

Please sign in to comment.