duckstation/dep/libsamplerate
Connor McLaughlin 5da9edceb9 Build: Unify MSBuild options in props files 2021-07-10 21:45:10 +10:00
..
cmake dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
include dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
msvc dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
src dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
AUTHORS dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
CMakeLists.txt dep/libsamplerate: Sync minimum cmake version with main 2021-06-04 13:14:30 +10:00
COPYING dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
NEWS dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
README.md dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
config.h.cmake dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
libsamplerate.spec.in dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
libsamplerate.vcxproj Build: Unify MSBuild options in props files 2021-07-10 21:45:10 +10:00
libsamplerate.vcxproj.filters dep: Add libsamplerate 2021-01-11 01:14:32 +10:00
samplerate.pc.in dep: Add libsamplerate 2021-01-11 01:14:32 +10:00

README.md

Logo

This is libsamplerate, 0.1.9.

libsamplerate (also known as Secret Rabbit Code) is a library for performing sample rate conversion of audio data.

  • The src/ directory contains the source code for library itself.
  • The docs/ directory contains the libsamplerate documentation.
  • The examples/ directory contains examples of how to write code using libsamplerate.
  • The tests/ directory contains programs which link against libsamplerate and test its functionality.
  • The Win32/ directory contains files and documentation to allow libsamplerate to compile under Win32 with the Microsoft Visual C++ compiler.

Additional references:


Build Status

Branch Status
master Build

Branches actively built by GitHub Actions.


Win32

There are detailed instructions for building libsamplerate on Win32 in the file docs/win32.md.

macOS

Building on macOS should be the same as building it on any other Unix platform.

Other Platforms

To compile libsamplerate on platforms which have a Bourne compatible shell, an ANSI C compiler and a make utility should require no more that the following three commands:

./configure
make
make install

CMake

There is a new CMake-based build system available:

mkdir build
cd build
cmake ..
make
  • Use cmake -DCMAKE_BUILD_TYPE=Release .. to make a release build.
  • Use cmake -DBUILD_SHARED_LIBS=ON .. to build a shared library.

Contacts

libsamplerate was written by Erik de Castro Lopo.