summaryrefslogtreecommitdiff
path: root/lib/libsamplerate/libsamplerate-0.2.2/README.md
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2023-08-04 20:07:44 +1000
committerjacqueline <me@jacqueline.id.au>2023-08-04 20:07:44 +1000
commit60f767713227b5405b855e6e6e2a0475ecd96bcc (patch)
treefe55b7048e9e7f1f587f465a1845aef9d3b7b731 /lib/libsamplerate/libsamplerate-0.2.2/README.md
parent3b240d1cd5c52caf189ca036a1a841f7e6d84ccd (diff)
downloadtangara-fw-60f767713227b5405b855e6e6e2a0475ecd96bcc.tar.gz
Do our own resampling
Diffstat (limited to 'lib/libsamplerate/libsamplerate-0.2.2/README.md')
-rwxr-xr-xlib/libsamplerate/libsamplerate-0.2.2/README.md62
1 files changed, 0 insertions, 62 deletions
diff --git a/lib/libsamplerate/libsamplerate-0.2.2/README.md b/lib/libsamplerate/libsamplerate-0.2.2/README.md
deleted file mode 100755
index 502899de..00000000
--- a/lib/libsamplerate/libsamplerate-0.2.2/README.md
+++ /dev/null
@@ -1,62 +0,0 @@
-![Logo](docs/SRC.png)
-
-This is libsamplerate, `0.2.2`.
-
-libsamplerate (also known as Secret Rabbit Code) is a library for performing sample rate conversion of audio data.
-
-* The [`src/`](https://github.com/libsndfile/libsamplerate/tree/master/src) directory contains the source code for library itself.
-* The [`docs/`](https://github.com/libsndfile/libsamplerate/tree/master/docs) directory contains the libsamplerate documentation.
-* The [`examples/`](https://github.com/libsndfile/libsamplerate/tree/master/examples) directory contains examples of how to write code using libsamplerate.
-* The [`tests/`](https://github.com/libsndfile/libsamplerate/tree/master/tests) directory contains programs which link against libsamplerate and test its functionality.
-* The [`Win32/`](https://github.com/libsndfile/libsamplerate/tree/master/Win32) directory contains files to allow libsamplerate to compile under Win32 with the Microsoft Visual C++ compiler.
-
-Additional references:
-
-* [Official website](http://libsndfile.github.io/libsamplerate//)
-* [GitHub](https://github.com/libsndfile/libsamplerate)
-
----
-
-## Build Status
-
-| Branch | Status |
-|----------------|-------------------------------------------------------------------------------------------------------------------|
-| `master` | ![Build](https://github.com/libsndfile/libsamplerate/workflows/Build/badge.svg) |
-
-Branches [actively built](https://github.com/libsndfile/libsamplerate/actions) by GitHub Actions.
-
----
-
-## Win32
-
-There are detailed instructions for building libsamplerate on Win32 in the file [`docs/win32.md`](https://github.com/libsndfile/libsamplerate/tree/master/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:
-```bash
-./configure
-make
-make install
-```
-
-## CMake
-
-There is a new [CMake](https://cmake.org/download/)-based build system available:
-```bash
-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](mailto:erikd@mega-nerd.com).