1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-09 16:13:41 +02:00
Files
.github
autotools
cmake-proxies
dox2-src
help
images
include
lib-src
FileDialog
expat
ffmpeg
header-substitutes
lame
lib-widget-extra
libflac
libid3tag
libmad
libmp3lame
libnyquist
libogg
libscorealign
libsndfile
libsoxr
cmake
examples
1-single-block.c
1a-lsr.c
2-stream.C
3-options-input-fn.c
4-split-channels.c
5-variable-rate.c
CMakeLists.txt
README
examples-common.h
msvc
src
tests
AUTHORS
CMakeLists.txt
COPYING.LGPL
INSTALL
LICENCE
NEWS
README
TODO
configure
deinstall.cmake.in
go
go.bat
inst-check
inst-check-soxr
multi-arch
soxr-config.h.in
libvamp
libvorbis
lv2
mod-null
mod-nyq-bench
mod-script-pipe
mod-track-panel
mpglib
portaudio-v19
portburn
portmidi
portmixer
portsmf
sbsms
soundtouch
twolame
CMakeLists.txt
Makefile.am
Makefile.in
audacity-patches.txt
dist-libsoxr.mk
dist-libvamp.mk
dist-portaudio.mk
linux
locale
m4
mac
nyq-po
nyquist
plug-ins
presets
qa
scripts
src
tests
win
.gitattributes
.gitignore
.travis.yml
ABOUT-NLS
CHANGELOG.txt
CMakeLists.txt
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Directory.Build.props
INSTALL
LICENSE.txt
Makefile.am
Makefile.in
PULL_REQUEST_TEMPLATE.md
README.md
README.txt
appveyor.yml
audacity.dox
configure
configure.ac
todo.txt
audacity/lib-src/libsoxr/examples
2018-03-20 20:52:59 +00:00
..
2018-03-20 20:52:59 +00:00
2018-03-20 20:52:59 +00:00
2018-03-20 20:52:59 +00:00
2018-03-20 20:52:59 +00:00
2018-03-20 20:52:59 +00:00
2018-03-20 20:52:59 +00:00
2018-03-20 20:52:59 +00:00
2018-03-20 20:52:59 +00:00
2013-11-05 04:24:24 +00:00

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

These simple examples show the different ways that an application may
interface with soxr.  Note that real-world applications may also have to
deal with file-formats, codecs, (more sophisticated) dithering, etc., which
are not covered here.

With the library installed, the examples may be built using commands similar
to the following.  On unix-like systems:

    cc 1-single-block.c -lsoxr
    cc 1a-lsr.c -lsoxr-lsr

or, with MSVC on MS-Windows:

    cl 1-single-block.c -I"C:/Program Files/soxr/include" "C:/Program Files/soxr/lib/soxr.lib"
    cl 1a-lsr.c -I"C:/Program Files/soxr/include" "C:/Program Files/soxr/lib/soxr-lsr.lib"

IDEs may hide such commands behind configuration screens and build menus --
where applicable, consult your IDE's user-manual.