Menu

Tree [945b59] master 0.1.3 /
 History

HTTPS access


File Date Author Commit
 cmake 2018-02-23 Rob Sykes Rob Sykes [b246ad] fix incorrect include-dir variable names
 examples 2018-02-23 Rob Sykes Rob Sykes [ac53e0] minor clean-ups
 lsr-tests 2016-05-23 Rob Sykes Rob Sykes [52888c] reorg/SIMD
 msvc 2016-06-05 Rob Sykes Rob Sykes [5fa7ee] clean-up; set version as 0.1.3b1
 src 2018-02-24 Rob Sykes Rob Sykes [945b59] update NEWS, versions
 tests 2016-08-29 Rob Sykes Rob Sykes [9f816d] minor fixes
 .gitignore 2016-05-23 Rob Sykes Rob Sykes [384936] fix prev.
 AUTHORS 2012-12-03 Rob Sykes Rob Sykes [e36d0f] Initial commit
 CMakeLists.txt 2018-02-24 Rob Sykes Rob Sykes [945b59] update NEWS, versions
 COPYING.LGPL 2012-12-03 Rob Sykes Rob Sykes [e36d0f] Initial commit
 INSTALL 2016-05-29 Rob Sykes Rob Sykes [e47d65] clean-up
 LICENCE 2018-02-23 Rob Sykes Rob Sykes [ac53e0] minor clean-ups
 NEWS 2018-02-24 Rob Sykes Rob Sykes [945b59] update NEWS, versions
 README 2018-02-23 Rob Sykes Rob Sykes [ac53e0] minor clean-ups
 TODO 2016-06-05 Rob Sykes Rob Sykes [5fa7ee] clean-up; set version as 0.1.3b1
 deinstall.cmake.in 2013-01-13 Rob Sykes Rob Sykes [21874b] need to quote command on ms-win
 dist 2018-02-23 Rob Sykes Rob Sykes [ac53e0] minor clean-ups
 go 2016-05-29 Rob Sykes Rob Sykes [e47d65] clean-up
 go.bat 2016-06-05 Rob Sykes Rob Sykes [5fa7ee] clean-up; set version as 0.1.3b1
 inst-check 2013-01-18 Rob Sykes Rob Sykes [81110c] document inst-check
 inst-check-soxr 2015-08-26 Rob Sykes Rob Sykes [393b1b] white-space
 inst-check-soxr-lsr 2013-01-09 Rob Sykes Rob Sykes [319293] add installation check scripts
 multi-arch 2016-06-05 Rob Sykes Rob Sykes [5fa7ee] clean-up; set version as 0.1.3b1
 soxr-config.h.in 2016-06-05 Rob Sykes Rob Sykes [5fa7ee] clean-up; set version as 0.1.3b1

Read Me

SoX Resampler Library       Copyright (c) 2007-18 robs@users.sourceforge.net

The SoX Resampler library `libsoxr' performs one-dimensional sample-rate
conversion -- it may be used, for example, to resample PCM-encoded audio.
For higher-dimensional resampling, such as for visual-image processing, you
should look elsewhere.

It aims to give fast¹ and very high quality² results for any constant
(rational or irrational) resampling ratio.  Phase-response, preserved
bandwidth, aliasing, and rejection level parameters are all configurable;
alternatively, simple `preset' configurations may be selected.  A
variable-rate resampling mode of operation is also included.

The resampler is currently available either as part of `libsox' (the audio
file-format and effect library), or stand-alone as `libsoxr' (this package).
The interfaces to libsox and libsoxr are slightly different, with that of
libsoxr designed specifically for resampling.  An application requiring
support for other effects, or for reading-from or writing-to audio files or
devices, should use libsox (or other libraries such as libsndfile or
libavformat).

Libsoxr provides a simple API that allows interfacing using the most
commonly-used sample formats and buffering schemes: sample-formats may be
either floating-point or integer, and multiple channels either interleaved
or split in separate buffers.  The API is documented in the header file
`soxr.h', together with sample code found in the 'examples' directory.

For compatibility with the popular `libsamplerate' library, the header file
`soxr-lsr.h' is provided and may be used as an alternative API.³  Note
however, that libsoxr does not provide a full emulation of libsamplerate
and that using this approach, only a sub-set of libsoxr's features are
available.

The design was inspired by Laurent De Soras' paper `The Quest For The
Perfect Resampler', http://ldesoras.free.fr/doc/articles/resampler-en.pdf;
in essence, it combines Julius O. Smith's `Bandlimited Interpolation'
technique (https://ccrma.stanford.edu/~jos/resample/resample.pdf) with FFT-
based over-sampling.

Note that for real-time resampling, libsoxr may have a higher latency
than non-FFT based resamplers.  For example, when using the `High Quality'
configuration to resample between 44100Hz and 48000Hz, the latency is
around 1000 output samples, i.e. roughly 20ms (though passband and FFT-
size configuration parameters may be used to reduce this figure).

For build and installation instructions, see the file `INSTALL'; for
copyright and licensing information, see the file `LICENCE'.

For support and new versions, see https://soxr.sourceforge.net
________
¹ For example, multi-channel resampling can utilise multiple CPU-cores.
² Bit-perfect within practical occupied-bandwidth limits.
³ For details of that API, see http://www.mega-nerd.com/SRC/api.html.