Skip to content

Pure Portable C# and Java implementations of the Opus audio codec

License

Notifications You must be signed in to change notification settings

jaredmdobson/concentus

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Concentus: Opus for Everyone - forked from the original https://github.com/lostromb/concentus

implementation("io.github.jaredmdobson:concentus:1.0.2")

This project is an effort to port the Opus reference library to work natively in other languages, and to gather together any such ports that may exist. With this code, developers should be left with no excuse to use an inferior codec, regardless of their language or runtime environment.

NuGet Package

Related OggOpus Library

Project Status

This repo contains completely functional Opus implementations in portable C# and Java. They are based on libopus master 1.1.2 configured with FIXED_POINT and with an extra switch to enable/disable the floating-point analysis functions. Both the encoder and decoder paths have been thoroughly tested to be bit-exact with their equivalent C functions in all common use cases. I have also included a port of the libspeexdsp resampler for general use.

Performance-wise, the current build runs about 40-50% as fast as its equivalent libopus build, mostly because of managed array overhead and the vector instructions not porting over. I do not believe performance will get much better than this without a complete rewrite; if you need blazing-fast performance then I encourage you to try the P/Opus or JNI library. The API surface is finalized and existing code should not change, but I may add helper classes in the future.

No other ports beyond C# / Java are planned at this time, but pull requests are welcome from any contributors.

Performance

For those interested in the expected real-world performance of the library, I ran some quick C# benchmarks on a Raspberry Pi 1 (700mhz ARM) at various modes:

0.82x realtime - 48Khz Voice, Stereo, 32Kbps (SILK), Compexity 0
0.98x realtime - 48Khz Music, Stereo, 128Kbps (CELT), Compexity 10
1.55x realtime - 16Khz Voice, Mono , 32Kbps (SILK), Compexity 0
1.70x realtime - 48Khz Music, Stereo, 96Kbps (CELT), Compexity 0
3.59x realtime - 16Khz Music, Mono , 96Kbps (CELT), Compexity 0

About

Pure Portable C# and Java implementations of the Opus audio codec

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 34.4%
  • C# 33.4%
  • Java 23.3%
  • Shell 4.7%
  • Makefile 2.4%
  • Assembly 0.6%
  • Other 1.2%