Showing preview only (1,742K chars total). Download the full file or copy to clipboard to get everything.
Repository: mtytel/cursynth
Branch: master
Commit: 578b43cd5d2f
Files: 161
Total size: 1.6 MB
Directory structure:
gitextract_mpjqhbob/
├── .gitignore
├── ABOUT-NLS
├── AUTHORS
├── COPYING
├── ChangeLog
├── INSTALL
├── Makefile.am
├── NEWS
├── README
├── cJSON/
│ ├── LICENSE
│ ├── Makefile.am
│ ├── cJSON.c
│ └── cJSON.h
├── configure.ac
├── doc/
│ ├── .gitignore
│ ├── Makefile.am
│ ├── cursynth.texi
│ └── fdl.texi
├── mopo/
│ ├── .gitignore
│ ├── AUTHORS
│ ├── COPYING
│ ├── ChangeLog
│ ├── INSTALL
│ ├── Makefile.am
│ ├── NEWS
│ ├── README
│ ├── configure.ac
│ └── src/
│ ├── Makefile.am
│ ├── delay.cpp
│ ├── delay.h
│ ├── envelope.cpp
│ ├── envelope.h
│ ├── feedback.cpp
│ ├── feedback.h
│ ├── filter.cpp
│ ├── filter.h
│ ├── linear_slope.cpp
│ ├── linear_slope.h
│ ├── memory.h
│ ├── midi_lookup.cpp
│ ├── midi_lookup.h
│ ├── mono_panner.cpp
│ ├── mono_panner.h
│ ├── mopo.h
│ ├── operators.cpp
│ ├── operators.h
│ ├── oscillator.cpp
│ ├── oscillator.h
│ ├── processor.cpp
│ ├── processor.h
│ ├── processor_router.cpp
│ ├── processor_router.h
│ ├── send_receive.cpp
│ ├── send_receive.h
│ ├── smooth_filter.cpp
│ ├── smooth_filter.h
│ ├── smooth_value.cpp
│ ├── smooth_value.h
│ ├── step_generator.cpp
│ ├── step_generator.h
│ ├── tick_router.h
│ ├── trigger_operators.cpp
│ ├── trigger_operators.h
│ ├── utils.h
│ ├── value.cpp
│ ├── value.h
│ ├── voice_handler.cpp
│ ├── voice_handler.h
│ ├── wave.cpp
│ └── wave.h
├── patches/
│ ├── bit_sin.mite
│ ├── bwang.mite
│ ├── default.mite
│ ├── loaded_room.mite
│ ├── test_patch1.mite
│ ├── test_patch2.mite
│ ├── water_wobble.mite
│ ├── whistle.mite
│ ├── whoooo.mite
│ └── womp.mite
├── po/
│ ├── .gitignore
│ ├── Makevars
│ └── POTFILES.in
├── rtaudio/
│ ├── .gitignore
│ ├── Makefile.am
│ ├── RtAudio.cpp
│ ├── RtAudio.h
│ ├── RtError.h
│ ├── configure.ac
│ ├── contrib/
│ │ └── python/
│ │ └── pyrtaudio/
│ │ ├── PyRtAudioTest.py
│ │ ├── readme
│ │ ├── rtaudiomodule.cpp
│ │ └── setup.py
│ ├── include/
│ │ ├── asio.cpp
│ │ ├── asio.h
│ │ ├── asiodrivers.cpp
│ │ ├── asiodrivers.h
│ │ ├── asiodrvr.h
│ │ ├── asiolist.cpp
│ │ ├── asiolist.h
│ │ ├── asiosys.h
│ │ ├── dsound.h
│ │ ├── ginclude.h
│ │ ├── iasiodrv.h
│ │ ├── iasiothiscallresolver.cpp
│ │ ├── iasiothiscallresolver.h
│ │ └── soundcard.h
│ ├── install
│ ├── librtaudio.pc.in
│ ├── readme
│ ├── rtaudio-config.in
│ └── tests/
│ ├── Windows/
│ │ ├── audioprobe.dsp
│ │ ├── duplex.dsp
│ │ ├── playraw.dsp
│ │ ├── playsaw.dsp
│ │ ├── record.dsp
│ │ ├── rtaudio.dsw
│ │ ├── testall.dsp
│ │ └── teststops.dsp
│ ├── audioprobe.cpp
│ ├── duplex.cpp
│ ├── playraw.cpp
│ ├── playsaw.cpp
│ ├── record.cpp
│ ├── testall.cpp
│ └── teststops.cpp
├── rtmidi/
│ ├── .gitignore
│ ├── Makefile.am
│ ├── RtError.h
│ ├── RtMidi.cpp
│ ├── RtMidi.h
│ ├── configure.ac
│ ├── include/
│ │ ├── ks.h
│ │ └── ksmedia.h
│ ├── msw/
│ │ ├── readme
│ │ ├── rtmidilib.sln
│ │ └── rtmidilib.vcproj
│ ├── readme
│ ├── rtmidi-config.in
│ └── tests/
│ ├── RtMidi.dsw
│ ├── cmidiin.cpp
│ ├── cmidiin.dsp
│ ├── midiout.cpp
│ ├── midiout.dsp
│ ├── midiprobe.cpp
│ ├── midiprobe.dsp
│ ├── qmidiin.cpp
│ ├── qmidiin.dsp
│ ├── sysextest.cpp
│ └── sysextest.dsp
└── src/
├── Makefile.am
├── cursynth.cpp
├── cursynth.h
├── cursynth_common.h
├── cursynth_engine.cpp
├── cursynth_engine.h
├── cursynth_gui.cpp
├── cursynth_gui.h
├── cursynth_strings.cpp
├── cursynth_strings.h
└── main.cpp
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
.DS_Store
# Compiled Object files
*.slo
*.lo
*.o
debug
# Compiled Dynamic libraries
*.so
*.dylib
# Compiled Static libraries
*.lai
*.la
*.a
# Executables
cursynth
a.out
# Autotools
Makefile.in
ar-lib
config.guess
config.rpath
config.sub
config.h.in
*.la
*.lo
*~
.deps/
.libs/
Makefile
aclocal.m4
autom4te.cache
autoscan.log
compile
config.h
config.log
config.status
configure
depcomp
install-sh
libtool
ltmain.sh
m4/
missing
stamp*
stdin.info
*.tar.gz
stdin.info
================================================
FILE: ABOUT-NLS
================================================
1 Notes on the Free Translation Project
***************************************
Free software is going international! The Free Translation Project is
a way to get maintainers of free software, translators, and users all
together, so that free software will gradually become able to speak many
languages. A few packages already provide translations for their
messages.
If you found this `ABOUT-NLS' file inside a distribution, you may
assume that the distributed package does use GNU `gettext' internally,
itself available at your nearest GNU archive site. But you do _not_
need to install GNU `gettext' prior to configuring, installing or using
this package with messages translated.
Installers will find here some useful hints. These notes also
explain how users should proceed for getting the programs to use the
available translations. They tell how people wanting to contribute and
work on translations can contact the appropriate team.
1.1 INSTALL Matters
===================
Some packages are "localizable" when properly installed; the programs
they contain can be made to speak your own native language. Most such
packages use GNU `gettext'. Other packages have their own ways to
internationalization, predating GNU `gettext'.
By default, this package will be installed to allow translation of
messages. It will automatically detect whether the system already
provides the GNU `gettext' functions. Installers may use special
options at configuration time for changing the default behaviour. The
command:
./configure --disable-nls
will _totally_ disable translation of messages.
When you already have GNU `gettext' installed on your system and run
configure without an option for your new package, `configure' will
probably detect the previously built and installed `libintl' library
and will decide to use it. If not, you may have to to use the
`--with-libintl-prefix' option to tell `configure' where to look for it.
Internationalized packages usually have many `po/LL.po' files, where
LL gives an ISO 639 two-letter code identifying the language. Unless
translations have been forbidden at `configure' time by using the
`--disable-nls' switch, all available translations are installed
together with the package. However, the environment variable `LINGUAS'
may be set, prior to configuration, to limit the installed set.
`LINGUAS' should then contain a space separated list of two-letter
codes, stating which languages are allowed.
1.2 Using This Package
======================
As a user, if your language has been installed for this package, you
only have to set the `LANG' environment variable to the appropriate
`LL_CC' combination. If you happen to have the `LC_ALL' or some other
`LC_xxx' environment variables set, you should unset them before
setting `LANG', otherwise the setting of `LANG' will not have the
desired effect. Here `LL' is an ISO 639 two-letter language code, and
`CC' is an ISO 3166 two-letter country code. For example, let's
suppose that you speak German and live in Germany. At the shell
prompt, merely execute `setenv LANG de_DE' (in `csh'),
`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
This can be done from your `.login' or `.profile' file, once and for
all.
You might think that the country code specification is redundant.
But in fact, some languages have dialects in different countries. For
example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The
country code serves to distinguish the dialects.
The locale naming convention of `LL_CC', with `LL' denoting the
language and `CC' denoting the country, is the one use on systems based
on GNU libc. On other systems, some variations of this scheme are
used, such as `LL' or `LL_CC.ENCODING'. You can get the list of
locales supported by your system for your language by running the
command `locale -a | grep '^LL''.
Not all programs have translations for all languages. By default, an
English message is shown in place of a nonexistent translation. If you
understand other languages, you can set up a priority list of languages.
This is done through a different environment variable, called
`LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG'
for the purpose of message handling, but you still need to have `LANG'
set to the primary language; this is required by other parts of the
system libraries. For example, some Swedish users who would rather
read translations in German than English for when Swedish is not
available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
Special advice for Norwegian users: The language code for Norwegian
bokma*l changed from `no' to `nb' recently (in 2003). During the
transition period, while some message catalogs for this language are
installed under `nb' and some older ones under `no', it's recommended
for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
older translations are used.
In the `LANGUAGE' environment variable, but not in the `LANG'
environment variable, `LL_CC' combinations can be abbreviated as `LL'
to denote the language's main dialect. For example, `de' is equivalent
to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
(Portuguese as spoken in Portugal) in this context.
1.3 Translating Teams
=====================
For the Free Translation Project to be a success, we need interested
people who like their own language and write it well, and who are also
able to synergize with other translators speaking the same language.
Each translation team has its own mailing list. The up-to-date list of
teams can be found at the Free Translation Project's homepage,
`http://translationproject.org/', in the "Teams" area.
If you'd like to volunteer to _work_ at translating messages, you
should become a member of the translating team for your own language.
The subscribing address is _not_ the same as the list itself, it has
`-request' appended. For example, speakers of Swedish can send a
message to `sv-request@li.org', having this message body:
subscribe
Keep in mind that team members are expected to participate
_actively_ in translations, or at solving translational difficulties,
rather than merely lurking around. If your team does not exist yet and
you want to start one, or if you are unsure about what to do or how to
get started, please write to `coordinator@translationproject.org' to
reach the coordinator for all translator teams.
The English team is special. It works at improving and uniformizing
the terminology in use. Proven linguistic skills are praised more than
programming skills, here.
1.4 Available Packages
======================
Languages are not equally supported in all packages. The following
matrix shows the current state of internationalization, as of June
2010. The matrix shows, in regard of each package, for which languages
PO files have been submitted to translation coordination, with a
translation percentage of at least 50%.
Ready PO files af am an ar as ast az be be@latin bg bn_IN bs ca
+--------------------------------------------------+
a2ps | [] [] |
aegis | |
ant-phone | |
anubis | |
aspell | [] [] |
bash | |
bfd | |
bibshelf | [] |
binutils | |
bison | |
bison-runtime | [] |
bluez-pin | [] [] |
bombono-dvd | |
buzztard | |
cflow | |
clisp | |
coreutils | [] [] |
cpio | |
cppi | |
cpplib | [] |
cryptsetup | |
dfarc | |
dialog | [] [] |
dico | |
diffutils | [] |
dink | |
doodle | |
e2fsprogs | [] |
enscript | [] |
exif | |
fetchmail | [] |
findutils | [] |
flex | [] |
freedink | |
gas | |
gawk | [] [] |
gcal | [] |
gcc | |
gettext-examples | [] [] [] [] |
gettext-runtime | [] [] |
gettext-tools | [] [] |
gip | [] |
gjay | |
gliv | [] |
glunarclock | [] [] |
gnubiff | |
gnucash | [] |
gnuedu | |
gnulib | |
gnunet | |
gnunet-gtk | |
gnutls | |
gold | |
gpe-aerial | |
gpe-beam | |
gpe-bluetooth | |
gpe-calendar | |
gpe-clock | [] |
gpe-conf | |
gpe-contacts | |
gpe-edit | |
gpe-filemanager | |
gpe-go | |
gpe-login | |
gpe-ownerinfo | [] |
gpe-package | |
gpe-sketchbook | |
gpe-su | [] |
gpe-taskmanager | [] |
gpe-timesheet | [] |
gpe-today | [] |
gpe-todo | |
gphoto2 | |
gprof | [] |
gpsdrive | |
gramadoir | |
grep | |
grub | [] [] |
gsasl | |
gss | |
gst-plugins-bad | [] |
gst-plugins-base | [] |
gst-plugins-good | [] |
gst-plugins-ugly | [] |
gstreamer | [] [] [] |
gtick | |
gtkam | [] |
gtkorphan | [] |
gtkspell | [] [] [] |
gutenprint | |
hello | [] |
help2man | |
hylafax | |
idutils | |
indent | [] [] |
iso_15924 | |
iso_3166 | [] [] [] [] [] [] [] |
iso_3166_2 | |
iso_4217 | |
iso_639 | [] [] [] [] |
iso_639_3 | |
jwhois | |
kbd | |
keytouch | [] |
keytouch-editor | |
keytouch-keyboa... | [] |
klavaro | [] |
latrine | |
ld | [] |
leafpad | [] [] |
libc | [] [] |
libexif | () |
libextractor | |
libgnutls | |
libgpewidget | |
libgpg-error | |
libgphoto2 | |
libgphoto2_port | |
libgsasl | |
libiconv | [] |
libidn | |
lifelines | |
liferea | [] [] |
lilypond | |
linkdr | [] |
lordsawar | |
lprng | |
lynx | [] |
m4 | |
mailfromd | |
mailutils | |
make | |
man-db | |
man-db-manpages | |
minicom | |
mkisofs | |
myserver | |
nano | [] [] |
opcodes | |
parted | |
pies | |
popt | |
psmisc | |
pspp | [] |
pwdutils | |
radius | [] |
recode | [] [] |
rosegarden | |
rpm | |
rush | |
sarg | |
screem | |
scrollkeeper | [] [] [] |
sed | [] [] |
sharutils | [] [] |
shishi | |
skencil | |
solfege | |
solfege-manual | |
soundtracker | |
sp | |
sysstat | |
tar | [] |
texinfo | |
tin | |
unicode-han-tra... | |
unicode-transla... | |
util-linux-ng | [] |
vice | |
vmm | |
vorbis-tools | |
wastesedge | |
wdiff | |
wget | [] [] |
wyslij-po | |
xchat | [] [] [] [] |
xdg-user-dirs | [] [] [] [] [] [] [] [] [] |
xkeyboard-config | [] [] |
+--------------------------------------------------+
af am an ar as ast az be be@latin bg bn_IN bs ca
6 0 1 2 3 19 1 10 3 28 3 1 38
crh cs da de el en en_GB en_ZA eo es et eu fa
+-------------------------------------------------+
a2ps | [] [] [] [] [] [] [] |
aegis | [] [] [] |
ant-phone | [] () |
anubis | [] [] |
aspell | [] [] [] [] [] |
bash | [] [] [] |
bfd | [] |
bibshelf | [] [] [] |
binutils | [] |
bison | [] [] |
bison-runtime | [] [] [] [] |
bluez-pin | [] [] [] [] [] [] |
bombono-dvd | [] |
buzztard | [] [] [] |
cflow | [] [] |
clisp | [] [] [] [] |
coreutils | [] [] [] [] |
cpio | |
cppi | |
cpplib | [] [] [] |
cryptsetup | [] |
dfarc | [] [] [] |
dialog | [] [] [] [] [] |
dico | |
diffutils | [] [] [] [] [] [] |
dink | [] [] [] |
doodle | [] |
e2fsprogs | [] [] [] |
enscript | [] [] [] |
exif | () [] [] |
fetchmail | [] [] () [] [] [] |
findutils | [] [] [] |
flex | [] [] |
freedink | [] [] [] |
gas | [] |
gawk | [] [] [] |
gcal | [] |
gcc | [] [] |
gettext-examples | [] [] [] [] |
gettext-runtime | [] [] [] [] |
gettext-tools | [] [] [] |
gip | [] [] [] [] |
gjay | [] |
gliv | [] [] [] |
glunarclock | [] [] |
gnubiff | () |
gnucash | [] () () () () |
gnuedu | [] [] |
gnulib | [] [] |
gnunet | |
gnunet-gtk | [] |
gnutls | [] [] |
gold | [] |
gpe-aerial | [] [] [] [] |
gpe-beam | [] [] [] [] |
gpe-bluetooth | [] [] |
gpe-calendar | [] |
gpe-clock | [] [] [] [] |
gpe-conf | [] [] [] |
gpe-contacts | [] [] [] |
gpe-edit | [] [] |
gpe-filemanager | [] [] [] |
gpe-go | [] [] [] [] |
gpe-login | [] [] |
gpe-ownerinfo | [] [] [] [] |
gpe-package | [] [] [] |
gpe-sketchbook | [] [] [] [] |
gpe-su | [] [] [] [] |
gpe-taskmanager | [] [] [] [] |
gpe-timesheet | [] [] [] [] |
gpe-today | [] [] [] [] |
gpe-todo | [] [] [] |
gphoto2 | [] [] () [] [] [] |
gprof | [] [] [] |
gpsdrive | [] [] [] |
gramadoir | [] [] [] |
grep | [] |
grub | [] [] |
gsasl | [] |
gss | |
gst-plugins-bad | [] [] [] [] [] |
gst-plugins-base | [] [] [] [] [] |
gst-plugins-good | [] [] [] [] [] [] |
gst-plugins-ugly | [] [] [] [] [] [] |
gstreamer | [] [] [] [] [] |
gtick | [] () [] |
gtkam | [] [] () [] [] |
gtkorphan | [] [] [] [] |
gtkspell | [] [] [] [] [] [] [] |
gutenprint | [] [] [] |
hello | [] [] [] [] |
help2man | [] |
hylafax | [] [] |
idutils | [] [] |
indent | [] [] [] [] [] [] [] |
iso_15924 | [] () [] [] |
iso_3166 | [] [] [] [] () [] [] [] () |
iso_3166_2 | () |
iso_4217 | [] [] [] () [] [] |
iso_639 | [] [] [] [] () [] [] |
iso_639_3 | [] |
jwhois | [] |
kbd | [] [] [] [] [] |
keytouch | [] [] |
keytouch-editor | [] [] |
keytouch-keyboa... | [] |
klavaro | [] [] [] [] |
latrine | [] () |
ld | [] [] |
leafpad | [] [] [] [] [] [] |
libc | [] [] [] [] |
libexif | [] [] () |
libextractor | |
libgnutls | [] |
libgpewidget | [] [] |
libgpg-error | [] [] |
libgphoto2 | [] () |
libgphoto2_port | [] () [] |
libgsasl | |
libiconv | [] [] [] [] [] |
libidn | [] [] [] |
lifelines | [] () |
liferea | [] [] [] [] [] |
lilypond | [] [] [] |
linkdr | [] [] [] |
lordsawar | [] |
lprng | |
lynx | [] [] [] [] |
m4 | [] [] [] [] |
mailfromd | |
mailutils | [] |
make | [] [] [] |
man-db | |
man-db-manpages | |
minicom | [] [] [] [] |
mkisofs | |
myserver | |
nano | [] [] [] |
opcodes | [] [] |
parted | [] [] |
pies | |
popt | [] [] [] [] [] |
psmisc | [] [] [] |
pspp | [] |
pwdutils | [] |
radius | [] |
recode | [] [] [] [] [] [] |
rosegarden | () () () |
rpm | [] [] [] |
rush | |
sarg | |
screem | |
scrollkeeper | [] [] [] [] [] |
sed | [] [] [] [] [] [] |
sharutils | [] [] [] [] |
shishi | |
skencil | [] () [] |
solfege | [] [] [] |
solfege-manual | [] [] |
soundtracker | [] [] [] |
sp | [] |
sysstat | [] [] [] |
tar | [] [] [] [] |
texinfo | [] [] [] |
tin | [] [] |
unicode-han-tra... | |
unicode-transla... | |
util-linux-ng | [] [] [] [] |
vice | () () |
vmm | [] |
vorbis-tools | [] [] |
wastesedge | [] |
wdiff | [] [] |
wget | [] [] [] |
wyslij-po | |
xchat | [] [] [] [] [] |
xdg-user-dirs | [] [] [] [] [] [] [] [] [] |
xkeyboard-config | [] [] [] [] [] [] |
+-------------------------------------------------+
crh cs da de el en en_GB en_ZA eo es et eu fa
5 64 105 117 18 1 8 0 28 89 18 19 0
fi fr ga gl gu he hi hr hu hy id is it ja ka kn
+----------------------------------------------------+
a2ps | [] [] [] [] |
aegis | [] [] |
ant-phone | [] [] |
anubis | [] [] [] [] |
aspell | [] [] [] [] |
bash | [] [] [] [] |
bfd | [] [] [] |
bibshelf | [] [] [] [] [] |
binutils | [] [] [] |
bison | [] [] [] [] |
bison-runtime | [] [] [] [] [] [] |
bluez-pin | [] [] [] [] [] [] [] [] |
bombono-dvd | [] |
buzztard | [] |
cflow | [] [] [] |
clisp | [] |
coreutils | [] [] [] [] [] |
cpio | [] [] [] [] |
cppi | [] [] |
cpplib | [] [] [] |
cryptsetup | [] [] [] |
dfarc | [] [] [] |
dialog | [] [] [] [] [] [] [] |
dico | |
diffutils | [] [] [] [] [] [] [] [] [] |
dink | [] |
doodle | [] [] |
e2fsprogs | [] [] |
enscript | [] [] [] [] |
exif | [] [] [] [] [] [] |
fetchmail | [] [] [] [] |
findutils | [] [] [] [] [] [] |
flex | [] [] [] |
freedink | [] [] [] |
gas | [] [] |
gawk | [] [] [] [] () [] |
gcal | [] |
gcc | [] |
gettext-examples | [] [] [] [] [] [] [] |
gettext-runtime | [] [] [] [] [] [] |
gettext-tools | [] [] [] [] |
gip | [] [] [] [] [] [] |
gjay | [] |
gliv | [] () |
glunarclock | [] [] [] [] |
gnubiff | () [] () |
gnucash | () () () () () [] |
gnuedu | [] [] |
gnulib | [] [] [] [] [] [] |
gnunet | |
gnunet-gtk | [] |
gnutls | [] [] |
gold | [] [] |
gpe-aerial | [] [] [] |
gpe-beam | [] [] [] [] |
gpe-bluetooth | [] [] [] [] |
gpe-calendar | [] [] |
gpe-clock | [] [] [] [] [] |
gpe-conf | [] [] [] [] |
gpe-contacts | [] [] [] [] |
gpe-edit | [] [] [] |
gpe-filemanager | [] [] [] [] |
gpe-go | [] [] [] [] [] |
gpe-login | [] [] [] |
gpe-ownerinfo | [] [] [] [] [] |
gpe-package | [] [] [] |
gpe-sketchbook | [] [] [] [] |
gpe-su | [] [] [] [] [] [] |
gpe-taskmanager | [] [] [] [] [] |
gpe-timesheet | [] [] [] [] [] |
gpe-today | [] [] [] [] [] [] [] |
gpe-todo | [] [] [] |
gphoto2 | [] [] [] [] [] [] |
gprof | [] [] [] [] |
gpsdrive | [] [] [] |
gramadoir | [] [] [] |
grep | [] [] |
grub | [] [] [] [] |
gsasl | [] [] [] [] [] |
gss | [] [] [] [] [] |
gst-plugins-bad | [] [] [] [] [] [] |
gst-plugins-base | [] [] [] [] [] [] |
gst-plugins-good | [] [] [] [] [] [] |
gst-plugins-ugly | [] [] [] [] [] [] |
gstreamer | [] [] [] [] [] |
gtick | [] [] [] [] [] |
gtkam | [] [] [] [] [] |
gtkorphan | [] [] [] |
gtkspell | [] [] [] [] [] [] [] [] [] |
gutenprint | [] [] [] [] |
hello | [] [] [] |
help2man | [] [] |
hylafax | [] |
idutils | [] [] [] [] [] [] |
indent | [] [] [] [] [] [] [] [] |
iso_15924 | [] () [] [] |
iso_3166 | [] () [] [] [] [] [] [] [] [] [] [] |
iso_3166_2 | () [] [] [] |
iso_4217 | [] () [] [] [] [] |
iso_639 | [] () [] [] [] [] [] [] [] |
iso_639_3 | () [] [] |
jwhois | [] [] [] [] [] |
kbd | [] [] |
keytouch | [] [] [] [] [] [] |
keytouch-editor | [] [] [] [] [] |
keytouch-keyboa... | [] [] [] [] [] |
klavaro | [] [] |
latrine | [] [] [] |
ld | [] [] [] [] |
leafpad | [] [] [] [] [] [] [] () |
libc | [] [] [] [] [] |
libexif | [] |
libextractor | |
libgnutls | [] [] |
libgpewidget | [] [] [] [] |
libgpg-error | [] [] |
libgphoto2 | [] [] [] |
libgphoto2_port | [] [] [] |
libgsasl | [] [] [] [] [] |
libiconv | [] [] [] [] [] [] |
libidn | [] [] [] [] |
lifelines | () |
liferea | [] [] [] [] |
lilypond | [] [] |
linkdr | [] [] [] [] [] |
lordsawar | |
lprng | [] |
lynx | [] [] [] [] [] |
m4 | [] [] [] [] [] [] |
mailfromd | |
mailutils | [] [] |
make | [] [] [] [] [] [] [] [] [] |
man-db | [] [] |
man-db-manpages | [] |
minicom | [] [] [] [] [] |
mkisofs | [] [] [] [] |
myserver | |
nano | [] [] [] [] [] [] |
opcodes | [] [] [] [] |
parted | [] [] [] [] |
pies | |
popt | [] [] [] [] [] [] [] [] [] |
psmisc | [] [] [] |
pspp | |
pwdutils | [] [] |
radius | [] [] |
recode | [] [] [] [] [] [] [] [] |
rosegarden | () () () () () |
rpm | [] [] |
rush | |
sarg | [] |
screem | [] [] |
scrollkeeper | [] [] [] [] |
sed | [] [] [] [] [] [] [] [] |
sharutils | [] [] [] [] [] [] [] |
shishi | [] |
skencil | [] |
solfege | [] [] [] [] |
solfege-manual | [] [] |
soundtracker | [] [] |
sp | [] () |
sysstat | [] [] [] [] [] |
tar | [] [] [] [] [] [] [] |
texinfo | [] [] [] [] |
tin | [] |
unicode-han-tra... | |
unicode-transla... | [] [] |
util-linux-ng | [] [] [] [] [] [] |
vice | () () () |
vmm | [] |
vorbis-tools | [] |
wastesedge | () () |
wdiff | [] |
wget | [] [] [] [] [] [] [] [] |
wyslij-po | [] [] [] |
xchat | [] [] [] [] [] [] [] [] [] |
xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] |
xkeyboard-config | [] [] [] [] [] |
+----------------------------------------------------+
fi fr ga gl gu he hi hr hu hy id is it ja ka kn
105 121 53 20 4 8 3 5 53 2 120 5 84 67 0 4
ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne
+-----------------------------------------------+
a2ps | [] |
aegis | |
ant-phone | |
anubis | [] [] |
aspell | [] |
bash | |
bfd | |
bibshelf | [] [] |
binutils | |
bison | [] |
bison-runtime | [] [] [] [] [] |
bluez-pin | [] [] [] [] [] |
bombono-dvd | |
buzztard | |
cflow | |
clisp | |
coreutils | [] |
cpio | |
cppi | |
cpplib | |
cryptsetup | |
dfarc | [] |
dialog | [] [] [] [] [] |
dico | |
diffutils | [] [] |
dink | |
doodle | |
e2fsprogs | |
enscript | |
exif | [] |
fetchmail | |
findutils | |
flex | |
freedink | [] |
gas | |
gawk | |
gcal | |
gcc | |
gettext-examples | [] [] [] [] |
gettext-runtime | [] |
gettext-tools | [] |
gip | [] [] |
gjay | |
gliv | |
glunarclock | [] |
gnubiff | |
gnucash | () () () () |
gnuedu | |
gnulib | |
gnunet | |
gnunet-gtk | |
gnutls | [] |
gold | |
gpe-aerial | [] |
gpe-beam | [] |
gpe-bluetooth | [] [] |
gpe-calendar | [] |
gpe-clock | [] [] [] [] [] |
gpe-conf | [] [] |
gpe-contacts | [] [] |
gpe-edit | [] |
gpe-filemanager | [] [] |
gpe-go | [] [] [] |
gpe-login | [] |
gpe-ownerinfo | [] [] |
gpe-package | [] [] |
gpe-sketchbook | [] [] |
gpe-su | [] [] [] [] [] [] |
gpe-taskmanager | [] [] [] [] [] [] |
gpe-timesheet | [] [] |
gpe-today | [] [] [] [] |
gpe-todo | [] [] |
gphoto2 | |
gprof | [] |
gpsdrive | |
gramadoir | |
grep | |
grub | |
gsasl | |
gss | |
gst-plugins-bad | [] [] [] [] |
gst-plugins-base | [] [] |
gst-plugins-good | [] [] |
gst-plugins-ugly | [] [] [] [] [] |
gstreamer | |
gtick | |
gtkam | [] |
gtkorphan | [] [] |
gtkspell | [] [] [] [] [] [] [] |
gutenprint | |
hello | [] [] [] |
help2man | |
hylafax | |
idutils | |
indent | |
iso_15924 | [] [] |
iso_3166 | [] [] () [] [] [] [] [] |
iso_3166_2 | |
iso_4217 | [] [] |
iso_639 | [] [] |
iso_639_3 | [] |
jwhois | [] |
kbd | |
keytouch | [] |
keytouch-editor | [] |
keytouch-keyboa... | [] |
klavaro | [] |
latrine | [] |
ld | |
leafpad | [] [] [] |
libc | [] |
libexif | |
libextractor | |
libgnutls | [] |
libgpewidget | [] [] |
libgpg-error | |
libgphoto2 | |
libgphoto2_port | |
libgsasl | |
libiconv | |
libidn | |
lifelines | |
liferea | |
lilypond | |
linkdr | |
lordsawar | |
lprng | |
lynx | |
m4 | |
mailfromd | |
mailutils | |
make | [] |
man-db | |
man-db-manpages | |
minicom | [] |
mkisofs | |
myserver | |
nano | [] [] |
opcodes | |
parted | |
pies | |
popt | [] [] [] |
psmisc | |
pspp | |
pwdutils | |
radius | |
recode | |
rosegarden | |
rpm | |
rush | |
sarg | |
screem | |
scrollkeeper | [] [] |
sed | |
sharutils | |
shishi | |
skencil | |
solfege | [] |
solfege-manual | |
soundtracker | |
sp | |
sysstat | [] |
tar | [] |
texinfo | [] |
tin | |
unicode-han-tra... | |
unicode-transla... | |
util-linux-ng | |
vice | |
vmm | |
vorbis-tools | |
wastesedge | |
wdiff | |
wget | [] |
wyslij-po | |
xchat | [] [] [] |
xdg-user-dirs | [] [] [] [] [] [] [] [] |
xkeyboard-config | [] [] [] |
+-----------------------------------------------+
ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne
20 5 10 1 13 48 4 2 2 4 24 10 20 3 1
nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr
+---------------------------------------------------+
a2ps | [] [] [] [] [] [] [] [] |
aegis | [] [] [] |
ant-phone | [] [] |
anubis | [] [] [] |
aspell | [] [] [] [] [] |
bash | [] [] |
bfd | [] |
bibshelf | [] [] |
binutils | [] [] |
bison | [] [] [] |
bison-runtime | [] [] [] [] [] [] [] |
bluez-pin | [] [] [] [] [] [] [] [] |
bombono-dvd | [] () |
buzztard | [] [] |
cflow | [] |
clisp | [] [] |
coreutils | [] [] [] [] [] [] |
cpio | [] [] [] |
cppi | [] |
cpplib | [] |
cryptsetup | [] |
dfarc | [] |
dialog | [] [] [] [] |
dico | [] |
diffutils | [] [] [] [] [] [] |
dink | () |
doodle | [] [] |
e2fsprogs | [] [] |
enscript | [] [] [] [] [] |
exif | [] [] [] () [] |
fetchmail | [] [] [] [] |
findutils | [] [] [] [] [] |
flex | [] [] [] [] [] |
freedink | [] [] |
gas | |
gawk | [] [] [] [] |
gcal | |
gcc | [] |
gettext-examples | [] [] [] [] [] [] [] [] |
gettext-runtime | [] [] [] [] [] [] [] [] [] |
gettext-tools | [] [] [] [] [] [] |
gip | [] [] [] [] [] |
gjay | |
gliv | [] [] [] [] [] [] |
glunarclock | [] [] [] [] [] |
gnubiff | [] () |
gnucash | [] () () () |
gnuedu | [] |
gnulib | [] [] [] [] |
gnunet | |
gnunet-gtk | |
gnutls | [] [] |
gold | |
gpe-aerial | [] [] [] [] [] [] [] |
gpe-beam | [] [] [] [] [] [] [] |
gpe-bluetooth | [] [] |
gpe-calendar | [] [] [] [] |
gpe-clock | [] [] [] [] [] [] [] [] |
gpe-conf | [] [] [] [] [] [] [] |
gpe-contacts | [] [] [] [] [] |
gpe-edit | [] [] [] |
gpe-filemanager | [] [] [] |
gpe-go | [] [] [] [] [] [] [] [] |
gpe-login | [] [] |
gpe-ownerinfo | [] [] [] [] [] [] [] [] |
gpe-package | [] [] |
gpe-sketchbook | [] [] [] [] [] [] [] |
gpe-su | [] [] [] [] [] [] [] [] |
gpe-taskmanager | [] [] [] [] [] [] [] [] |
gpe-timesheet | [] [] [] [] [] [] [] [] |
gpe-today | [] [] [] [] [] [] [] [] |
gpe-todo | [] [] [] [] [] |
gphoto2 | [] [] [] [] [] [] [] [] |
gprof | [] [] [] |
gpsdrive | [] [] |
gramadoir | [] [] |
grep | [] [] [] [] |
grub | [] [] [] |
gsasl | [] [] [] [] |
gss | [] [] [] |
gst-plugins-bad | [] [] [] [] [] [] |
gst-plugins-base | [] [] [] [] [] |
gst-plugins-good | [] [] [] [] [] |
gst-plugins-ugly | [] [] [] [] [] [] |
gstreamer | [] [] [] [] [] |
gtick | [] [] [] |
gtkam | [] [] [] [] [] [] |
gtkorphan | [] |
gtkspell | [] [] [] [] [] [] [] [] [] [] |
gutenprint | [] [] |
hello | [] [] [] [] |
help2man | [] [] |
hylafax | [] |
idutils | [] [] [] [] [] |
indent | [] [] [] [] [] [] [] |
iso_15924 | [] [] [] [] |
iso_3166 | [] [] [] [] [] () [] [] [] [] [] [] [] [] |
iso_3166_2 | [] [] [] |
iso_4217 | [] [] [] [] [] [] [] [] |
iso_639 | [] [] [] [] [] [] [] [] [] |
iso_639_3 | [] [] |
jwhois | [] [] [] [] |
kbd | [] [] [] |
keytouch | [] [] [] |
keytouch-editor | [] [] [] |
keytouch-keyboa... | [] [] [] |
klavaro | [] [] |
latrine | [] [] |
ld | |
leafpad | [] [] [] [] [] [] [] [] [] |
libc | [] [] [] [] |
libexif | [] [] () [] |
libextractor | |
libgnutls | [] [] |
libgpewidget | [] [] [] |
libgpg-error | [] [] |
libgphoto2 | [] [] |
libgphoto2_port | [] [] [] [] [] |
libgsasl | [] [] [] [] [] |
libiconv | [] [] [] [] [] |
libidn | [] [] |
lifelines | [] [] |
liferea | [] [] [] [] [] () () [] |
lilypond | [] |
linkdr | [] [] [] |
lordsawar | |
lprng | [] |
lynx | [] [] [] |
m4 | [] [] [] [] [] |
mailfromd | [] |
mailutils | [] |
make | [] [] [] [] |
man-db | [] [] [] |
man-db-manpages | [] [] [] |
minicom | [] [] [] [] |
mkisofs | [] [] [] |
myserver | |
nano | [] [] [] [] |
opcodes | [] [] |
parted | [] [] [] [] |
pies | [] |
popt | [] [] [] [] |
psmisc | [] [] [] |
pspp | [] [] |
pwdutils | [] |
radius | [] [] [] |
recode | [] [] [] [] [] [] [] [] |
rosegarden | () () |
rpm | [] [] [] |
rush | [] [] |
sarg | |
screem | |
scrollkeeper | [] [] [] [] [] [] [] [] |
sed | [] [] [] [] [] [] [] [] [] |
sharutils | [] [] [] [] |
shishi | [] |
skencil | [] [] |
solfege | [] [] [] [] |
solfege-manual | [] [] [] |
soundtracker | [] |
sp | |
sysstat | [] [] [] [] |
tar | [] [] [] [] |
texinfo | [] [] [] [] |
tin | [] |
unicode-han-tra... | |
unicode-transla... | |
util-linux-ng | [] [] [] [] [] |
vice | [] |
vmm | [] |
vorbis-tools | [] [] |
wastesedge | [] |
wdiff | [] [] |
wget | [] [] [] [] [] [] [] |
wyslij-po | [] [] [] |
xchat | [] [] [] [] [] [] [] [] [] |
xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] |
xkeyboard-config | [] [] [] |
+---------------------------------------------------+
nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr
135 10 4 7 105 1 29 62 47 91 3 54 46 9 37
sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW
+---------------------------------------------------+
a2ps | [] [] [] [] [] | 27
aegis | [] | 9
ant-phone | [] [] [] [] | 9
anubis | [] [] [] [] | 15
aspell | [] [] [] | 20
bash | [] [] [] | 12
bfd | [] | 6
bibshelf | [] [] [] | 16
binutils | [] [] | 8
bison | [] [] | 12
bison-runtime | [] [] [] [] [] [] | 29
bluez-pin | [] [] [] [] [] [] [] [] | 37
bombono-dvd | [] | 4
buzztard | [] | 7
cflow | [] [] [] | 9
clisp | | 10
coreutils | [] [] [] [] | 22
cpio | [] [] [] [] [] [] | 13
cppi | [] [] | 5
cpplib | [] [] [] [] [] [] | 14
cryptsetup | [] [] | 7
dfarc | [] | 9
dialog | [] [] [] [] [] [] [] | 30
dico | [] | 2
diffutils | [] [] [] [] [] [] | 30
dink | | 4
doodle | [] [] | 7
e2fsprogs | [] [] [] | 11
enscript | [] [] [] [] | 17
exif | [] [] [] | 16
fetchmail | [] [] [] | 17
findutils | [] [] [] [] [] | 20
flex | [] [] [] [] | 15
freedink | [] | 10
gas | [] | 4
gawk | [] [] [] [] | 18
gcal | [] [] | 5
gcc | [] [] [] | 7
gettext-examples | [] [] [] [] [] [] [] | 34
gettext-runtime | [] [] [] [] [] [] [] | 29
gettext-tools | [] [] [] [] [] [] | 22
gip | [] [] [] [] | 22
gjay | [] | 3
gliv | [] [] [] | 14
glunarclock | [] [] [] [] [] | 19
gnubiff | [] [] | 4
gnucash | () [] () [] () | 10
gnuedu | [] [] | 7
gnulib | [] [] [] [] | 16
gnunet | [] | 1
gnunet-gtk | [] [] [] | 5
gnutls | [] [] [] | 10
gold | [] | 4
gpe-aerial | [] [] [] | 18
gpe-beam | [] [] [] | 19
gpe-bluetooth | [] [] [] | 13
gpe-calendar | [] [] [] [] | 12
gpe-clock | [] [] [] [] [] | 28
gpe-conf | [] [] [] [] | 20
gpe-contacts | [] [] [] | 17
gpe-edit | [] [] [] | 12
gpe-filemanager | [] [] [] [] | 16
gpe-go | [] [] [] [] [] | 25
gpe-login | [] [] [] | 11
gpe-ownerinfo | [] [] [] [] [] | 25
gpe-package | [] [] [] | 13
gpe-sketchbook | [] [] [] | 20
gpe-su | [] [] [] [] [] | 30
gpe-taskmanager | [] [] [] [] [] | 29
gpe-timesheet | [] [] [] [] [] | 25
gpe-today | [] [] [] [] [] [] | 30
gpe-todo | [] [] [] [] | 17
gphoto2 | [] [] [] [] [] | 24
gprof | [] [] [] | 15
gpsdrive | [] [] [] | 11
gramadoir | [] [] [] | 11
grep | [] [] [] | 10
grub | [] [] [] | 14
gsasl | [] [] [] [] | 14
gss | [] [] [] | 11
gst-plugins-bad | [] [] [] [] | 26
gst-plugins-base | [] [] [] [] [] | 24
gst-plugins-good | [] [] [] [] | 24
gst-plugins-ugly | [] [] [] [] [] | 29
gstreamer | [] [] [] [] | 22
gtick | [] [] [] | 13
gtkam | [] [] [] | 20
gtkorphan | [] [] [] | 14
gtkspell | [] [] [] [] [] [] [] [] [] | 45
gutenprint | [] | 10
hello | [] [] [] [] [] [] | 21
help2man | [] [] | 7
hylafax | [] | 5
idutils | [] [] [] [] | 17
indent | [] [] [] [] [] [] | 30
iso_15924 | () [] () [] [] | 16
iso_3166 | [] [] () [] [] () [] [] [] () | 53
iso_3166_2 | () [] () [] | 9
iso_4217 | [] () [] [] () [] [] | 26
iso_639 | [] [] [] () [] () [] [] [] [] | 38
iso_639_3 | [] () | 8
jwhois | [] [] [] [] [] | 16
kbd | [] [] [] [] [] | 15
keytouch | [] [] [] | 16
keytouch-editor | [] [] [] | 14
keytouch-keyboa... | [] [] [] | 14
klavaro | [] | 11
latrine | [] [] [] | 10
ld | [] [] [] [] | 11
leafpad | [] [] [] [] [] [] | 33
libc | [] [] [] [] [] | 21
libexif | [] () | 7
libextractor | [] | 1
libgnutls | [] [] [] | 9
libgpewidget | [] [] [] | 14
libgpg-error | [] [] [] | 9
libgphoto2 | [] [] | 8
libgphoto2_port | [] [] [] [] | 14
libgsasl | [] [] [] | 13
libiconv | [] [] [] [] | 21
libidn | () [] [] | 11
lifelines | [] | 4
liferea | [] [] [] | 21
lilypond | [] | 7
linkdr | [] [] [] [] [] | 17
lordsawar | | 1
lprng | [] | 3
lynx | [] [] [] [] | 17
m4 | [] [] [] [] | 19
mailfromd | [] [] | 3
mailutils | [] | 5
make | [] [] [] [] | 21
man-db | [] [] [] | 8
man-db-manpages | | 4
minicom | [] [] | 16
mkisofs | [] [] | 9
myserver | | 0
nano | [] [] [] [] | 21
opcodes | [] [] [] | 11
parted | [] [] [] [] [] | 15
pies | [] [] | 3
popt | [] [] [] [] [] [] | 27
psmisc | [] [] | 11
pspp | | 4
pwdutils | [] [] | 6
radius | [] [] | 9
recode | [] [] [] [] | 28
rosegarden | () | 0
rpm | [] [] [] | 11
rush | [] [] | 4
sarg | | 1
screem | [] | 3
scrollkeeper | [] [] [] [] [] | 27
sed | [] [] [] [] [] | 30
sharutils | [] [] [] [] [] | 22
shishi | [] | 3
skencil | [] [] | 7
solfege | [] [] [] [] | 16
solfege-manual | [] | 8
soundtracker | [] [] [] | 9
sp | [] | 3
sysstat | [] [] | 15
tar | [] [] [] [] [] [] | 23
texinfo | [] [] [] [] [] | 17
tin | | 4
unicode-han-tra... | | 0
unicode-transla... | | 2
util-linux-ng | [] [] [] [] | 20
vice | () () | 1
vmm | [] | 4
vorbis-tools | [] | 6
wastesedge | | 2
wdiff | [] [] | 7
wget | [] [] [] [] [] | 26
wyslij-po | [] [] | 8
xchat | [] [] [] [] [] [] | 36
xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | 63
xkeyboard-config | [] [] [] | 22
+---------------------------------------------------+
85 teams sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW
178 domains 119 1 3 3 0 10 65 51 155 17 98 7 41 2618
Some counters in the preceding matrix are higher than the number of
visible blocks let us expect. This is because a few extra PO files are
used for implementing regional variants of languages, or language
dialects.
For a PO file in the matrix above to be effective, the package to
which it applies should also have been internationalized and
distributed as such by its maintainer. There might be an observable
lag between the mere existence a PO file and its wide availability in a
distribution.
If June 2010 seems to be old, you may fetch a more recent copy of
this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date
matrix with full percentage details can be found at
`http://translationproject.org/extra/matrix.html'.
1.5 Using `gettext' in new packages
===================================
If you are writing a freely available program and want to
internationalize it you are welcome to use GNU `gettext' in your
package. Of course you have to respect the GNU Library General Public
License which covers the use of the GNU `gettext' library. This means
in particular that even non-free programs can use `libintl' as a shared
library, whereas only free software can use `libintl' as a static
library or use modified versions of `libintl'.
Once the sources are changed appropriately and the setup can handle
the use of `gettext' the only thing missing are the translations. The
Free Translation Project is also available for packages which are not
developed inside the GNU project. Therefore the information given above
applies also for every other Free Software Project. Contact
`coordinator@translationproject.org' to make the `.pot' files available
to the translation teams.
================================================
FILE: AUTHORS
================================================
Little IO <littleioaudio@gmail.com>
Matt Tytel <matthewtytel@gmail.com>
================================================
FILE: COPYING
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
================================================
FILE: ChangeLog
================================================
2014-03-15 Matt Tytel <matthewtytel@gmail.com>
* patches/*: Edited levels of all patches.
* configure.ac: Bumped version to 1.4
* src/cursynth_gui.cpp: Updated website to gnu.org/software/cursynth
2014-01-22 gettextize <bug-gnu-gettext@gnu.org>
* Makefile.am (ACLOCAL_AMFLAGS): New variable.
(EXTRA_DIST): Add config.rpath, m4/ChangeLog.
* configure.ac (AC_CONFIG_FILES): Add po/Makefile.in.
(AM_GNU_GETTEXT_VERSION): Bump to 0.18.3.
Copyright 2013-2015 Matt Tytel
Copying and distribution of this file, with or without modification, are
promitted provided the copyright notice and this notice are preserved.
================================================
FILE: INSTALL
================================================
Installation Instructions
*************************
Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
Inc.
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved. This file is offered as-is,
without warranty of any kind.
Basic Installation
==================
Briefly, these shell commands should configure, build and install
this package:
$ ./configure
$ make
$ sudo make install
The following more-detailed instructions are generic; see the `README'
file for instructions specific to this package. Some packages provide
this `INSTALL' file but do not implement all of the features documented
below. The lack of an optional feature in a given package is not
necessarily a bug. More recommendations for GNU packages can be found
in *note Makefile Conventions: (standards)Makefile Conventions.
The `configure' shell script attempts to guess correct values for
various system-dependent variables used during compilation. It uses
those values to create a `Makefile' in each directory of the package.
It may also create one or more `.h' files containing system-dependent
definitions. Finally, it creates a shell script `config.status' that
you can run in the future to recreate the current configuration, and a
file `config.log' containing compiler output (useful mainly for
debugging `configure').
It can also use an optional file (typically called `config.cache'
and enabled with `--cache-file=config.cache' or simply `-C') that saves
the results of its tests to speed up reconfiguring. Caching is
disabled by default to prevent problems with accidental use of stale
cache files.
If you need to do unusual things to compile the package, please try
to figure out how `configure' could check whether to do them, and mail
diffs or instructions to the address given in the `README' so they can
be considered for the next release. If you are using the cache, and at
some point `config.cache' contains results you don't want to keep, you
may remove or edit it.
The file `configure.ac' (or `configure.in') is used to create
`configure' by a program called `autoconf'. You need `configure.ac' if
you want to change it or regenerate `configure' using a newer version
of `autoconf'.
The simplest way to compile this package is:
1. `cd' to the directory containing the package's source code and type
`./configure' to configure the package for your system.
Running `configure' might take a while. While running, it prints
some messages telling which features it is checking for.
2. Type `make' to compile the package.
3. Optionally, type `make check' to run any self-tests that come with
the package, generally using the just-built uninstalled binaries.
4. Type `make install' to install the programs and any data files and
documentation. When installing into a prefix owned by root, it is
recommended that the package be configured and built as a regular
user, and only the `make install' phase executed with root
privileges.
5. Optionally, type `make installcheck' to repeat any self-tests, but
this time using the binaries in their final installed location.
This target does not install anything. Running this target as a
regular user, particularly if the prior `make install' required
root privileges, verifies that the installation completed
correctly.
6. You can remove the program binaries and object files from the
source code directory by typing `make clean'. To also remove the
files that `configure' created (so you can compile the package for
a different kind of computer), type `make distclean'. There is
also a `make maintainer-clean' target, but that is intended mainly
for the package's developers. If you use it, you may have to get
all sorts of other programs in order to regenerate files that came
with the distribution.
7. Often, you can also type `make uninstall' to remove the installed
files again. In practice, not all packages have tested that
uninstallation works correctly, even though it is required by the
GNU Coding Standards.
8. Some packages, particularly those that use Automake, provide `make
distcheck', which can by used by developers to test that all other
targets like `make install' and `make uninstall' work correctly.
This target is generally not run by end users.
Compilers and Options
=====================
Some systems require unusual options for compilation or linking that
the `configure' script does not know about. Run `./configure --help'
for details on some of the pertinent environment variables.
You can give `configure' initial values for configuration parameters
by setting variables in the command line or in the environment. Here
is an example:
./configure CC=c99 CFLAGS=-g LIBS=-lposix
*Note Defining Variables::, for more details.
Compiling For Multiple Architectures
====================================
You can compile the package for more than one kind of computer at the
same time, by placing the object files for each architecture in their
own directory. To do this, you can use GNU `make'. `cd' to the
directory where you want the object files and executables to go and run
the `configure' script. `configure' automatically checks for the
source code in the directory that `configure' is in and in `..'. This
is known as a "VPATH" build.
With a non-GNU `make', it is safer to compile the package for one
architecture at a time in the source code directory. After you have
installed the package for one architecture, use `make distclean' before
reconfiguring for another architecture.
On MacOS X 10.5 and later systems, you can create libraries and
executables that work on multiple system types--known as "fat" or
"universal" binaries--by specifying multiple `-arch' options to the
compiler but only a single `-arch' option to the preprocessor. Like
this:
./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
CPP="gcc -E" CXXCPP="g++ -E"
This is not guaranteed to produce working output in all cases, you
may have to build one architecture at a time and combine the results
using the `lipo' tool if you have problems.
Installation Names
==================
By default, `make install' installs the package's commands under
`/usr/local/bin', include files under `/usr/local/include', etc. You
can specify an installation prefix other than `/usr/local' by giving
`configure' the option `--prefix=PREFIX', where PREFIX must be an
absolute file name.
You can specify separate installation prefixes for
architecture-specific files and architecture-independent files. If you
pass the option `--exec-prefix=PREFIX' to `configure', the package uses
PREFIX as the prefix for installing programs and libraries.
Documentation and other data files still use the regular prefix.
In addition, if you use an unusual directory layout you can give
options like `--bindir=DIR' to specify different values for particular
kinds of files. Run `configure --help' for a list of the directories
you can set and what kinds of files go in them. In general, the
default for these options is expressed in terms of `${prefix}', so that
specifying just `--prefix' will affect all of the other directory
specifications that were not explicitly provided.
The most portable way to affect installation locations is to pass the
correct locations to `configure'; however, many packages provide one or
both of the following shortcuts of passing variable assignments to the
`make install' command line to change installation locations without
having to reconfigure or recompile.
The first method involves providing an override variable for each
affected directory. For example, `make install
prefix=/alternate/directory' will choose an alternate location for all
directory configuration variables that were expressed in terms of
`${prefix}'. Any directories that were specified during `configure',
but not in terms of `${prefix}', must each be overridden at install
time for the entire installation to be relocated. The approach of
makefile variable overrides for each directory variable is required by
the GNU Coding Standards, and ideally causes no recompilation.
However, some platforms have known limitations with the semantics of
shared libraries that end up requiring recompilation when using this
method, particularly noticeable in packages that use GNU Libtool.
The second method involves providing the `DESTDIR' variable. For
example, `make install DESTDIR=/alternate/directory' will prepend
`/alternate/directory' before all installation names. The approach of
`DESTDIR' overrides is not required by the GNU Coding Standards, and
does not work on platforms that have drive letters. On the other hand,
it does better at avoiding recompilation issues, and works well even
when some directory options were not specified in terms of `${prefix}'
at `configure' time.
Optional Features
=================
If the package supports it, you can cause programs to be installed
with an extra prefix or suffix on their names by giving `configure' the
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
Some packages pay attention to `--enable-FEATURE' options to
`configure', where FEATURE indicates an optional part of the package.
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
is something like `gnu-as' or `x' (for the X Window System). The
`README' should mention any `--enable-' and `--with-' options that the
package recognizes.
For packages that use the X Window System, `configure' can usually
find the X include and library files automatically, but if it doesn't,
you can use the `configure' options `--x-includes=DIR' and
`--x-libraries=DIR' to specify their locations.
Some packages offer the ability to configure how verbose the
execution of `make' will be. For these packages, running `./configure
--enable-silent-rules' sets the default to minimal output, which can be
overridden with `make V=1'; while running `./configure
--disable-silent-rules' sets the default to verbose, which can be
overridden with `make V=0'.
Particular systems
==================
On HP-UX, the default C compiler is not ANSI C compatible. If GNU
CC is not installed, it is recommended to use the following options in
order to use an ANSI C compiler:
./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
and if that doesn't work, install pre-built binaries of GCC for HP-UX.
HP-UX `make' updates targets which have the same time stamps as
their prerequisites, which makes it generally unusable when shipped
generated files such as `configure' are involved. Use GNU `make'
instead.
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
parse its `<wchar.h>' header file. The option `-nodtk' can be used as
a workaround. If GNU CC is not installed, it is therefore recommended
to try
./configure CC="cc"
and if that doesn't work, try
./configure CC="cc -nodtk"
On Solaris, don't put `/usr/ucb' early in your `PATH'. This
directory contains several dysfunctional programs; working variants of
these programs are available in `/usr/bin'. So, if you need `/usr/ucb'
in your `PATH', put it _after_ `/usr/bin'.
On Haiku, software installed for all users goes in `/boot/common',
not `/usr/local'. It is recommended to use the following options:
./configure --prefix=/boot/common
Specifying the System Type
==========================
There may be some features `configure' cannot figure out
automatically, but needs to determine by the type of machine the package
will run on. Usually, assuming the package is built to be run on the
_same_ architectures, `configure' can figure that out, but if it prints
a message saying it cannot guess the machine type, give it the
`--build=TYPE' option. TYPE can either be a short name for the system
type, such as `sun4', or a canonical name which has the form:
CPU-COMPANY-SYSTEM
where SYSTEM can have one of these forms:
OS
KERNEL-OS
See the file `config.sub' for the possible values of each field. If
`config.sub' isn't included in this package, then this package doesn't
need to know the machine type.
If you are _building_ compiler tools for cross-compiling, you should
use the option `--target=TYPE' to select the type of system they will
produce code for.
If you want to _use_ a cross compiler, that generates code for a
platform different from the build platform, you should specify the
"host" platform (i.e., that on which the generated programs will
eventually be run) with `--host=TYPE'.
Sharing Defaults
================
If you want to set default values for `configure' scripts to share,
you can create a site shell script called `config.site' that gives
default values for variables like `CC', `cache_file', and `prefix'.
`configure' looks for `PREFIX/share/config.site' if it exists, then
`PREFIX/etc/config.site' if it exists. Or, you can set the
`CONFIG_SITE' environment variable to the location of the site script.
A warning: not all `configure' scripts look for a site script.
Defining Variables
==================
Variables not defined in a site shell script can be set in the
environment passed to `configure'. However, some packages may run
configure again during the build, and the customized values of these
variables may be lost. In order to avoid this problem, you should set
them in the `configure' command line, using `VAR=value'. For example:
./configure CC=/usr/local2/bin/gcc
causes the specified `gcc' to be used as the C compiler (unless it is
overridden in the site shell script).
Unfortunately, this technique does not work for `CONFIG_SHELL' due to
an Autoconf limitation. Until the limitation is lifted, you can use
this workaround:
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
`configure' Invocation
======================
`configure' recognizes the following options to control how it
operates.
`--help'
`-h'
Print a summary of all of the options to `configure', and exit.
`--help=short'
`--help=recursive'
Print a summary of the options unique to this package's
`configure', and exit. The `short' variant lists options used
only in the top level, while the `recursive' variant lists options
also present in any nested packages.
`--version'
`-V'
Print the version of Autoconf used to generate the `configure'
script, and exit.
`--cache-file=FILE'
Enable the cache: use and save the results of the tests in FILE,
traditionally `config.cache'. FILE defaults to `/dev/null' to
disable caching.
`--config-cache'
`-C'
Alias for `--cache-file=config.cache'.
`--quiet'
`--silent'
`-q'
Do not print messages saying which checks are being made. To
suppress all normal output, redirect it to `/dev/null' (any error
messages will still be shown).
`--srcdir=DIR'
Look for the package's source code in directory DIR. Usually
`configure' can determine that directory automatically.
`--prefix=DIR'
Use DIR as the installation prefix. *note Installation Names::
for more details, including other options available for fine-tuning
the installation locations.
`--no-create'
`-n'
Run the configure checks, but stop before creating any output
files.
`configure' also accepts some other, not widely useful, options. Run
`configure --help' for more details.
================================================
FILE: Makefile.am
================================================
SUBDIRS = cJSON rtaudio rtmidi mopo src po doc
EXTRA_DIST = config.rpath patches
patchesdir = $(pkgdatadir)/patches
patches_DATA = $(top_srcdir)/patches/*.mite
ACLOCAL_AMFLAGS = -I m4
LDFLAGS += -L/usr/local/opt/gettext/lib
CPPFLAGS += -I/usr/local/opt/gettext/include
================================================
FILE: NEWS
================================================
No news is good news.
================================================
FILE: README
================================================
cursynth - a GNU program
------------
cursynth is a polyphonic, MIDI enabled, subtractive synth that runs in your
terminal with an ascii interface.
cursynth will connect to all MIDI devices and send output to the default audio
device on your system.
### Building
If you just want to build Cursynth, check out [ftp://ftp.gnu.org/gnu/cursynth]
for latest source releases that don't require as much to build.
If you want to develop Cursynth, this source is the right place.
Run these commands to build the project from source:
$ autoreconf -i
$ ./configure
$ make
And then if you want to install, next run:
$ sudo make install
### Usage
cursynth [--buffer-size OR -b preferred-buffer-size]
[--sample-rate OR -s preferred-sample-rate]
[--version OR -V]
### Controls
* awsedftgyhujkolp;' - a playable keyboard (no key up events)
* \`1234567890 - a slider for the current selected control
* up/down - previous/next control
* left/right - decrement/increment control
* F1 (or [shift] + H) - help/controls
* [shift] + L - browse/load patches
* [shift] + S - save patch
* m - arm midi learn
* c - erase midi learn
### Requirements:
* OS: Mac OSX or GNU/Linux
* Terminal: a color enabled terminal with minimum 120x44 ascii characters
* If you want key up events, you have to use a MIDI keyboard
### TODO:
* Make a LV2 plugin version of cursynth
* More modulation sources and destinations
* Routable Envelopes
* On startup select audio output device
* On startup select MIDI input device
* Lot's more...
Questions? Feature requests? Bugs? email matthewtytel@gmail.com
Copyright 2013-2015 Matt Tytel <matthewtytel@gmail.com>
================================================
FILE: cJSON/LICENSE
================================================
Copyright (c) 2009 Dave Gamble
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
================================================
FILE: cJSON/Makefile.am
================================================
noinst_LIBRARIES = libcJSON.a
libcJSON_a_SOURCES = cJSON.c cJSON.h
================================================
FILE: cJSON/cJSON.c
================================================
/*
Copyright (c) 2009 Dave Gamble
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
/* cJSON */
/* JSON parser in C. */
#include <string.h>
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <float.h>
#include <limits.h>
#include <ctype.h>
#include "cJSON.h"
static const char *ep;
const char *cJSON_GetErrorPtr(void) {return ep;}
static int cJSON_strcasecmp(const char *s1,const char *s2)
{
if (!s1) return (s1==s2)?0:1;if (!s2) return 1;
for(; tolower(*s1) == tolower(*s2); ++s1, ++s2) if(*s1 == 0) return 0;
return tolower(*(const unsigned char *)s1) - tolower(*(const unsigned char *)s2);
}
static void *(*cJSON_malloc)(size_t sz) = malloc;
static void (*cJSON_free)(void *ptr) = free;
static char* cJSON_strdup(const char* str)
{
size_t len;
char* copy;
len = strlen(str) + 1;
if (!(copy = (char*)cJSON_malloc(len))) return 0;
memcpy(copy,str,len);
return copy;
}
void cJSON_InitHooks(cJSON_Hooks* hooks)
{
if (!hooks) { /* Reset hooks */
cJSON_malloc = malloc;
cJSON_free = free;
return;
}
cJSON_malloc = (hooks->malloc_fn)?hooks->malloc_fn:malloc;
cJSON_free = (hooks->free_fn)?hooks->free_fn:free;
}
/* Internal constructor. */
static cJSON *cJSON_New_Item(void)
{
cJSON* node = (cJSON*)cJSON_malloc(sizeof(cJSON));
if (node) memset(node,0,sizeof(cJSON));
return node;
}
/* Delete a cJSON structure. */
void cJSON_Delete(cJSON *c)
{
cJSON *next;
while (c)
{
next=c->next;
if (!(c->type&cJSON_IsReference) && c->child) cJSON_Delete(c->child);
if (!(c->type&cJSON_IsReference) && c->valuestring) cJSON_free(c->valuestring);
if (c->string) cJSON_free(c->string);
cJSON_free(c);
c=next;
}
}
/* Parse the input text to generate a number, and populate the result into item. */
static const char *parse_number(cJSON *item,const char *num)
{
double n=0,sign=1,scale=0;int subscale=0,signsubscale=1;
if (*num=='-') sign=-1,num++; /* Has sign? */
if (*num=='0') num++; /* is zero */
if (*num>='1' && *num<='9') do n=(n*10.0)+(*num++ -'0'); while (*num>='0' && *num<='9'); /* Number? */
if (*num=='.' && num[1]>='0' && num[1]<='9') {num++; do n=(n*10.0)+(*num++ -'0'),scale--; while (*num>='0' && *num<='9');} /* Fractional part? */
if (*num=='e' || *num=='E') /* Exponent? */
{ num++;if (*num=='+') num++; else if (*num=='-') signsubscale=-1,num++; /* With sign? */
while (*num>='0' && *num<='9') subscale=(subscale*10)+(*num++ - '0'); /* Number? */
}
n=sign*n*pow(10.0,(scale+subscale*signsubscale)); /* number = +/- number.fraction * 10^+/- exponent */
item->valuedouble=n;
item->valueint=(int)n;
item->type=cJSON_Number;
return num;
}
/* Render the number nicely from the given item into a string. */
static char *print_number(cJSON *item)
{
char *str;
double d=item->valuedouble;
if (fabs(((double)item->valueint)-d)<=DBL_EPSILON && d<=INT_MAX && d>=INT_MIN)
{
str=(char*)cJSON_malloc(21); /* 2^64+1 can be represented in 21 chars. */
if (str) sprintf(str,"%d",item->valueint);
}
else
{
str=(char*)cJSON_malloc(64); /* This is a nice tradeoff. */
if (str)
{
if (fabs(floor(d)-d)<=DBL_EPSILON && fabs(d)<1.0e60)sprintf(str,"%.0f",d);
else if (fabs(d)<1.0e-6 || fabs(d)>1.0e9) sprintf(str,"%e",d);
else sprintf(str,"%f",d);
}
}
return str;
}
static unsigned parse_hex4(const char *str)
{
unsigned h=0;
if (*str>='0' && *str<='9') h+=(*str)-'0'; else if (*str>='A' && *str<='F') h+=10+(*str)-'A'; else if (*str>='a' && *str<='f') h+=10+(*str)-'a'; else return 0;
h=(h&15)<<4;str++;
if (*str>='0' && *str<='9') h+=(*str)-'0'; else if (*str>='A' && *str<='F') h+=10+(*str)-'A'; else if (*str>='a' && *str<='f') h+=10+(*str)-'a'; else return 0;
h=(h&15)<<4;str++;
if (*str>='0' && *str<='9') h+=(*str)-'0'; else if (*str>='A' && *str<='F') h+=10+(*str)-'A'; else if (*str>='a' && *str<='f') h+=10+(*str)-'a'; else return 0;
h=(h&15)<<4;str++;
if (*str>='0' && *str<='9') h+=(*str)-'0'; else if (*str>='A' && *str<='F') h+=10+(*str)-'A'; else if (*str>='a' && *str<='f') h+=10+(*str)-'a'; else return 0;
return h;
}
/* Parse the input text into an unescaped cstring, and populate item. */
static const unsigned char firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
static const char *parse_string(cJSON *item,const char *str)
{
const char *ptr=str+1;char *ptr2;char *out;int len=0;unsigned uc,uc2;
if (*str!='\"') {ep=str;return 0;} /* not a string! */
while (*ptr!='\"' && *ptr && ++len) if (*ptr++ == '\\') ptr++; /* Skip escaped quotes. */
out=(char*)cJSON_malloc(len+1); /* This is how long we need for the string, roughly. */
if (!out) return 0;
ptr=str+1;ptr2=out;
while (*ptr!='\"' && *ptr)
{
if (*ptr!='\\') *ptr2++=*ptr++;
else
{
ptr++;
switch (*ptr)
{
case 'b': *ptr2++='\b'; break;
case 'f': *ptr2++='\f'; break;
case 'n': *ptr2++='\n'; break;
case 'r': *ptr2++='\r'; break;
case 't': *ptr2++='\t'; break;
case 'u': /* transcode utf16 to utf8. */
uc=parse_hex4(ptr+1);ptr+=4; /* get the unicode char. */
if ((uc>=0xDC00 && uc<=0xDFFF) || uc==0) break; /* check for invalid. */
if (uc>=0xD800 && uc<=0xDBFF) /* UTF16 surrogate pairs. */
{
if (ptr[1]!='\\' || ptr[2]!='u') break; /* missing second-half of surrogate. */
uc2=parse_hex4(ptr+3);ptr+=6;
if (uc2<0xDC00 || uc2>0xDFFF) break; /* invalid second-half of surrogate. */
uc=0x10000 + (((uc&0x3FF)<<10) | (uc2&0x3FF));
}
len=4;if (uc<0x80) len=1;else if (uc<0x800) len=2;else if (uc<0x10000) len=3; ptr2+=len;
switch (len) {
case 4: *--ptr2 =((uc | 0x80) & 0xBF); uc >>= 6;
case 3: *--ptr2 =((uc | 0x80) & 0xBF); uc >>= 6;
case 2: *--ptr2 =((uc | 0x80) & 0xBF); uc >>= 6;
case 1: *--ptr2 =(uc | firstByteMark[len]);
}
ptr2+=len;
break;
default: *ptr2++=*ptr; break;
}
ptr++;
}
}
*ptr2=0;
if (*ptr=='\"') ptr++;
item->valuestring=out;
item->type=cJSON_String;
return ptr;
}
/* Render the cstring provided to an escaped version that can be printed. */
static char *print_string_ptr(const char *str)
{
const char *ptr;char *ptr2,*out;int len=0;unsigned char token;
if (!str) return cJSON_strdup("");
ptr=str;while ((token=*ptr) && ++len) {if (strchr("\"\\\b\f\n\r\t",token)) len++; else if (token<32) len+=5;ptr++;}
out=(char*)cJSON_malloc(len+3);
if (!out) return 0;
ptr2=out;ptr=str;
*ptr2++='\"';
while (*ptr)
{
if ((unsigned char)*ptr>31 && *ptr!='\"' && *ptr!='\\') *ptr2++=*ptr++;
else
{
*ptr2++='\\';
switch (token=*ptr++)
{
case '\\': *ptr2++='\\'; break;
case '\"': *ptr2++='\"'; break;
case '\b': *ptr2++='b'; break;
case '\f': *ptr2++='f'; break;
case '\n': *ptr2++='n'; break;
case '\r': *ptr2++='r'; break;
case '\t': *ptr2++='t'; break;
default: sprintf(ptr2,"u%04x",token);ptr2+=5; break; /* escape and print */
}
}
}
*ptr2++='\"';*ptr2++=0;
return out;
}
/* Invote print_string_ptr (which is useful) on an item. */
static char *print_string(cJSON *item) {return print_string_ptr(item->valuestring);}
/* Predeclare these prototypes. */
static const char *parse_value(cJSON *item,const char *value);
static char *print_value(cJSON *item,int depth,int fmt);
static const char *parse_array(cJSON *item,const char *value);
static char *print_array(cJSON *item,int depth,int fmt);
static const char *parse_object(cJSON *item,const char *value);
static char *print_object(cJSON *item,int depth,int fmt);
/* Utility to jump whitespace and cr/lf */
static const char *skip(const char *in) {while (in && *in && (unsigned char)*in<=32) in++; return in;}
/* Parse an object - create a new root, and populate. */
cJSON *cJSON_ParseWithOpts(const char *value,const char **return_parse_end,int require_null_terminated)
{
const char *end=0;
cJSON *c=cJSON_New_Item();
ep=0;
if (!c) return 0; /* memory fail */
end=parse_value(c,skip(value));
if (!end) {cJSON_Delete(c);return 0;} /* parse failure. ep is set. */
/* if we require null-terminated JSON without appended garbage, skip and then check for a null terminator */
if (require_null_terminated) {end=skip(end);if (*end) {cJSON_Delete(c);ep=end;return 0;}}
if (return_parse_end) *return_parse_end=end;
return c;
}
/* Default options for cJSON_Parse */
cJSON *cJSON_Parse(const char *value) {return cJSON_ParseWithOpts(value,0,0);}
/* Render a cJSON item/entity/structure to text. */
char *cJSON_Print(cJSON *item) {return print_value(item,0,1);}
char *cJSON_PrintUnformatted(cJSON *item) {return print_value(item,0,0);}
/* Parser core - when encountering text, process appropriately. */
static const char *parse_value(cJSON *item,const char *value)
{
if (!value) return 0; /* Fail on null. */
if (!strncmp(value,"null",4)) { item->type=cJSON_NULL; return value+4; }
if (!strncmp(value,"false",5)) { item->type=cJSON_False; return value+5; }
if (!strncmp(value,"true",4)) { item->type=cJSON_True; item->valueint=1; return value+4; }
if (*value=='\"') { return parse_string(item,value); }
if (*value=='-' || (*value>='0' && *value<='9')) { return parse_number(item,value); }
if (*value=='[') { return parse_array(item,value); }
if (*value=='{') { return parse_object(item,value); }
ep=value;return 0; /* failure. */
}
/* Render a value to text. */
static char *print_value(cJSON *item,int depth,int fmt)
{
char *out=0;
if (!item) return 0;
switch ((item->type)&255)
{
case cJSON_NULL: out=cJSON_strdup("null"); break;
case cJSON_False: out=cJSON_strdup("false");break;
case cJSON_True: out=cJSON_strdup("true"); break;
case cJSON_Number: out=print_number(item);break;
case cJSON_String: out=print_string(item);break;
case cJSON_Array: out=print_array(item,depth,fmt);break;
case cJSON_Object: out=print_object(item,depth,fmt);break;
}
return out;
}
/* Build an array from input text. */
static const char *parse_array(cJSON *item,const char *value)
{
cJSON *child;
if (*value!='[') {ep=value;return 0;} /* not an array! */
item->type=cJSON_Array;
value=skip(value+1);
if (*value==']') return value+1; /* empty array. */
item->child=child=cJSON_New_Item();
if (!item->child) return 0; /* memory fail */
value=skip(parse_value(child,skip(value))); /* skip any spacing, get the value. */
if (!value) return 0;
while (*value==',')
{
cJSON *new_item;
if (!(new_item=cJSON_New_Item())) return 0; /* memory fail */
child->next=new_item;new_item->prev=child;child=new_item;
value=skip(parse_value(child,skip(value+1)));
if (!value) return 0; /* memory fail */
}
if (*value==']') return value+1; /* end of array */
ep=value;return 0; /* malformed. */
}
/* Render an array to text */
static char *print_array(cJSON *item,int depth,int fmt)
{
char **entries;
char *out=0,*ptr,*ret;int len=5;
cJSON *child=item->child;
int numentries=0,i=0,fail=0;
/* How many entries in the array? */
while (child) numentries++,child=child->next;
/* Explicitly handle numentries==0 */
if (!numentries)
{
out=(char*)cJSON_malloc(3);
if (out) strcpy(out,"[]");
return out;
}
/* Allocate an array to hold the values for each */
entries=(char**)cJSON_malloc(numentries*sizeof(char*));
if (!entries) return 0;
memset(entries,0,numentries*sizeof(char*));
/* Retrieve all the results: */
child=item->child;
while (child && !fail)
{
ret=print_value(child,depth+1,fmt);
entries[i++]=ret;
if (ret) len+=strlen(ret)+2+(fmt?1:0); else fail=1;
child=child->next;
}
/* If we didn't fail, try to malloc the output string */
if (!fail) out=(char*)cJSON_malloc(len);
/* If that fails, we fail. */
if (!out) fail=1;
/* Handle failure. */
if (fail)
{
for (i=0;i<numentries;i++) if (entries[i]) cJSON_free(entries[i]);
cJSON_free(entries);
return 0;
}
/* Compose the output array. */
*out='[';
ptr=out+1;*ptr=0;
for (i=0;i<numentries;i++)
{
strcpy(ptr,entries[i]);ptr+=strlen(entries[i]);
if (i!=numentries-1) {*ptr++=',';if(fmt)*ptr++=' ';*ptr=0;}
cJSON_free(entries[i]);
}
cJSON_free(entries);
*ptr++=']';*ptr++=0;
return out;
}
/* Build an object from the text. */
static const char *parse_object(cJSON *item,const char *value)
{
cJSON *child;
if (*value!='{') {ep=value;return 0;} /* not an object! */
item->type=cJSON_Object;
value=skip(value+1);
if (*value=='}') return value+1; /* empty array. */
item->child=child=cJSON_New_Item();
if (!item->child) return 0;
value=skip(parse_string(child,skip(value)));
if (!value) return 0;
child->string=child->valuestring;child->valuestring=0;
if (*value!=':') {ep=value;return 0;} /* fail! */
value=skip(parse_value(child,skip(value+1))); /* skip any spacing, get the value. */
if (!value) return 0;
while (*value==',')
{
cJSON *new_item;
if (!(new_item=cJSON_New_Item())) return 0; /* memory fail */
child->next=new_item;new_item->prev=child;child=new_item;
value=skip(parse_string(child,skip(value+1)));
if (!value) return 0;
child->string=child->valuestring;child->valuestring=0;
if (*value!=':') {ep=value;return 0;} /* fail! */
value=skip(parse_value(child,skip(value+1))); /* skip any spacing, get the value. */
if (!value) return 0;
}
if (*value=='}') return value+1; /* end of array */
ep=value;return 0; /* malformed. */
}
/* Render an object to text. */
static char *print_object(cJSON *item,int depth,int fmt)
{
char **entries=0,**names=0;
char *out=0,*ptr,*ret,*str;int len=7,i=0,j;
cJSON *child=item->child;
int numentries=0,fail=0;
/* Count the number of entries. */
while (child) numentries++,child=child->next;
/* Explicitly handle empty object case */
if (!numentries)
{
out=(char*)cJSON_malloc(fmt?depth+4:3);
if (!out) return 0;
ptr=out;*ptr++='{';
if (fmt) {*ptr++='\n';for (i=0;i<depth-1;i++) *ptr++='\t';}
*ptr++='}';*ptr++=0;
return out;
}
/* Allocate space for the names and the objects */
entries=(char**)cJSON_malloc(numentries*sizeof(char*));
if (!entries) return 0;
names=(char**)cJSON_malloc(numentries*sizeof(char*));
if (!names) {cJSON_free(entries);return 0;}
memset(entries,0,sizeof(char*)*numentries);
memset(names,0,sizeof(char*)*numentries);
/* Collect all the results into our arrays: */
child=item->child;depth++;if (fmt) len+=depth;
while (child)
{
names[i]=str=print_string_ptr(child->string);
entries[i++]=ret=print_value(child,depth,fmt);
if (str && ret) len+=strlen(ret)+strlen(str)+2+(fmt?2+depth:0); else fail=1;
child=child->next;
}
/* Try to allocate the output string */
if (!fail) out=(char*)cJSON_malloc(len);
if (!out) fail=1;
/* Handle failure */
if (fail)
{
for (i=0;i<numentries;i++) {if (names[i]) cJSON_free(names[i]);if (entries[i]) cJSON_free(entries[i]);}
cJSON_free(names);cJSON_free(entries);
return 0;
}
/* Compose the output: */
*out='{';ptr=out+1;if (fmt)*ptr++='\n';*ptr=0;
for (i=0;i<numentries;i++)
{
if (fmt) for (j=0;j<depth;j++) *ptr++=' ';
strcpy(ptr,names[i]);ptr+=strlen(names[i]);
*ptr++=':';if (fmt) *ptr++=' ';
strcpy(ptr,entries[i]);ptr+=strlen(entries[i]);
if (i!=numentries-1) *ptr++=',';
if (fmt) *ptr++='\n';*ptr=0;
cJSON_free(names[i]);cJSON_free(entries[i]);
}
cJSON_free(names);cJSON_free(entries);
if (fmt) for (i=0;i<depth-1;i++) *ptr++=' ';
*ptr++='}';*ptr++=0;
return out;
}
/* Get Array size/item / object item. */
int cJSON_GetArraySize(cJSON *array) {cJSON *c=array->child;int i=0;while(c)i++,c=c->next;return i;}
cJSON *cJSON_GetArrayItem(cJSON *array,int item) {cJSON *c=array->child; while (c && item>0) item--,c=c->next; return c;}
cJSON *cJSON_GetObjectItem(cJSON *object,const char *string) {cJSON *c=object->child; while (c && cJSON_strcasecmp(c->string,string)) c=c->next; return c;}
/* Utility for array list handling. */
static void suffix_object(cJSON *prev,cJSON *item) {prev->next=item;item->prev=prev;}
/* Utility for handling references. */
static cJSON *create_reference(cJSON *item) {cJSON *ref=cJSON_New_Item();if (!ref) return 0;memcpy(ref,item,sizeof(cJSON));ref->string=0;ref->type|=cJSON_IsReference;ref->next=ref->prev=0;return ref;}
/* Add item to array/object. */
void cJSON_AddItemToArray(cJSON *array, cJSON *item) {cJSON *c=array->child;if (!item) return; if (!c) {array->child=item;} else {while (c && c->next) c=c->next; suffix_object(c,item);}}
void cJSON_AddItemToObject(cJSON *object,const char *string,cJSON *item) {if (!item) return; if (item->string) cJSON_free(item->string);item->string=cJSON_strdup(string);cJSON_AddItemToArray(object,item);}
void cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) {cJSON_AddItemToArray(array,create_reference(item));}
void cJSON_AddItemReferenceToObject(cJSON *object,const char *string,cJSON *item) {cJSON_AddItemToObject(object,string,create_reference(item));}
cJSON *cJSON_DetachItemFromArray(cJSON *array,int which) {cJSON *c=array->child;while (c && which>0) c=c->next,which--;if (!c) return 0;
if (c->prev) c->prev->next=c->next;if (c->next) c->next->prev=c->prev;if (c==array->child) array->child=c->next;c->prev=c->next=0;return c;}
void cJSON_DeleteItemFromArray(cJSON *array,int which) {cJSON_Delete(cJSON_DetachItemFromArray(array,which));}
cJSON *cJSON_DetachItemFromObject(cJSON *object,const char *string) {int i=0;cJSON *c=object->child;while (c && cJSON_strcasecmp(c->string,string)) i++,c=c->next;if (c) return cJSON_DetachItemFromArray(object,i);return 0;}
void cJSON_DeleteItemFromObject(cJSON *object,const char *string) {cJSON_Delete(cJSON_DetachItemFromObject(object,string));}
/* Replace array/object items with new ones. */
void cJSON_ReplaceItemInArray(cJSON *array,int which,cJSON *newitem) {cJSON *c=array->child;while (c && which>0) c=c->next,which--;if (!c) return;
newitem->next=c->next;newitem->prev=c->prev;if (newitem->next) newitem->next->prev=newitem;
if (c==array->child) array->child=newitem; else newitem->prev->next=newitem;c->next=c->prev=0;cJSON_Delete(c);}
void cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem){int i=0;cJSON *c=object->child;while(c && cJSON_strcasecmp(c->string,string))i++,c=c->next;if(c){newitem->string=cJSON_strdup(string);cJSON_ReplaceItemInArray(object,i,newitem);}}
/* Create basic types: */
cJSON *cJSON_CreateNull(void) {cJSON *item=cJSON_New_Item();if(item)item->type=cJSON_NULL;return item;}
cJSON *cJSON_CreateTrue(void) {cJSON *item=cJSON_New_Item();if(item)item->type=cJSON_True;return item;}
cJSON *cJSON_CreateFalse(void) {cJSON *item=cJSON_New_Item();if(item)item->type=cJSON_False;return item;}
cJSON *cJSON_CreateBool(int b) {cJSON *item=cJSON_New_Item();if(item)item->type=b?cJSON_True:cJSON_False;return item;}
cJSON *cJSON_CreateNumber(double num) {cJSON *item=cJSON_New_Item();if(item){item->type=cJSON_Number;item->valuedouble=num;item->valueint=(int)num;}return item;}
cJSON *cJSON_CreateString(const char *string) {cJSON *item=cJSON_New_Item();if(item){item->type=cJSON_String;item->valuestring=cJSON_strdup(string);}return item;}
cJSON *cJSON_CreateArray(void) {cJSON *item=cJSON_New_Item();if(item)item->type=cJSON_Array;return item;}
cJSON *cJSON_CreateObject(void) {cJSON *item=cJSON_New_Item();if(item)item->type=cJSON_Object;return item;}
/* Create Arrays: */
cJSON *cJSON_CreateIntArray(const int *numbers,int count) {int i;cJSON *n=0,*p=0,*a=cJSON_CreateArray();for(i=0;a && i<count;i++){n=cJSON_CreateNumber(numbers[i]);if(!i)a->child=n;else suffix_object(p,n);p=n;}return a;}
cJSON *cJSON_CreateFloatArray(const float *numbers,int count) {int i;cJSON *n=0,*p=0,*a=cJSON_CreateArray();for(i=0;a && i<count;i++){n=cJSON_CreateNumber(numbers[i]);if(!i)a->child=n;else suffix_object(p,n);p=n;}return a;}
cJSON *cJSON_CreateDoubleArray(const double *numbers,int count) {int i;cJSON *n=0,*p=0,*a=cJSON_CreateArray();for(i=0;a && i<count;i++){n=cJSON_CreateNumber(numbers[i]);if(!i)a->child=n;else suffix_object(p,n);p=n;}return a;}
cJSON *cJSON_CreateStringArray(const char **strings,int count) {int i;cJSON *n=0,*p=0,*a=cJSON_CreateArray();for(i=0;a && i<count;i++){n=cJSON_CreateString(strings[i]);if(!i)a->child=n;else suffix_object(p,n);p=n;}return a;}
/* Duplication */
cJSON *cJSON_Duplicate(cJSON *item,int recurse)
{
cJSON *newitem,*cptr,*nptr=0,*newchild;
/* Bail on bad ptr */
if (!item) return 0;
/* Create new item */
newitem=cJSON_New_Item();
if (!newitem) return 0;
/* Copy over all vars */
newitem->type=item->type&(~cJSON_IsReference),newitem->valueint=item->valueint,newitem->valuedouble=item->valuedouble;
if (item->valuestring) {newitem->valuestring=cJSON_strdup(item->valuestring); if (!newitem->valuestring) {cJSON_Delete(newitem);return 0;}}
if (item->string) {newitem->string=cJSON_strdup(item->string); if (!newitem->string) {cJSON_Delete(newitem);return 0;}}
/* If non-recursive, then we're done! */
if (!recurse) return newitem;
/* Walk the ->next chain for the child. */
cptr=item->child;
while (cptr)
{
newchild=cJSON_Duplicate(cptr,1); /* Duplicate (with recurse) each item in the ->next chain */
if (!newchild) {cJSON_Delete(newitem);return 0;}
if (nptr) {nptr->next=newchild,newchild->prev=nptr;nptr=newchild;} /* If newitem->child already set, then crosswire ->prev and ->next and move on */
else {newitem->child=newchild;nptr=newchild;} /* Set newitem->child and move to it */
cptr=cptr->next;
}
return newitem;
}
void cJSON_Minify(char *json)
{
char *into=json;
while (*json)
{
if (*json==' ') json++;
else if (*json=='\t') json++; // Whitespace characters.
else if (*json=='\r') json++;
else if (*json=='\n') json++;
else if (*json=='/' && json[1]=='/') while (*json && *json!='\n') json++; // double-slash comments, to end of line.
else if (*json=='/' && json[1]=='*') {while (*json && !(*json=='*' && json[1]=='/')) json++;json+=2;} // multiline comments.
else if (*json=='\"'){*into++=*json++;while (*json && *json!='\"'){if (*json=='\\') *into++=*json++;*into++=*json++;}*into++=*json++;} // string literals, which are \" sensitive.
else *into++=*json++; // All other characters.
}
*into=0; // and null-terminate.
}
================================================
FILE: cJSON/cJSON.h
================================================
/*
Copyright (c) 2009 Dave Gamble
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#ifndef cJSON__h
#define cJSON__h
#ifdef __cplusplus
extern "C"
{
#endif
/* cJSON Types: */
#define cJSON_False 0
#define cJSON_True 1
#define cJSON_NULL 2
#define cJSON_Number 3
#define cJSON_String 4
#define cJSON_Array 5
#define cJSON_Object 6
#define cJSON_IsReference 256
/* The cJSON structure: */
typedef struct cJSON {
struct cJSON *next,*prev; /* next/prev allow you to walk array/object chains. Alternatively, use GetArraySize/GetArrayItem/GetObjectItem */
struct cJSON *child; /* An array or object item will have a child pointer pointing to a chain of the items in the array/object. */
int type; /* The type of the item, as above. */
char *valuestring; /* The item's string, if type==cJSON_String */
int valueint; /* The item's number, if type==cJSON_Number */
double valuedouble; /* The item's number, if type==cJSON_Number */
char *string; /* The item's name string, if this item is the child of, or is in the list of subitems of an object. */
} cJSON;
typedef struct cJSON_Hooks {
void *(*malloc_fn)(size_t sz);
void (*free_fn)(void *ptr);
} cJSON_Hooks;
/* Supply malloc, realloc and free functions to cJSON */
extern void cJSON_InitHooks(cJSON_Hooks* hooks);
/* Supply a block of JSON, and this returns a cJSON object you can interrogate. Call cJSON_Delete when finished. */
extern cJSON *cJSON_Parse(const char *value);
/* Render a cJSON entity to text for transfer/storage. Free the char* when finished. */
extern char *cJSON_Print(cJSON *item);
/* Render a cJSON entity to text for transfer/storage without any formatting. Free the char* when finished. */
extern char *cJSON_PrintUnformatted(cJSON *item);
/* Delete a cJSON entity and all subentities. */
extern void cJSON_Delete(cJSON *c);
/* Returns the number of items in an array (or object). */
extern int cJSON_GetArraySize(cJSON *array);
/* Retrieve item number "item" from array "array". Returns NULL if unsuccessful. */
extern cJSON *cJSON_GetArrayItem(cJSON *array,int item);
/* Get item "string" from object. Case insensitive. */
extern cJSON *cJSON_GetObjectItem(cJSON *object,const char *string);
/* For analysing failed parses. This returns a pointer to the parse error. You'll probably need to look a few chars back to make sense of it. Defined when cJSON_Parse() returns 0. 0 when cJSON_Parse() succeeds. */
extern const char *cJSON_GetErrorPtr(void);
/* These calls create a cJSON item of the appropriate type. */
extern cJSON *cJSON_CreateNull(void);
extern cJSON *cJSON_CreateTrue(void);
extern cJSON *cJSON_CreateFalse(void);
extern cJSON *cJSON_CreateBool(int b);
extern cJSON *cJSON_CreateNumber(double num);
extern cJSON *cJSON_CreateString(const char *string);
extern cJSON *cJSON_CreateArray(void);
extern cJSON *cJSON_CreateObject(void);
/* These utilities create an Array of count items. */
extern cJSON *cJSON_CreateIntArray(const int *numbers,int count);
extern cJSON *cJSON_CreateFloatArray(const float *numbers,int count);
extern cJSON *cJSON_CreateDoubleArray(const double *numbers,int count);
extern cJSON *cJSON_CreateStringArray(const char **strings,int count);
/* Append item to the specified array/object. */
extern void cJSON_AddItemToArray(cJSON *array, cJSON *item);
extern void cJSON_AddItemToObject(cJSON *object,const char *string,cJSON *item);
/* Append reference to item to the specified array/object. Use this when you want to add an existing cJSON to a new cJSON, but don't want to corrupt your existing cJSON. */
extern void cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item);
extern void cJSON_AddItemReferenceToObject(cJSON *object,const char *string,cJSON *item);
/* Remove/Detatch items from Arrays/Objects. */
extern cJSON *cJSON_DetachItemFromArray(cJSON *array,int which);
extern void cJSON_DeleteItemFromArray(cJSON *array,int which);
extern cJSON *cJSON_DetachItemFromObject(cJSON *object,const char *string);
extern void cJSON_DeleteItemFromObject(cJSON *object,const char *string);
/* Update array items. */
extern void cJSON_ReplaceItemInArray(cJSON *array,int which,cJSON *newitem);
extern void cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem);
/* Duplicate a cJSON item */
extern cJSON *cJSON_Duplicate(cJSON *item,int recurse);
/* Duplicate will create a new, identical cJSON item to the one you pass, in new memory that will
need to be released. With recurse!=0, it will duplicate any children connected to the item.
The item->next and ->prev pointers are always zero on return from Duplicate. */
/* ParseWithOpts allows you to require (and check) that the JSON is null terminated, and to retrieve the pointer to the final byte parsed. */
extern cJSON *cJSON_ParseWithOpts(const char *value,const char **return_parse_end,int require_null_terminated);
extern void cJSON_Minify(char *json);
/* Macros for creating things quickly. */
#define cJSON_AddNullToObject(object,name) cJSON_AddItemToObject(object, name, cJSON_CreateNull())
#define cJSON_AddTrueToObject(object,name) cJSON_AddItemToObject(object, name, cJSON_CreateTrue())
#define cJSON_AddFalseToObject(object,name) cJSON_AddItemToObject(object, name, cJSON_CreateFalse())
#define cJSON_AddBoolToObject(object,name,b) cJSON_AddItemToObject(object, name, cJSON_CreateBool(b))
#define cJSON_AddNumberToObject(object,name,n) cJSON_AddItemToObject(object, name, cJSON_CreateNumber(n))
#define cJSON_AddStringToObject(object,name,s) cJSON_AddItemToObject(object, name, cJSON_CreateString(s))
/* When assigning an integer value, it needs to be propagated to valuedouble too. */
#define cJSON_SetIntValue(object,val) ((object)?(object)->valueint=(object)->valuedouble=(val):(val))
#ifdef __cplusplus
}
#endif
#endif
================================================
FILE: configure.ac
================================================
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.68])
AC_INIT([cursynth], [1.6], [littleioaudio@gmail.com])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([src/cursynth.cpp])
AC_CONFIG_HEADERS([config.h])
# Checks for programs.
AC_PROG_CXX([c++ g++ cxx])
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_RANLIB
AM_PROG_CC_C_O
AM_PROG_AR
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.18.3])
# Checks for libraries.
AC_CHECK_LIB([intl], [gettext])
AC_CHECK_LIB([ncurses], [curs_set])
AC_CHECK_LIB([pthread], [pthread_create])
# Checks for header files.
AC_CHECK_HEADERS([fcntl.h float.h libintl.h limits.h locale.h math.h ncurses.h stddef.h stdlib.h string.h strings.h sys/ioctl.h sys/time.h unistd.h])
# Get flags for rtaudio and rtmidi.
AC_CANONICAL_HOST
AC_MSG_CHECKING(for audio API)
case $host in
*-*-netbsd*)
AC_MSG_RESULT(using OSS)
api="$api -D__LINUX_OSS__"
LIBS="$LIBS -lossaudio"
AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(cursynth requires the pthread library!))
;;
*-*-linux*)
AC_ARG_WITH(jack, [ --with-jack = choose JACK server support (Mac OSX and GNU/Linux only)], [
api="$api -D__UNIX_JACK__"
AC_MSG_RESULT(using JACK)
AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))
AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(Jack support also requires the asound library!))], )
# Look for ALSA flag
AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA API support (GNU/Linux only)], [
api="$api -D__LINUX_ALSA__"
req="$req alsa"
AC_MSG_RESULT(using ALSA)
AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))], )
# Look for PULSE flag
AC_ARG_WITH(pulse, [ --with-pulse = choose PulseAudio API support (GNU/Linux only)], [
api="$api -D__LINUX_PULSE__"
req="$req libpulse-simple"
AC_MSG_RESULT(using PulseAudio)
PKG_CHECK_MODULES([PULSE], [libpulse-simple], , AC_MSG_ERROR(PulseAudio support requires the pulse-simple library!))
LIBS="$LIBS `pkg-config --libs libpulse-simple`" ], )
# Look for OSS flag
AC_ARG_WITH(oss, [ --with-oss = choose OSS API support (GNU/Linux only)], [
api="$api -D__LINUX_OSS__"
AC_MSG_RESULT(using OSS)], )
# If no audio api flags specified, use ALSA
if [test "$api" == "";] then
AC_MSG_RESULT(using ALSA)
AC_SUBST( api, [-D__LINUX_ALSA__] )
req="$req alsa"
AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))
fi
AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(cursynth requires the pthread library!))
;;
*-apple*)
AC_ARG_WITH(jack, [ --with-jack = choose JACK server support (unix only)], [
api="$api -D__UNIX_JACK__"
AC_MSG_RESULT(using JACK)
AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))], )
# Look for Core flag
AC_ARG_WITH(core, [ --with-core = choose CoreAudio API support (MAC OSX only)], [
api="$api -D__MACOSX_CORE__"
AC_MSG_RESULT(using CoreAudio)
AC_CHECK_HEADER(CoreAudio/CoreAudio.h, [], [AC_MSG_ERROR(CoreAudio header files not found!)] )
LIBS="$LIBS -framework CoreAudio -framework CoreMIDI -framework CoreFoundation" ], )
# If no audio api flags specified, use CoreAudio
if [test "$api" == ""; ] then
AC_SUBST( api, [-D__MACOSX_CORE__] )
AC_MSG_RESULT(using CoreAudio)
AC_CHECK_HEADER(CoreAudio/CoreAudio.h,
[],
[AC_MSG_ERROR(CoreAudio header files not found!)] )
LIBS="$LIBS -framework CoreAudio -framework CoreMIDI -framework CoreFoundation"
fi
AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(cursynth requires the pthread library!))
;;
*-mingw32*)
AC_ARG_WITH(asio, [ --with-asio = choose ASIO API support (Windows only)], [
api="$api -D__WINDOWS_ASIO__"
AC_MSG_RESULT(using ASIO)
AC_SUBST( objects, ["asio.o asiodrivers.o asiolist.o iasiothiscallresolver.o"] ) ], )
# Look for DirectSound flag
AC_ARG_WITH(ds, [ --with-ds = choose DirectSound API support (Windows only)], [
api="$api -D__WINDOWS_DS__"
AC_MSG_RESULT(using DirectSound)
LIBS="-ldsound -lwinmm $LIBS" ], )
# If no audio api flags specified, use DirectSound
if [test "$api" == "";] then
AC_SUBST( api, [-D__WINDOWS_DS__] )
AC_MSG_RESULT(using DirectSound)
LIBS="-ldsound -lwinmm $LIBS"
fi
LIBS="-lole32 $LIBS"
;;
*)
# Default case for unknown realtime systems.
AC_MSG_ERROR(Unknown system type for realtime support!)
;;
esac
# Checks for typedefs, structures, and compiler characteristics.
AC_C_INLINE
AC_TYPE_PID_T
AC_C_RESTRICT
AC_TYPE_SIZE_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_CHECK_TYPES([ptrdiff_t])
# Checks for library functions.
AC_FUNC_ALLOCA
AC_FUNC_ERROR_AT_LINE
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_CHECK_FUNCS([dup2 floor gettimeofday memset modf pow rmdir strcasecmp strchr strdup strerror])
AC_CONFIG_SUBDIRS([mopo
rtaudio
rtmidi])
AC_CONFIG_FILES([Makefile po/Makefile.in
src/Makefile
cJSON/Makefile
doc/Makefile])
AC_OUTPUT
================================================
FILE: doc/.gitignore
================================================
# Documentation
mdate-sh
cursynth.info
texinfo.tex
version.texi
stdin.info
*.html
================================================
FILE: doc/Makefile.am
================================================
info_TEXINFOS = cursynth.texi
cursynth_TEXINFOS = cursynth.texi
================================================
FILE: doc/cursynth.texi
================================================
\input texinfo @c -*-texinfo-*-
@comment $Id@w{$}
@comment %**start of header
@setfilename cursynth.info
@include version.texi
@settitle GNU Sample @value{VERSION}
@syncodeindex pg cp
@comment %**end of header
@copying
This manual is for GNU Sample (version @value{VERSION}, @value{UPDATED}),
which is an example in the Texinfo documentation.
Copyright @copyright{} 2013 Free Software Foundation, Inc.
@quotation
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with no
Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
Texts. A copy of the license is included in the section entitled
``GNU Free Documentation License''.
@end quotation
@end copying
@dircategory Texinfo documentation system
@direntry
* cursynth: (cursynth)Invoking cursynth.
@end direntry
@titlepage
@title GNU Sample
@subtitle for version @value{VERSION}, @value{UPDATED}
@author Matt Tytel (@email{matthewtytel@@gmail.com})
@page
@vskip 0pt plus 1filll
@insertcopying
@end titlepage
@contents
@ifnottex
@node Top
@top GNU Sample
This manual is for cursynth (version @value{VERSION}, @value{UPDATED}).
cursynth is a music synthesizer. It's polyphonic and MIDI enabled and it runs
graphically within a terminal session.
@end ifnottex
@menu
* Invoking cursynth::
* Controls::
* Synthesis::
* Oscillators::
* Filter::
* Amplifier::
* Modulation Matrix::
* Effects::
* Articulation::
* Patches::
* GNU Free Documentation License::
* Index::
@end menu
@node Invoking cursynth
@chapter Invoking cursynth
@pindex cursynth
@cindex invoking @command{cursynth}
To start cursynth, run:
$ cursynth
cursynth will take over the current terminal session and show you all the
synthesis settings as sliders and text selections on the screen.
Start typing on your keyboard's home row to hear cursynth for the first time.
Typing F1 or 'H' will show help and information.
@node Controls
@chapter Controls
@pindex cursynth
@cindex controls
cursynth is MIDI enabled so if you have a working MIDI keyboard or controller,
cursynth will respond to note/velocity/etc events and can learn what parameters
to change when a knob or slider is moved through MIDI learn.
@itemize @bullet
@item awsedftgyhujkolp;' - a playable keyboard (no key up events)
@item \`1234567890 - a slider for the current selected control
@item up/down - previous/next control
@item left/right - decrement/increment control
@item F1 (or [shift] + H) - help/controls
@item [shift] + L - browse/load patches
@item [shift] + S - save patch
@item m - arm MIDI learn
@item c - erase MIDI learn
@end itemize
@node Synthesis
@chapter Synthesis
@pindex cursynth
@cindex synthesis
cursynth uses a very common form of synthesis called *Subtractive Synthesis*.
There are three major components in cursynth's synthesis:
@itemize @bullet
@item Oscillators
@item Filter
@item Amplifier
@end itemize
Synthesis starts with the two oscillators that create the initial sound. The
output of the two oscillators are mixed together and fed into the envelope
controlled filter. The output of the filter is fed into the envelope controlled
amplifier. Since cursynth is a polyphonic synthesizer, there is a copy of each
component (oscillator, filter, amplifier) for each voice. The output of all the
voices are combined into a single output that is fed into the delay line.
@node Oscillators
@chapter Oscillators
@pindex cursynth
@cindex oscillators
The initial sound creation in cursynth happens in the oscillators. There are two
oscillators and you can choose the wave type for each from the 13 waveforms:
@itemize @bullet
@item sin
@item triangle
@item square
@item down saw
@item up saw
@item three step
@item four step
@item eight step
@item three pyramid
@item five pyramid
@item nine pyramid
@item white noise
@end itemize
You can control the second oscillator's transpose relative to the given note
and fine tune the frequency using the tune parameter.
The two oscillators are hooked into a cross frequency modulation cycle. That
is, oscillator 1 modifies the frequency of oscillator 2 and oscillator 2 in
turn modifies the frequency of oscillator 1. Cross modulation greatly expands
the types of sounds you can get from the oscillators.
The output of the two oscillators are mixed together using a ratio definted
by the 'oscillator mix' parameter. A value of 0.5 mixes the oscillators
equally. A value of 0.0 is only the first oscillator, A value of 1.0 is only
oscillator 2.
@node Filter
@chapter Filter
@pindex cursynth
@cindex filter
cursynth has a resonant filter for each voice. This filter can either be a
low-pass or high-pass filter.
You can positively or negatively keytrack the filter so that higher notes
will have a higher cutoff and lower notes will have a lower cutoff.
The filter also has an ADSR envelope that controls the filter cutoff. It can
also be routed to other things using the modulation matrix.
@node Amplifier
@chapter Amplifier
@pindex cursynth
@cindex amplifier
cursynth has an amplifier that is controlled by an ADSR amplifier. You can also
velocity track the notes so the faster you hit a note on a MIDI keyboard, the
bigger the amplitude of the voice will be.
@node Modulation Matrix
@chapter Modulation Matrix
@pindex cursynth
@cindex matrix
cursynth has a modulation matrix so you can add custom modulation to cursynth's
routing. For example, you can set an LFO as the source and the pitch as a
destination with a small modulation scale to create a vibrato.
There are five fields for five separate modulation settings.
@node Effects
@chapter Effects
@pindex cursynth
@cindex effects
cursynth currently has a single delay effect. The audio of all the synth voices
are combined into one signal that is passed into the delay effect.
You can control the feedback amount and delay time.
@node Articulation
@chapter Articulation
@pindex cursynth
@cindex articulation
cursynth has a number of controls that change how it acts as a synthesizer.
@itemize @bullet
@item polyphony
@item legato
@item portamento
@item portamento type
@item pitch bend range
@end itemize
polyphony controls the maximum number of active voices at any time.
legato controls what happens when a note overrides a currently active note
because we had too many active voices. 'off' will cause the note to retrigger,
restarting all oscillators, envelopes and LFOs. 'on' will not retrigger any
oscillators, envelopes or LFOs but will set the frequency to the new note.
portamento controls how long it takes to slide the frequency from one note to
another note. cursynth has a linear (in semitones) slide measured in
seconds-per-octave.
portamento type controls when the notes slide. When 'off' notes never slide
their frequency. When 'on' notes always slide their frequency. When 'auto'
notes slide only when the note that is being overriden is still held down on
the keyboard, that is will jump to the new frequency immediately if the
overriden note was already released.
pitch bend range controls how much the pitch wheel affects the pitch of all the
voices, measured in semitones.
@node Patches
@chapter Patches
@pindex cursynth
@cindex patches
cursynth is a synthesizer that can make a variety of different sounds through
different settings. You can save to, and load these settings from cursynth
patches.
To load, press 'L' (shift + 'l'), then select from the patch list. You can test
the patch by playing on your keyboard. When you decide on a patch, press enter
to finish loading.
To save, press 'S' (shift + 's'), then name your patch and hit enter. The patch
will save to $HOME/.cursynth/patches/
All cursynth patches have a .mite extensions and there are two locations where
cursynth looks for them:
@itemize @bullet
@item a system data share directory, (usually /usr/local/share/cursynth/patches/)
@item $HOME/.cursynth/patches/
@end itemize
Patches are also human readable so you can edit them with your text editor if
you wish.
@node GNU Free Documentation License
@appendix GNU Free Documentation License
@include fdl.texi
@node Index
@unnumbered Index
@printindex cp
@bye
================================================
FILE: doc/fdl.texi
================================================
@cindex FDL, GNU Free Documentation License
@center Version 1.2, November 2002
@display
Copyright @copyright{} 2000,2001,2002 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
@end display
@enumerate 0
@item
PREAMBLE
The purpose of this License is to make a manual, textbook, or other
functional and useful document @dfn{free} in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
This License is a kind of ``copyleft'', which means that derivative
works of the document must themselves be free in the same sense. It
complements the GNU General Public License, which is a copyleft
license designed for free software.
We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does. But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book. We recommend this License
principally for works whose purpose is instruction or reference.
@item
APPLICABILITY AND DEFINITIONS
This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License. Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein. The ``Document'', below,
refers to any such manual or work. Any member of the public is a
licensee, and is addressed as ``you''. You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
A ``Modified Version'' of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
A ``Secondary Section'' is a named appendix or a front-matter section
of the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document's overall
subject (or to related matters) and contains nothing that could fall
directly within that overall subject. (Thus, if the Document is in
part a textbook of mathematics, a Secondary Section may not explain
any mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
The ``Invariant Sections'' are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License. If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant. The Document may contain zero
Invariant Sections. If the Document does not identify any Invariant
Sections then there are none.
The ``Cover Texts'' are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License. A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
A ``Transparent'' copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters. A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text. A copy that is not ``Transparent'' is called ``Opaque''.
Examples of suitable formats for Transparent copies include plain
@sc{ascii} without markup, Texinfo input format, La@TeX{} input
format, @acronym{SGML} or @acronym{XML} using a publicly available
@acronym{DTD}, and standard-conforming simple @acronym{HTML},
PostScript or @acronym{PDF} designed for human modification. Examples
of transparent image formats include @acronym{PNG}, @acronym{XCF} and
@acronym{JPG}. Opaque formats include proprietary formats that can be
read and edited only by proprietary word processors, @acronym{SGML} or
@acronym{XML} for which the @acronym{DTD} and/or processing tools are
not generally available, and the machine-generated @acronym{HTML},
PostScript or @acronym{PDF} produced by some word processors for
output purposes only.
The ``Title Page'' means, for a printed b
gitextract_mpjqhbob/
├── .gitignore
├── ABOUT-NLS
├── AUTHORS
├── COPYING
├── ChangeLog
├── INSTALL
├── Makefile.am
├── NEWS
├── README
├── cJSON/
│ ├── LICENSE
│ ├── Makefile.am
│ ├── cJSON.c
│ └── cJSON.h
├── configure.ac
├── doc/
│ ├── .gitignore
│ ├── Makefile.am
│ ├── cursynth.texi
│ └── fdl.texi
├── mopo/
│ ├── .gitignore
│ ├── AUTHORS
│ ├── COPYING
│ ├── ChangeLog
│ ├── INSTALL
│ ├── Makefile.am
│ ├── NEWS
│ ├── README
│ ├── configure.ac
│ └── src/
│ ├── Makefile.am
│ ├── delay.cpp
│ ├── delay.h
│ ├── envelope.cpp
│ ├── envelope.h
│ ├── feedback.cpp
│ ├── feedback.h
│ ├── filter.cpp
│ ├── filter.h
│ ├── linear_slope.cpp
│ ├── linear_slope.h
│ ├── memory.h
│ ├── midi_lookup.cpp
│ ├── midi_lookup.h
│ ├── mono_panner.cpp
│ ├── mono_panner.h
│ ├── mopo.h
│ ├── operators.cpp
│ ├── operators.h
│ ├── oscillator.cpp
│ ├── oscillator.h
│ ├── processor.cpp
│ ├── processor.h
│ ├── processor_router.cpp
│ ├── processor_router.h
│ ├── send_receive.cpp
│ ├── send_receive.h
│ ├── smooth_filter.cpp
│ ├── smooth_filter.h
│ ├── smooth_value.cpp
│ ├── smooth_value.h
│ ├── step_generator.cpp
│ ├── step_generator.h
│ ├── tick_router.h
│ ├── trigger_operators.cpp
│ ├── trigger_operators.h
│ ├── utils.h
│ ├── value.cpp
│ ├── value.h
│ ├── voice_handler.cpp
│ ├── voice_handler.h
│ ├── wave.cpp
│ └── wave.h
├── patches/
│ ├── bit_sin.mite
│ ├── bwang.mite
│ ├── default.mite
│ ├── loaded_room.mite
│ ├── test_patch1.mite
│ ├── test_patch2.mite
│ ├── water_wobble.mite
│ ├── whistle.mite
│ ├── whoooo.mite
│ └── womp.mite
├── po/
│ ├── .gitignore
│ ├── Makevars
│ └── POTFILES.in
├── rtaudio/
│ ├── .gitignore
│ ├── Makefile.am
│ ├── RtAudio.cpp
│ ├── RtAudio.h
│ ├── RtError.h
│ ├── configure.ac
│ ├── contrib/
│ │ └── python/
│ │ └── pyrtaudio/
│ │ ├── PyRtAudioTest.py
│ │ ├── readme
│ │ ├── rtaudiomodule.cpp
│ │ └── setup.py
│ ├── include/
│ │ ├── asio.cpp
│ │ ├── asio.h
│ │ ├── asiodrivers.cpp
│ │ ├── asiodrivers.h
│ │ ├── asiodrvr.h
│ │ ├── asiolist.cpp
│ │ ├── asiolist.h
│ │ ├── asiosys.h
│ │ ├── dsound.h
│ │ ├── ginclude.h
│ │ ├── iasiodrv.h
│ │ ├── iasiothiscallresolver.cpp
│ │ ├── iasiothiscallresolver.h
│ │ └── soundcard.h
│ ├── install
│ ├── librtaudio.pc.in
│ ├── readme
│ ├── rtaudio-config.in
│ └── tests/
│ ├── Windows/
│ │ ├── audioprobe.dsp
│ │ ├── duplex.dsp
│ │ ├── playraw.dsp
│ │ ├── playsaw.dsp
│ │ ├── record.dsp
│ │ ├── rtaudio.dsw
│ │ ├── testall.dsp
│ │ └── teststops.dsp
│ ├── audioprobe.cpp
│ ├── duplex.cpp
│ ├── playraw.cpp
│ ├── playsaw.cpp
│ ├── record.cpp
│ ├── testall.cpp
│ └── teststops.cpp
├── rtmidi/
│ ├── .gitignore
│ ├── Makefile.am
│ ├── RtError.h
│ ├── RtMidi.cpp
│ ├── RtMidi.h
│ ├── configure.ac
│ ├── include/
│ │ ├── ks.h
│ │ └── ksmedia.h
│ ├── msw/
│ │ ├── readme
│ │ ├── rtmidilib.sln
│ │ └── rtmidilib.vcproj
│ ├── readme
│ ├── rtmidi-config.in
│ └── tests/
│ ├── RtMidi.dsw
│ ├── cmidiin.cpp
│ ├── cmidiin.dsp
│ ├── midiout.cpp
│ ├── midiout.dsp
│ ├── midiprobe.cpp
│ ├── midiprobe.dsp
│ ├── qmidiin.cpp
│ ├── qmidiin.dsp
│ ├── sysextest.cpp
│ └── sysextest.dsp
└── src/
├── Makefile.am
├── cursynth.cpp
├── cursynth.h
├── cursynth_common.h
├── cursynth_engine.cpp
├── cursynth_engine.h
├── cursynth_gui.cpp
├── cursynth_gui.h
├── cursynth_strings.cpp
├── cursynth_strings.h
└── main.cpp
SYMBOL INDEX (1047 symbols across 88 files)
FILE: cJSON/cJSON.c
function cJSON_strcasecmp (line 39) | static int cJSON_strcasecmp(const char *s1,const char *s2)
function cJSON_InitHooks (line 60) | void cJSON_InitHooks(cJSON_Hooks* hooks)
function cJSON (line 73) | static cJSON *cJSON_New_Item(void)
function cJSON_Delete (line 81) | void cJSON_Delete(cJSON *c)
function parse_hex4 (line 140) | static unsigned parse_hex4(const char *str)
function cJSON (line 264) | cJSON *cJSON_ParseWithOpts(const char *value,const char **return_parse_e...
function cJSON (line 280) | cJSON *cJSON_Parse(const char *value) {return cJSON_ParseWithOpts(value,...
function cJSON_GetArraySize (line 510) | int cJSON_GetArraySize(cJSON *array) {cJSON *c=array->child;int...
function cJSON (line 511) | cJSON *cJSON_GetArrayItem(cJSON *array,int item) {cJSON *c=array->chi...
function cJSON (line 512) | cJSON *cJSON_GetObjectItem(cJSON *object,const char *string) {cJSON *c=o...
function suffix_object (line 515) | static void suffix_object(cJSON *prev,cJSON *item) {prev->next=item;item...
function cJSON (line 517) | static cJSON *create_reference(cJSON *item) {cJSON *ref=cJSON_New_Item()...
function cJSON_AddItemToArray (line 520) | void cJSON_AddItemToArray(cJSON *array, cJSON *item) {cJSON *c=ar...
function cJSON_AddItemToObject (line 521) | void cJSON_AddItemToObject(cJSON *object,const char *string,cJSON *ite...
function cJSON_AddItemReferenceToArray (line 522) | void cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) {cJSO...
function cJSON_AddItemReferenceToObject (line 523) | void cJSON_AddItemReferenceToObject(cJSON *object,const char *string,cJS...
function cJSON (line 525) | cJSON *cJSON_DetachItemFromArray(cJSON *array,int which) {cJSON *c=arr...
function cJSON_DeleteItemFromArray (line 527) | void cJSON_DeleteItemFromArray(cJSON *array,int which) {cJSON_Delete...
function cJSON (line 528) | cJSON *cJSON_DetachItemFromObject(cJSON *object,const char *string) {int...
function cJSON_DeleteItemFromObject (line 529) | void cJSON_DeleteItemFromObject(cJSON *object,const char *string) {cJS...
function cJSON_ReplaceItemInArray (line 532) | void cJSON_ReplaceItemInArray(cJSON *array,int which,cJSON *newitem) ...
function cJSON_ReplaceItemInObject (line 535) | void cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON ...
function cJSON (line 538) | cJSON *cJSON_CreateNull(void) {cJSON *item=cJSON_New_Item();if(item)...
function cJSON (line 539) | cJSON *cJSON_CreateTrue(void) {cJSON *item=cJSON_New_Item();if(item)...
function cJSON (line 540) | cJSON *cJSON_CreateFalse(void) {cJSON *item=cJSON_New_Item();if(item...
function cJSON (line 541) | cJSON *cJSON_CreateBool(int b) {cJSON *item=cJSON_New_Item();if(item...
function cJSON (line 542) | cJSON *cJSON_CreateNumber(double num) {cJSON *item=cJSON_New_Item();if...
function cJSON (line 543) | cJSON *cJSON_CreateString(const char *string) {cJSON *item=cJSON_New_Ite...
function cJSON (line 544) | cJSON *cJSON_CreateArray(void) {cJSON *item=cJSON_New_Item();if(item...
function cJSON (line 545) | cJSON *cJSON_CreateObject(void) {cJSON *item=cJSON_New_Item();if(ite...
function cJSON (line 548) | cJSON *cJSON_CreateIntArray(const int *numbers,int count) {int i;cJSON ...
function cJSON (line 549) | cJSON *cJSON_CreateFloatArray(const float *numbers,int count) {int i;cJS...
function cJSON (line 550) | cJSON *cJSON_CreateDoubleArray(const double *numbers,int count) {int i;c...
function cJSON (line 551) | cJSON *cJSON_CreateStringArray(const char **strings,int count) {int i;cJ...
function cJSON (line 554) | cJSON *cJSON_Duplicate(cJSON *item,int recurse)
function cJSON_Minify (line 581) | void cJSON_Minify(char *json)
FILE: cJSON/cJSON.h
type cJSON (line 43) | typedef struct cJSON {
type cJSON_Hooks (line 56) | typedef struct cJSON_Hooks {
FILE: mopo/src/delay.cpp
type mopo (line 19) | namespace mopo {
FILE: mopo/src/delay.h
function namespace (line 24) | namespace mopo {
FILE: mopo/src/envelope.cpp
type mopo (line 23) | namespace mopo {
function mopo_float (line 67) | inline mopo_float Envelope::tick(int i) {
FILE: mopo/src/envelope.h
function namespace (line 25) | namespace mopo {
FILE: mopo/src/feedback.cpp
type mopo (line 21) | namespace mopo {
FILE: mopo/src/feedback.h
function namespace (line 23) | namespace mopo {
FILE: mopo/src/filter.cpp
type mopo (line 21) | namespace mopo {
function mopo_float (line 51) | inline mopo_float Filter::tick(int i) {
FILE: mopo/src/filter.h
function namespace (line 23) | namespace mopo {
FILE: mopo/src/linear_slope.cpp
type mopo (line 23) | namespace mopo {
function mopo_float (line 47) | inline mopo_float LinearSlope::tick(int i) {
FILE: mopo/src/linear_slope.h
function namespace (line 23) | namespace mopo {
FILE: mopo/src/memory.h
function namespace (line 31) | namespace mopo {
FILE: mopo/src/midi_lookup.cpp
type mopo (line 19) | namespace mopo {
FILE: mopo/src/midi_lookup.h
function namespace (line 30) | namespace mopo {
FILE: mopo/src/mono_panner.cpp
type mopo (line 27) | namespace mopo {
FILE: mopo/src/mono_panner.h
function namespace (line 23) | namespace mopo {
FILE: mopo/src/mopo.h
function namespace (line 35) | namespace mopo {
FILE: mopo/src/operators.cpp
type mopo (line 19) | namespace mopo {
FILE: mopo/src/operators.h
function namespace (line 24) | namespace mopo {
function class (line 53) | class Negate : public Operator {
function class (line 65) | class LinearScale : public Operator {
function class (line 79) | class MidiScale : public Operator {
function class (line 92) | class Add : public Operator {
function class (line 104) | class VariableAdd : public Operator {
function class (line 120) | class Subtract : public Operator {
function class (line 132) | class Multiply : public Operator {
function class (line 144) | class Interpolate : public Operator {
function tick (line 157) | inline void tick(int i) {
FILE: mopo/src/oscillator.cpp
type mopo (line 21) | namespace mopo {
FILE: mopo/src/oscillator.h
function namespace (line 24) | namespace mopo {
FILE: mopo/src/processor.cpp
type mopo (line 21) | namespace mopo {
FILE: mopo/src/processor.h
function namespace (line 26) | namespace mopo {
function clearTrigger (line 46) | void clearTrigger() {
function clearBuffer (line 52) | void clearBuffer() {
type Input (line 66) | struct Input {
function mopo_float (line 71) | mopo_float at(int i) const { return source->buffer[i]; }
function virtual (line 85) | virtual void setSampleRate(int sample_rate) {
function virtual (line 89) | virtual void setBufferSize(int buffer_size) {
function router (line 109) | void router(ProcessorRouter* router) { router_ = router; }
function ProcessorRouter (line 112) | const ProcessorRouter* router() const { return router_; }
FILE: mopo/src/processor_router.cpp
type mopo (line 25) | namespace mopo {
function Processor (line 214) | const Processor* ProcessorRouter::getContext(const Processor* processo...
FILE: mopo/src/processor_router.h
function namespace (line 27) | namespace mopo {
FILE: mopo/src/send_receive.cpp
type mopo (line 21) | namespace mopo {
FILE: mopo/src/send_receive.h
function namespace (line 26) | namespace mopo {
FILE: mopo/src/smooth_filter.cpp
type mopo (line 19) | namespace mopo {
FILE: mopo/src/smooth_filter.h
function namespace (line 23) | namespace mopo {
FILE: mopo/src/smooth_value.cpp
type mopo (line 23) | namespace mopo {
function mopo_float (line 38) | inline mopo_float SmoothValue::tick() {
FILE: mopo/src/smooth_value.h
function namespace (line 23) | namespace mopo {
FILE: mopo/src/step_generator.cpp
type mopo (line 21) | namespace mopo {
FILE: mopo/src/step_generator.h
function namespace (line 25) | namespace mopo {
FILE: mopo/src/tick_router.h
function namespace (line 23) | namespace mopo {
FILE: mopo/src/trigger_operators.cpp
type mopo (line 19) | namespace mopo {
FILE: mopo/src/trigger_operators.h
function namespace (line 23) | namespace mopo {
FILE: mopo/src/utils.h
function namespace (line 25) | namespace mopo {
FILE: mopo/src/value.cpp
type mopo (line 19) | namespace mopo {
FILE: mopo/src/value.h
function namespace (line 23) | namespace mopo {
FILE: mopo/src/voice_handler.cpp
type mopo (line 21) | namespace mopo {
function Voice (line 173) | Voice* VoiceHandler::createVoice() {
FILE: mopo/src/voice_handler.h
function namespace (line 27) | namespace mopo {
FILE: mopo/src/wave.cpp
type mopo (line 19) | namespace mopo {
FILE: mopo/src/wave.h
function namespace (line 29) | namespace mopo {
FILE: rtaudio/RtAudio.cpp
type timeval (line 374) | struct timeval
type timeval (line 375) | struct timeval
type CoreHandle (line 423) | struct CoreHandle {
method CoreHandle (line 436) | CoreHandle()
function OSStatus (line 753) | static OSStatus callbackHandler( AudioDeviceID inDevice,
function OSStatus (line 770) | static OSStatus xrunListener( AudioObjectID /*inDevice*/,
function OSStatus (line 788) | static OSStatus rateListener( AudioObjectID inDevice,
type JackHandle (line 1827) | struct JackHandle {
method JackHandle (line 1836) | JackHandle()
function jackCallbackHandler (line 1980) | static int jackCallbackHandler( jack_nframes_t nframes, void *infoPointer )
function jackShutdown (line 2003) | static void jackShutdown( void *infoPointer )
function jackXrun (line 2020) | static int jackXrun( void *infoPointer )
type AsioHandle (line 2592) | struct AsioHandle {
method AsioHandle (line 2598) | AsioHandle()
function bufferSwitch (line 2753) | static void bufferSwitch( long index, ASIOBool processNow )
function asioStopStream (line 3253) | static unsigned __stdcall asioStopStream( void *ptr )
function sampleRateChanged (line 3416) | static void sampleRateChanged( ASIOSampleRate sRate )
function asioMessages (line 3436) | static long asioMessages( long selector, long value, void* message, doub...
type Messages (line 3508) | struct Messages
function DWORD (line 3561) | static inline DWORD dsPointerBetween( DWORD pointer, DWORD laterPointer,...
type DsHandle (line 3571) | struct DsHandle {
method DsHandle (line 3582) | DsHandle()
type DsDevice (line 3597) | struct DsDevice {
method DsDevice (line 3603) | DsDevice()
type DsProbeData (line 3607) | struct DsProbeData {
type DsDevice (line 3609) | struct DsDevice
type DsProbeData (line 3648) | struct DsProbeData
type DsDevice (line 3609) | struct DsDevice
function callbackHandler (line 4974) | static unsigned __stdcall callbackHandler( void *ptr )
function convertTChar (line 4990) | static std::string convertTChar( LPCTSTR name )
function BOOL (line 5003) | static BOOL CALLBACK deviceQueryCallback( LPGUID lpguid,
type AlsaHandle (line 5145) | struct AlsaHandle {
method AlsaHandle (line 5152) | AlsaHandle()
type rtaudio_pa_format_mapping_t (line 6420) | struct rtaudio_pa_format_mapping_t {
type PulseAudioHandle (line 6431) | struct PulseAudioHandle {
method PulseAudioHandle (line 6437) | PulseAudioHandle() : s_play(0), s_rec(0), runnable(false) { }
type OssHandle (line 6896) | struct OssHandle {
method OssHandle (line 6902) | OssHandle()
type sched_param (line 7429) | struct sched_param
FILE: rtaudio/RtAudio.h
type RtAudioFormat (line 71) | typedef unsigned long RtAudioFormat;
type RtAudioStreamFlags (line 121) | typedef unsigned int RtAudioStreamFlags;
type RtAudioStreamStatus (line 139) | typedef unsigned int RtAudioStreamStatus;
type Api (line 215) | enum Api {
function isStreamRunning (line 228) | struct DeviceInfo {
function showWarnings (line 635) | void showWarnings( bool value ) { showWarnings_ = value; }
type StreamState (line 645) | enum StreamState {
type StreamMode (line 652) | enum StreamMode {
type ConvertInfo (line 660) | struct ConvertInfo {
type RtApiStream (line 669) | struct RtApiStream {
function getDefaultInputDevice (line 765) | inline unsigned int RtAudio :: getDefaultInputDevice( void ) throw() { r...
function getDefaultOutputDevice (line 766) | inline unsigned int RtAudio :: getDefaultOutputDevice( void ) throw() { ...
function closeStream (line 767) | inline void RtAudio :: closeStream( void ) throw() { return rtapi_->clos...
function startStream (line 768) | inline void RtAudio :: startStream( void ) { return rtapi_->startStream(...
function stopStream (line 769) | inline void RtAudio :: stopStream( void ) { return rtapi_->stopStream(); }
function abortStream (line 770) | inline void RtAudio :: abortStream( void ) { return rtapi_->abortStream(...
function isStreamOpen (line 771) | inline bool RtAudio :: isStreamOpen( void ) const throw() { return rtapi...
function isStreamRunning (line 772) | inline bool RtAudio :: isStreamRunning( void ) const throw() { return rt...
function getStreamLatency (line 773) | inline long RtAudio :: getStreamLatency( void ) { return rtapi_->getStre...
function getStreamSampleRate (line 774) | inline unsigned int RtAudio :: getStreamSampleRate( void ) { return rtap...
function getStreamTime (line 775) | inline double RtAudio :: getStreamTime( void ) { return rtapi_->getStrea...
function showWarnings (line 776) | inline void RtAudio :: showWarnings( bool value ) throw() { rtapi_->show...
function class (line 784) | class RtApiCore: public RtApi
function class (line 822) | class RtApiJack: public RtApi
function class (line 855) | class RtApiAsio: public RtApi
function class (line 891) | class RtApiDs: public RtApi
function class (line 930) | class RtApiAlsa: public RtApi
function class (line 964) | class RtApiPulse: public RtApi
function class (line 996) | class RtApiOss: public RtApi
function class (line 1028) | class RtApiDummy: public RtApi
FILE: rtaudio/RtError.h
function class (line 19) | class RtError : public std::exception
function virtual (line 47) | virtual const Type& getType(void) const throw() { return type_; }
function virtual (line 50) | virtual const std::string& getMessage(void) const throw() { return messa...
function virtual (line 53) | virtual const char* what( void ) const throw() { return message_.c_str(); }
FILE: rtaudio/contrib/python/pyrtaudio/PyRtAudioTest.py
class audio_generator (line 9) | class audio_generator:
method __init__ (line 10) | def __init__(self):
method __call__ (line 13) | def __call__(self):
class callback (line 20) | class callback:
method __init__ (line 21) | def __init__(self, gen):
method __call__ (line 24) | def __call__(self,playback, capture):
FILE: rtaudio/contrib/python/pyrtaudio/rtaudiomodule.cpp
function callback (line 53) | static int callback(void *outputBuffer, void *inputBuffer, unsigned int ...
function RtAudio_dealloc (line 107) | static void RtAudio_dealloc(PyRtAudio *self)
function PyObject (line 122) | static PyObject* RtAudio_new(PyTypeObject *type, PyObject *args, PyObjec...
function RtAudio_init (line 166) | static int RtAudio_init(PyRtAudio *self, PyObject *args, PyObject *kwds)
function PyObject (line 175) | static PyObject* RtAudio_openStream(PyRtAudio *self, PyObject *args)
function PyObject (line 275) | static PyObject* RtAudio_closeStream(PyRtAudio *self, PyObject *args)
function PyObject (line 293) | static PyObject* RtAudio_startStream(PyRtAudio *self, PyObject *args)
function PyObject (line 310) | static PyObject* RtAudio_stopStream(PyRtAudio *self, PyObject *args)
function PyObject (line 327) | static PyObject* RtAudio_abortStream(PyRtAudio *self, PyObject *args)
function PyObject (line 343) | static PyObject* RtAudio_isStreamRunning(PyRtAudio *self, PyObject *args)
function PyObject (line 356) | static PyObject* RtAudio_isStreamOpen(PyRtAudio *self, PyObject *args)
function PyObject (line 370) | static PyObject* RtAudio_getDeviceCount(PyRtAudio *self, PyObject *args)
function PyObject (line 377) | static PyObject* RtAudio_getDeviceInfo(PyRtAudio *self, PyObject *args)
function PyObject (line 440) | static PyObject* RtAudio_getDefaultOutputDevice(PyRtAudio *self, PyObjec...
function PyObject (line 446) | static PyObject* RtAudio_getDefaultInputDevice(PyRtAudio *self, PyObject...
function PyObject (line 452) | static PyObject* RtAudio_getStreamTime(PyRtAudio *self, PyObject *args)
function PyObject (line 458) | static PyObject* RtAudio_getStreamLatency(PyRtAudio *self, PyObject *args)
function PyObject (line 464) | static PyObject* RtAudio_getStreamSampleRate(PyRtAudio *self, PyObject *...
function PyObject (line 470) | static PyObject* RtAudio_showWarnings(PyRtAudio *self, PyObject *args)
function PyMODINIT_FUNC (line 586) | PyMODINIT_FUNC
FILE: rtaudio/include/asio.cpp
function main (line 25) | long main()
function ASIOError (line 45) | ASIOError ASIOInit(ASIODriverInfo *info)
function ASIOError (line 96) | ASIOError ASIOExit(void)
function ASIOError (line 110) | ASIOError ASIOStart(void)
function ASIOError (line 117) | ASIOError ASIOStop(void)
function ASIOError (line 124) | ASIOError ASIOGetChannels(long *numInputChannels, long *numOutputChannels)
function ASIOError (line 134) | ASIOError ASIOGetLatencies(long *inputLatency, long *outputLatency)
function ASIOError (line 144) | ASIOError ASIOGetBufferSize(long *minSize, long *maxSize, long *preferre...
function ASIOError (line 154) | ASIOError ASIOCanSampleRate(ASIOSampleRate sampleRate)
function ASIOError (line 161) | ASIOError ASIOGetSampleRate(ASIOSampleRate *currentRate)
function ASIOError (line 168) | ASIOError ASIOSetSampleRate(ASIOSampleRate sampleRate)
function ASIOError (line 175) | ASIOError ASIOGetClockSources(ASIOClockSource *clocks, long *numSources)
function ASIOError (line 185) | ASIOError ASIOSetClockSource(long reference)
function ASIOError (line 192) | ASIOError ASIOGetSamplePosition(ASIOSamples *sPos, ASIOTimeStamp *tStamp)
function ASIOError (line 199) | ASIOError ASIOGetChannelInfo(ASIOChannelInfo *info)
function ASIOError (line 211) | ASIOError ASIOCreateBuffers(ASIOBufferInfo *bufferInfos, long numChannels,
function ASIOError (line 224) | ASIOError ASIODisposeBuffers(void)
function ASIOError (line 231) | ASIOError ASIOControlPanel(void)
function ASIOError (line 238) | ASIOError ASIOFuture(long selector, void *opt)
function ASIOError (line 245) | ASIOError ASIOOutputReady(void)
FILE: rtaudio/include/asio.h
type ASIOSamples (line 90) | typedef long long int ASIOSamples;
type ASIOSamples (line 92) | typedef struct ASIOSamples {
type ASIOTimeStamp (line 101) | typedef long long int ASIOTimeStamp ;
type ASIOTimeStamp (line 103) | typedef struct ASIOTimeStamp {
type ASIOSampleRate (line 112) | typedef double ASIOSampleRate;
type ASIOSampleRate (line 114) | typedef struct ASIOSampleRate {
type ASIOBool (line 120) | typedef long ASIOBool;
type ASIOSampleType (line 127) | typedef long ASIOSampleType;
type ASIOError (line 207) | typedef long ASIOError;
type ASIOTimeCode (line 227) | typedef struct ASIOTimeCode
type ASIOTimeCodeFlags (line 236) | typedef enum ASIOTimeCodeFlags
type AsioTimeInfo (line 247) | typedef struct AsioTimeInfo
type AsioTimeInfoFlags (line 259) | typedef enum AsioTimeInfoFlags
type ASIOTime (line 270) | typedef struct ASIOTime // both input/output
type ASIOCallbacks (line 390) | typedef struct ASIOCallbacks
type ASIODriverInfo (line 475) | typedef struct ASIODriverInfo
type ASIOClockSource (line 677) | typedef struct ASIOClockSource
type ASIOChannelInfo (line 765) | typedef struct ASIOChannelInfo
type ASIOBufferInfo (line 814) | typedef struct ASIOBufferInfo
type ASIOInputMonitor (line 928) | typedef struct ASIOInputMonitor
type ASIOChannelControls (line 937) | typedef struct ASIOChannelControls
type ASIOTransportParameters (line 946) | typedef struct ASIOTransportParameters
type ASIOIoFormatType (line 992) | typedef long int ASIOIoFormatType;
type ASIOIoFormatType_e (line 993) | enum ASIOIoFormatType_e
type ASIOIoFormat (line 1000) | typedef struct ASIOIoFormat_s
FILE: rtaudio/include/asiodrivers.cpp
function loadAsioDriver (line 8) | bool loadAsioDriver(char *name)
FILE: rtaudio/include/asiodrivers.h
function getCurrentDriverIndex (line 35) | long getCurrentDriverIndex() {return curIndex;}
FILE: rtaudio/include/asiodrvr.h
function class (line 39) | class AsioDriver
FILE: rtaudio/include/asiolist.cpp
function LONG (line 13) | static LONG findDrvPath (char *clsidstr,char *dllpath,int dllpathsize)
function LPASIODRVSTRUCT (line 89) | static LPASIODRVSTRUCT newDrvStruct (HKEY hkey,char *keyname,int drvID,L...
function deleteDrvStruct (line 133) | static void deleteDrvStruct (LPASIODRVSTRUCT lpdrv)
function LPASIODRVSTRUCT (line 148) | static LPASIODRVSTRUCT getDrvStruct (int drvID,LPASIODRVSTRUCT lpdrv)
function LONG (line 209) | LONG AsioDriverList::asioGetNumDev (VOID)
function LONG (line 215) | LONG AsioDriverList::asioOpenDriver (int drvID,LPVOID *asiodrv)
function LONG (line 240) | LONG AsioDriverList::asioCloseDriver (int drvID)
function LONG (line 256) | LONG AsioDriverList::asioGetDriverName (int drvID,char *drvname,int drvn...
function LONG (line 278) | LONG AsioDriverList::asioGetDriverPath (int drvID,char *dllpath,int dllp...
function LONG (line 295) | LONG AsioDriverList::asioGetDriverCLSID (int drvID,CLSID *clsid)
FILE: rtaudio/include/asiolist.h
type asiodrvstruct (line 12) | struct asiodrvstruct
type ASIODRVSTRUCT (line 22) | typedef struct asiodrvstruct ASIODRVSTRUCT;
type ASIODRVSTRUCT (line 23) | typedef ASIODRVSTRUCT *LPASIODRVSTRUCT;
function class (line 25) | class AsioDriverList {
type class (line 44) | typedef class AsioDriverList
FILE: rtaudio/include/dsound.h
type D3DVALUE (line 29) | typedef float D3DVALUE, *LPD3DVALUE;
type DWORD (line 32) | typedef DWORD D3DCOLOR;
type DWORD (line 37) | typedef DWORD *LPD3DCOLOR;
type D3DVECTOR (line 42) | typedef struct _D3DVECTOR {
type D3DVECTOR (line 51) | typedef D3DVECTOR *LPD3DVECTOR;
type IDirectSound (line 96) | struct IDirectSound
type IDirectSoundBuffer (line 97) | struct IDirectSoundBuffer
type IDirectSound3DListener (line 98) | struct IDirectSound3DListener
type IDirectSound3DBuffer (line 99) | struct IDirectSound3DBuffer
type IDirectSoundCapture (line 100) | struct IDirectSoundCapture
type IDirectSoundCaptureBuffer (line 101) | struct IDirectSoundCaptureBuffer
type IDirectSoundNotify (line 102) | struct IDirectSoundNotify
type IDirectSound8 (line 113) | struct IDirectSound8
type IDirectSoundBuffer8 (line 114) | struct IDirectSoundBuffer8
type IDirectSoundCaptureBuffer8 (line 115) | struct IDirectSoundCaptureBuffer8
type IDirectSoundFXGargle (line 116) | struct IDirectSoundFXGargle
type IDirectSoundFXChorus (line 117) | struct IDirectSoundFXChorus
type IDirectSoundFXFlanger (line 118) | struct IDirectSoundFXFlanger
type IDirectSoundFXEcho (line 119) | struct IDirectSoundFXEcho
type IDirectSoundFXDistortion (line 120) | struct IDirectSoundFXDistortion
type IDirectSoundFXCompressor (line 121) | struct IDirectSoundFXCompressor
type IDirectSoundFXParamEq (line 122) | struct IDirectSoundFXParamEq
type IDirectSoundFXWavesReverb (line 123) | struct IDirectSoundFXWavesReverb
type IDirectSoundFXI3DL2Reverb (line 124) | struct IDirectSoundFXI3DL2Reverb
type IDirectSoundCaptureFXAec (line 125) | struct IDirectSoundCaptureFXAec
type IDirectSoundCaptureFXNoiseSuppress (line 126) | struct IDirectSoundCaptureFXNoiseSuppress
type IDirectSoundFullDuplex (line 127) | struct IDirectSoundFullDuplex
type IDirectSound (line 153) | struct IDirectSound
type IDirectSoundBuffer (line 154) | struct IDirectSoundBuffer
type IDirectSound3DListener (line 155) | struct IDirectSound3DListener
type IDirectSound3DBuffer (line 156) | struct IDirectSound3DBuffer
type IDirectSoundCapture (line 157) | struct IDirectSoundCapture
type IDirectSoundCaptureBuffer (line 158) | struct IDirectSoundCaptureBuffer
type IDirectSoundNotify (line 159) | struct IDirectSoundNotify
type IDirectSoundFXGargle (line 164) | struct IDirectSoundFXGargle
type IDirectSoundFXChorus (line 165) | struct IDirectSoundFXChorus
type IDirectSoundFXFlanger (line 166) | struct IDirectSoundFXFlanger
type IDirectSoundFXEcho (line 167) | struct IDirectSoundFXEcho
type IDirectSoundFXDistortion (line 168) | struct IDirectSoundFXDistortion
type IDirectSoundFXCompressor (line 169) | struct IDirectSoundFXCompressor
type IDirectSoundFXParamEq (line 170) | struct IDirectSoundFXParamEq
type IDirectSoundFXWavesReverb (line 171) | struct IDirectSoundFXWavesReverb
type IDirectSoundFXI3DL2Reverb (line 172) | struct IDirectSoundFXI3DL2Reverb
type IDirectSoundCaptureFXAec (line 173) | struct IDirectSoundCaptureFXAec
type IDirectSoundCaptureFXNoiseSuppress (line 174) | struct IDirectSoundCaptureFXNoiseSuppress
type IDirectSoundFullDuplex (line 175) | struct IDirectSoundFullDuplex
type IDirectSound8 (line 177) | struct IDirectSound8
type IDirectSoundBuffer8 (line 178) | struct IDirectSoundBuffer8
type IDirectSound3DListener8 (line 179) | struct IDirectSound3DListener8
type IDirectSound3DBuffer8 (line 180) | struct IDirectSound3DBuffer8
type IDirectSoundCapture8 (line 181) | struct IDirectSoundCapture8
type IDirectSoundCaptureBuffer8 (line 182) | struct IDirectSoundCaptureBuffer8
type IDirectSoundNotify8 (line 183) | struct IDirectSoundNotify8
type IDirectSoundFXGargle8 (line 184) | struct IDirectSoundFXGargle8
type IDirectSoundFXChorus8 (line 185) | struct IDirectSoundFXChorus8
type IDirectSoundFXFlanger8 (line 186) | struct IDirectSoundFXFlanger8
type IDirectSoundFXEcho8 (line 187) | struct IDirectSoundFXEcho8
type IDirectSoundFXDistortion8 (line 188) | struct IDirectSoundFXDistortion8
type IDirectSoundFXCompressor8 (line 189) | struct IDirectSoundFXCompressor8
type IDirectSoundFXParamEq8 (line 190) | struct IDirectSoundFXParamEq8
type IDirectSoundFXWavesReverb8 (line 191) | struct IDirectSoundFXWavesReverb8
type IDirectSoundFXI3DL2Reverb8 (line 192) | struct IDirectSoundFXI3DL2Reverb8
type IDirectSoundCaptureFXAec8 (line 193) | struct IDirectSoundCaptureFXAec8
type IDirectSoundCaptureFXNoiseSuppress8 (line 194) | struct IDirectSoundCaptureFXNoiseSuppress8
type IDirectSoundFullDuplex8 (line 195) | struct IDirectSoundFullDuplex8
type WAVEFORMATEX (line 230) | typedef const WAVEFORMATEX *LPCWAVEFORMATEX;
type GUID (line 235) | typedef const GUID *LPCGUID;
type LPDIRECTSOUND (line 238) | typedef LPDIRECTSOUND *LPLPDIRECTSOUND;
type LPDIRECTSOUNDBUFFER (line 239) | typedef LPDIRECTSOUNDBUFFER *LPLPDIRECTSOUNDBUFFER;
type LPDIRECTSOUND3DLISTENER (line 240) | typedef LPDIRECTSOUND3DLISTENER *LPLPDIRECTSOUND3DLISTENER;
type LPDIRECTSOUND3DBUFFER (line 241) | typedef LPDIRECTSOUND3DBUFFER *LPLPDIRECTSOUND3DBUFFER;
type LPDIRECTSOUNDCAPTURE (line 242) | typedef LPDIRECTSOUNDCAPTURE *LPLPDIRECTSOUNDCAPTURE;
type LPDIRECTSOUNDCAPTUREBUFFER (line 243) | typedef LPDIRECTSOUNDCAPTUREBUFFER *LPLPDIRECTSOUNDCAPTUREBUFFER;
type LPDIRECTSOUNDNOTIFY (line 244) | typedef LPDIRECTSOUNDNOTIFY *LPLPDIRECTSOUNDNOTIFY;
type LPDIRECTSOUND8 (line 247) | typedef LPDIRECTSOUND8 *LPLPDIRECTSOUND8;
type LPDIRECTSOUNDBUFFER8 (line 248) | typedef LPDIRECTSOUNDBUFFER8 *LPLPDIRECTSOUNDBUFFER8;
type LPDIRECTSOUNDCAPTURE8 (line 249) | typedef LPDIRECTSOUNDCAPTURE8 *LPLPDIRECTSOUNDCAPTURE8;
type LPDIRECTSOUNDCAPTUREBUFFER8 (line 250) | typedef LPDIRECTSOUNDCAPTUREBUFFER8 *LPLPDIRECTSOUNDCAPTUREBUFFER8;
type DSCAPS (line 257) | typedef struct _DSCAPS
type DSCAPS (line 285) | typedef const DSCAPS *LPCDSCAPS;
type DSBCAPS (line 287) | typedef struct _DSBCAPS
type DSBCAPS (line 296) | typedef const DSBCAPS *LPCDSBCAPS;
type DSEFFECTDESC (line 300) | typedef struct _DSEFFECTDESC
type DSEFFECTDESC (line 308) | typedef const DSEFFECTDESC *LPCDSEFFECTDESC;
type DSCEFFECTDESC (line 324) | typedef struct _DSCEFFECTDESC
type DSCEFFECTDESC (line 333) | typedef const DSCEFFECTDESC *LPCDSCEFFECTDESC;
type DSBUFFERDESC (line 343) | typedef struct _DSBUFFERDESC
type DSBUFFERDESC (line 355) | typedef const DSBUFFERDESC *LPCDSBUFFERDESC;
type DSBUFFERDESC1 (line 359) | typedef struct _DSBUFFERDESC1
type DSBUFFERDESC1 (line 368) | typedef const DSBUFFERDESC1 *LPCDSBUFFERDESC1;
type DS3DBUFFER (line 370) | typedef struct _DS3DBUFFER
type DS3DBUFFER (line 384) | typedef const DS3DBUFFER *LPCDS3DBUFFER;
type DS3DLISTENER (line 386) | typedef struct _DS3DLISTENER
type DS3DLISTENER (line 398) | typedef const DS3DLISTENER *LPCDS3DLISTENER;
type DSCCAPS (line 400) | typedef struct _DSCCAPS
type DSCCAPS (line 408) | typedef const DSCCAPS *LPCDSCCAPS;
type DSCBUFFERDESC1 (line 410) | typedef struct _DSCBUFFERDESC1
type DSCBUFFERDESC (line 419) | typedef struct _DSCBUFFERDESC
type DSCBUFFERDESC (line 432) | typedef const DSCBUFFERDESC *LPCDSCBUFFERDESC;
type DSCBCAPS (line 434) | typedef struct _DSCBCAPS
type DSCBCAPS (line 442) | typedef const DSCBCAPS *LPCDSCBCAPS;
type DSBPOSITIONNOTIFY (line 444) | typedef struct _DSBPOSITIONNOTIFY
type DSBPOSITIONNOTIFY (line 450) | typedef const DSBPOSITIONNOTIFY *LPCDSBPOSITIONNOTIFY;
type LPCSTR (line 456) | typedef BOOL (CALLBACK *LPDSENUMCALLBACKA)(LPGUID, LPCSTR, LPCSTR, LPVOID);
type LPCWSTR (line 457) | typedef BOOL (CALLBACK *LPDSENUMCALLBACKW)(LPGUID, LPCWSTR, LPCWSTR, LPV...
type LONGLONG (line 518) | typedef LONGLONG REFERENCE_TIME;
type REFERENCE_TIME (line 519) | typedef REFERENCE_TIME *LPREFERENCE_TIME;
FILE: rtaudio/include/iasiodrv.h
type interface (line 8) | typedef interface IASIO IASIO;
function interface (line 11) | interface IASIO : public IUnknown
FILE: rtaudio/include/iasiothiscallresolver.cpp
function HRESULT (line 375) | HRESULT STDMETHODCALLTYPE IASIOThiscallResolver::QueryInterface(REFIID r...
function ULONG (line 385) | ULONG STDMETHODCALLTYPE IASIOThiscallResolver::AddRef()
function ULONG (line 392) | ULONG STDMETHODCALLTYPE IASIOThiscallResolver::Release()
function ASIOBool (line 402) | ASIOBool IASIOThiscallResolver::init(void *sysHandle)
function ASIOError (line 426) | ASIOError IASIOThiscallResolver::start()
function ASIOError (line 433) | ASIOError IASIOThiscallResolver::stop()
function ASIOError (line 440) | ASIOError IASIOThiscallResolver::getChannels(long *numInputChannels, lon...
function ASIOError (line 447) | ASIOError IASIOThiscallResolver::getLatencies(long *inputLatency, long *...
function ASIOError (line 454) | ASIOError IASIOThiscallResolver::getBufferSize(long *minSize, long *maxS...
function ASIOError (line 462) | ASIOError IASIOThiscallResolver::canSampleRate(ASIOSampleRate sampleRate)
function ASIOError (line 469) | ASIOError IASIOThiscallResolver::getSampleRate(ASIOSampleRate *sampleRate)
function ASIOError (line 476) | ASIOError IASIOThiscallResolver::setSampleRate(ASIOSampleRate sampleRate)
function ASIOError (line 483) | ASIOError IASIOThiscallResolver::getClockSources(ASIOClockSource *clocks...
function ASIOError (line 490) | ASIOError IASIOThiscallResolver::setClockSource(long reference)
function ASIOError (line 497) | ASIOError IASIOThiscallResolver::getSamplePosition(ASIOSamples *sPos, AS...
function ASIOError (line 504) | ASIOError IASIOThiscallResolver::getChannelInfo(ASIOChannelInfo *info)
function ASIOError (line 511) | ASIOError IASIOThiscallResolver::createBuffers(ASIOBufferInfo *bufferInfos,
function ASIOError (line 519) | ASIOError IASIOThiscallResolver::disposeBuffers()
function ASIOError (line 526) | ASIOError IASIOThiscallResolver::controlPanel()
function ASIOError (line 533) | ASIOError IASIOThiscallResolver::future(long selector,void *opt)
function ASIOError (line 540) | ASIOError IASIOThiscallResolver::outputReady()
function ASIOError (line 549) | ASIOError IASIOThiscallResolver::ASIOInit(ASIODriverInfo *info)
FILE: rtaudio/include/iasiothiscallresolver.h
function class (line 141) | class IASIOThiscallResolver : public IASIO {
FILE: rtaudio/include/soundcard.h
type snd_size (line 136) | struct snd_size {
type snd_chan_param (line 219) | typedef struct _snd_chan_param {
type snd_mix_param (line 232) | typedef struct _snd_mix_param {
type snd_sync_parm (line 258) | typedef struct _snd_sync_parm {
type snd_capabilities (line 273) | typedef struct _snd_capabilities {
type seq_event_rec (line 313) | struct seq_event_rec {
type patch_info (line 349) | struct patch_info {
type sysex_info (line 431) | struct sysex_info {
type patmgr_info (line 466) | struct patmgr_info { /* Note! size must be < 4k since kmalloc() is used */
type u_char (line 683) | typedef u_char sbi_instr_data[32];
type sbi_instrument (line 685) | struct sbi_instrument {
type synth_info (line 695) | struct synth_info { /* Read only */
type sound_timer_info (line 723) | struct sound_timer_info {
type midi_info (line 728) | struct midi_info {
type mpu_command_rec (line 739) | typedef struct {
type audio_buf_info (line 784) | typedef struct audio_buf_info {
type count_info (line 825) | typedef struct count_info {
type buffmem_desc (line 837) | typedef struct buffmem_desc {
type copr_buffer (line 862) | typedef struct copr_buffer {
type copr_debug_buf (line 874) | typedef struct copr_debug_buf {
type copr_msg (line 882) | typedef struct copr_msg {
type mixer_info (line 1089) | typedef struct mixer_info {
type audio_errinfo (line 1481) | typedef struct audio_errinfo
type oss_syncgroup (line 1505) | typedef struct oss_syncgroup
type oss_count_t (line 1563) | typedef struct
type oss_sysinfo (line 1622) | typedef struct oss_sysinfo
type oss_mixext (line 1645) | typedef struct oss_mixext
type oss_mixext_root (line 1714) | typedef struct oss_mixext_root
type oss_mixer_value (line 1720) | typedef struct oss_mixer_value
type oss_mixer_enuminfo (line 1731) | typedef struct oss_mixer_enuminfo
type oss_audioinfo (line 1751) | typedef struct oss_audioinfo
type oss_mixerinfo (line 1788) | typedef struct oss_mixerinfo
type oss_midi_info (line 1813) | typedef struct oss_midi_info
type oss_card_info (line 1845) | typedef struct oss_card_info
FILE: rtaudio/tests/audioprobe.cpp
function main (line 14) | int main()
FILE: rtaudio/tests/duplex.cpp
function usage (line 38) | void usage( void ) {
function inout (line 51) | int inout( void *outputBuffer, void *inputBuffer, unsigned int nBufferFr...
function main (line 63) | int main( int argc, char *argv[] )
FILE: rtaudio/tests/playraw.cpp
function usage (line 55) | void usage( void ) {
type OutputData (line 67) | struct OutputData {
function output (line 73) | int output( void *outputBuffer, void *inputBuffer, unsigned int nBufferF...
function main (line 92) | int main( int argc, char *argv[] )
FILE: rtaudio/tests/playsaw.cpp
function usage (line 55) | void usage( void ) {
function saw (line 78) | int saw( void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames,
function saw (line 104) | int saw( void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames,
function main (line 131) | int main( int argc, char *argv[] )
FILE: rtaudio/tests/record.cpp
function usage (line 49) | void usage( void ) {
type InputData (line 61) | struct InputData {
function input (line 70) | int input( void *outputBuffer, void *inputBuffer, unsigned int nBufferFr...
function main (line 90) | int main( int argc, char *argv[] )
FILE: rtaudio/tests/testall.cpp
function usage (line 19) | void usage( void ) {
function sawi (line 35) | int sawi( void *outputBuffer, void *inputBuffer, unsigned int nBufferFra...
function sawni (line 58) | int sawni( void *outputBuffer, void *inputBuffer, unsigned int nBufferFr...
function inout (line 82) | int inout( void *outputBuffer, void *inputBuffer, unsigned int nBufferFr...
function main (line 94) | int main( int argc, char *argv[] )
FILE: rtaudio/tests/teststops.cpp
function usage (line 32) | void usage( void ) {
type MyData (line 45) | struct MyData {
function pulse (line 54) | int pulse( void *outputBuffer, void *inputBuffer, unsigned int nBufferFr...
function main (line 80) | int main( int argc, char *argv[] )
FILE: rtmidi/RtError.h
function class (line 19) | class RtError : public std::exception
function virtual (line 47) | virtual const Type& getType(void) const throw() { return type_; }
function virtual (line 50) | virtual const std::string& getMessage(void) const throw() { return messa...
function virtual (line 53) | virtual const char* what( void ) const throw() { return message_.c_str(); }
FILE: rtmidi/RtMidi.cpp
type CoreMidiData (line 352) | struct CoreMidiData {
function midiInputCallback (line 366) | void midiInputCallback( const MIDIPacketList *list, void *procRef, void ...
function CFStringRef (line 641) | CFStringRef EndpointName( MIDIEndpointRef endpoint, bool isExternal )
function CFStringRef (line 711) | static CFStringRef ConnectedEndpointName( MIDIEndpointRef endpoint )
function sysexCompletionProc (line 937) | void sysexCompletionProc( MIDISysexSendRequest * sreq )
type AlsaMidiData (line 1063) | struct AlsaMidiData {
function snd_seq_t (line 1080) | snd_seq_t* createSequencer( const std::string& clientName )
function freeSequencer (line 1103) | void freeSequencer ( void )
type pollfd (line 1128) | struct pollfd
type pollfd (line 1151) | struct pollfd
type pollfd (line 1151) | struct pollfd
function portInfo (line 1376) | unsigned int portInfo( snd_seq_t *seq, snd_seq_port_info_t *pinfo, unsig...
type WinMidiData (line 1876) | struct WinMidiData {
function midiInputCallback (line 1889) | static void CALLBACK midiInputCallback( HMIDIIN hmin,
function IsValid (line 2388) | inline bool IsValid(HANDLE handle)
class ComException (line 2393) | class ComException : public std::runtime_error
method MakeString (line 2396) | static std::string MakeString(std::string const& s, HRESULT hr)
method ComException (line 2404) | ComException(std::string const& s, HRESULT hr) :
class CKsEnumFilters (line 2411) | class CKsEnumFilters
method EnumFilters (line 2419) | void EnumFilters(GUID const* categories, size_t numCategories)
method DestroyLists (line 2500) | void DestroyLists()
class CKsObject (line 2512) | class CKsObject
method CKsObject (line 2515) | CKsObject(HANDLE handle) : m_handle(handle)
method SetProperty (line 2522) | void SetProperty(REFGUID guidPropertySet, ULONG nProperty, void* pvVal...
method HRESULT (line 2537) | HRESULT DeviceIoControlKsProperty(KSPROPERTY& ksProperty, void* pvValu...
class CKsPin (line 2552) | class CKsPin
method KSPIN_DATAFLOW (line 2663) | KSPIN_DATAFLOW GetDataFlow() const
method IsSink (line 2668) | bool IsSink() const
class CKsFilter (line 2554) | class CKsFilter : public CKsObject
method T (line 2565) | T GetPinProperty(ULONG nPinId, ULONG nProperty)
method GetPinPropertyMulti (line 2592) | void GetPinPropertyMulti(ULONG nPinId, REFGUID guidPropertySet, ULONG ...
class CKsPin (line 2648) | class CKsPin : public CKsObject
method KSPIN_DATAFLOW (line 2663) | KSPIN_DATAFLOW GetDataFlow() const
method IsSink (line 2668) | bool IsSink() const
class CKsMidiFilter (line 2842) | class CKsMidiFilter : public CKsFilter
class CKsMidiPin (line 2851) | class CKsMidiPin : public CKsPin
class CKsMidiRenFilter (line 2857) | class CKsMidiRenFilter : public CKsMidiFilter
method Validate (line 2863) | void Validate()
class CKsMidiCapFilter (line 2870) | class CKsMidiCapFilter : public CKsMidiFilter
method Validate (line 2876) | void Validate()
function CKsMidiPin (line 2928) | CKsMidiPin* CKsMidiRenFilter::CreateRenderPin()
function CKsMidiPin (line 2943) | CKsMidiPin* CKsMidiCapFilter::CreateCapturePin()
type WindowsKsData (line 3021) | struct WindowsKsData
method WindowsKsData (line 3023) | WindowsKsData() : m_pPin(NULL), m_Buffer(1024), m_hInputThread(NULL)
function DWORD (line 3051) | DWORD WINAPI midiKsInputThread(VOID* pUser)
type JackMidiData (line 3393) | struct JackMidiData {
function jackProcessIn (line 3407) | int jackProcessIn( jack_nframes_t nframes, void *arg )
function jackProcessOut (line 3586) | int jackProcessOut( jack_nframes_t nframes, void *arg )
FILE: rtmidi/RtMidi.h
function class (line 52) | class RtMidi
function class (line 134) | class RtMidiIn : public RtMidi
function class (line 249) | class RtMidiOut : public RtMidi
function class (line 328) | class MidiInApi
FILE: rtmidi/include/ks.h
type KSRESET (line 63) | typedef enum
type KSSTATE (line 69) | typedef enum
type KSPRIORITY (line 82) | typedef struct
type KSIDENTIFIER (line 102) | typedef KSIDENTIFIER KSPROPERTY, * PKSPROPERTY, KSMETHOD, * PKSMETHOD, K...
type KSP_NODE (line 130) | typedef struct
type KSM_NODE (line 137) | typedef struct
type KSE_NODE (line 144) | typedef struct
type KSMULTIPLE_ITEM (line 156) | typedef struct
type KSPROPERTY_DESCRIPTION (line 162) | typedef struct
type KSPROPERTY_MEMBERSHEADER (line 179) | typedef struct
function _KS_ANON_STRUCT (line 194) | _KS_ANON_STRUCT(_UNSIGNED)
function _KS_ANON_STRUCT (line 208) | _KS_ANON_STRUCT(_UNSIGNED64)
type KSPROPERTY_STEPPING_LONG (line 215) | typedef struct
type KSPROPERTY_STEPPING_LONGLONG (line 222) | typedef struct
type KSDEVICE_DESCRIPTOR (line 229) | typedef struct _KSDEVICE_DESCRIPTOR KSDEVICE_DESCRIPTOR, * PKSDEVICE_DES...
type KSDEVICE_DISPATCH (line 230) | typedef struct _KSDEVICE_DISPATCH KSDEVICE_DISPATCH, * PKSDEVICE_DISPATCH;
type KSDEVICE (line 231) | typedef struct _KSDEVICE KSDEVICE, * PKSDEVICE;
type KSFILTERFACTORY (line 232) | typedef struct _KSFILTERFACTORY KSFILTERFACTORY, * PKSFILTERFACTORY;
type KSFILTER_DESCRIPTOR (line 233) | typedef struct _KSFILTER_DESCRIPTOR KSFILTER_DESCRIPTOR, * PKSFILTER_DES...
type KSFILTER_DISPATCH (line 234) | typedef struct _KSFILTER_DISPATCH KSFILTER_DISPATCH, * PKSFILTER_DISPATCH;
type KSFILTER (line 235) | typedef struct _KSFILTER KSFILTER, * PKSFILTER;
type KSPIN_DESCRIPTOR_EX (line 236) | typedef struct _KSPIN_DESCRIPTOR_EX KSPIN_DESCRIPTOR_EX, * PKSPIN_DESCRI...
type KSPIN_DISPATCH (line 237) | typedef struct _KSPIN_DISPATCH KSPIN_DISPATCH, * PKSPIN_DISPATCH;
type KSCLOCK_DISPATCH (line 238) | typedef struct _KSCLOCK_DISPATCH KSCLOCK_DISPATCH, * PKSCLOCK_DISPATCH;
type KSALLOCATOR_DISPATCH (line 239) | typedef struct _KSALLOCATOR_DISPATCH KSALLOCATOR_DISPATCH, * PKSALLOCATO...
type KSPIN (line 240) | typedef struct _KSPIN KSPIN, * PKSPIN;
type KSNODE_DESCRIPTOR (line 241) | typedef struct _KSNODE_DESCRIPTOR KSNODE_DESCRIPTOR, * PKSNODE_DESCRIPTOR;
type KSSTREAM_POINTER_OFFSET (line 242) | typedef struct _KSSTREAM_POINTER_OFFSET KSSTREAM_POINTER_OFFSET, * PKSST...
type KSSTREAM_POINTER (line 243) | typedef struct _KSSTREAM_POINTER KSSTREAM_POINTER, * PKSSTREAM_POINTER;
type KSMAPPING (line 244) | typedef struct _KSMAPPING KSMAPPING, * PKSMAPPING;
type KSPROCESSPIN (line 245) | typedef struct _KSPROCESSPIN KSPROCESSPIN, * PKSPROCESSPIN;
type KSPROCESSPIN_INDEXENTRY (line 246) | typedef struct _KSPROCESSPIN_INDEXENTRY KSPROCESSPIN_INDEXENTRY, * PKSPR...
type PVOID (line 249) | typedef PVOID PKSWORKER;
type KSEVENTDATA (line 251) | typedef struct
type KSQUERYBUFFER (line 326) | typedef struct
type KSEVENT_TIME_MARK (line 350) | typedef struct
type KSEVENT_TIME_INTERVAL (line 356) | typedef struct
type KSINTERVAL (line 363) | typedef struct
type KSPROPERTY_GENERAL (line 374) | typedef enum
type KSCOMPONENTID (line 379) | typedef struct
type KSMETHOD_STREAMIO (line 402) | typedef enum
type KSPROPERTY_MEDIASEEKING (line 431) | typedef enum
type KS_SEEKING_FLAGS (line 445) | typedef enum
type KS_SEEKING_CAPABILITIES (line 456) | typedef enum
type KSPROPERTY_POSITIONS (line 467) | typedef struct
type KSPROPERTY_MEDIAAVAILABLE (line 475) | typedef struct
type KSP_TIMEFORMAT (line 481) | typedef struct
type KSPROPERTY_TOPOLOGY (line 576) | typedef enum
type KSTOPOLOGY_CONNECTION (line 699) | typedef struct
type KSTOPOLOGY (line 707) | typedef struct
type KSNODE_CREATE (line 722) | typedef struct
type KSIDENTIFIER (line 756) | typedef KSIDENTIFIER KSPIN_INTERFACE, * PKSPIN_INTERFACE;
type KSINTERFACE_STANDARD (line 763) | typedef enum
type KSINTERFACE_FILEIO (line 775) | typedef enum
type KSPROPERTY_PIN (line 794) | typedef enum
type KSP_PIN (line 813) | typedef struct
type KSPIN_CINSTANCES (line 822) | typedef struct
type KSPIN_DATAFLOW (line 828) | typedef enum
type KSATTRIBUTE (line 861) | typedef struct
type KSATTRIBUTE_LIST (line 869) | typedef struct
type KSPIN_COMMUNICATION (line 876) | typedef enum
type KSIDENTIFIER (line 885) | typedef KSIDENTIFIER KSPIN_MEDIUM, * PKSPIN_MEDIUM;
type KSPIN_CONNECT (line 887) | typedef struct
type KSPIN_PHYSICALCONNECTION (line 896) | typedef struct
type NTSTATUS (line 904) | typedef NTSTATUS (*PFNKSINTERSECTHANDLER)(PIRP Irp, PKSP_PIN Pin,
type NTSTATUS (line 907) | typedef NTSTATUS (*PFNKSINTERSECTHANDLEREX)(PVOID Context, PIRP Irp,
type KSPIN_DESCRIPTOR (line 1119) | typedef struct
type KSPIN_DESCRIPTOR (line 1141) | typedef const KSPIN_DESCRIPTOR* PCKSPIN_DESCRIPTOR;
type KSPROPERTY_QUALITY (line 1200) | typedef enum
type KSPROPERTY_CONNECTION (line 1229) | typedef enum
type PVOID (line 1350) | typedef PVOID (*PFNKSDEFAULTALLOCATE)(PVOID Context);
type VOID (line 1351) | typedef VOID (*PFNKSDEFAULTFREE)(PVOID Context, PVOID Buffer);
type NTSTATUS (line 1352) | typedef NTSTATUS (*PFNKSINITIALIZEALLOCATOR)(PVOID InitialContext,
type VOID (line 1355) | typedef VOID (*PFNKSDELETEALLOCATOR)(PVOID Context);
type KS_FRAMING_RANGE (line 1358) | typedef struct
type KS_FRAMING_RANGE_WEIGHTED (line 1365) | typedef struct
type KS_COMPRESSION (line 1372) | typedef struct
type KS_FRAMING_ITEM (line 1379) | typedef struct
type KSALLOCATOR_FRAMING_EX (line 1393) | typedef struct
type KSEVENT_STREAMALLOCATOR (line 1535) | typedef enum
type KSMETHOD_STREAMALLOCATOR (line 1546) | typedef enum
type KSPROPERTY_STREAMALLOCATOR (line 1582) | typedef enum
type NTSTATUS (line 1610) | typedef NTSTATUS (*PFNALLOCATOR_ALLOCATEFRAME)(PFILE_OBJECT FileObject,
type VOID (line 1612) | typedef VOID (*PFNALLOCATOR_FREEFRAME)(PFILE_OBJECT FileObject, PVOID Fr...
type KSSTREAMALLOCATOR_FUNCTIONTABLE (line 1614) | typedef struct
type KSSTREAMALLOCATOR_STATUS (line 1621) | typedef struct
type KSSTREAMALLOCATOR_STATUS_EX (line 1628) | typedef struct
type KSTIME (line 1646) | typedef struct
type KSSTREAM_HEADER (line 1653) | typedef struct
type KSPROPERTY_STREAMINTERFACE (line 1673) | typedef enum
type KSPROPERTY_STREAM (line 1696) | typedef enum
type KSQUALITY_MANAGER (line 1805) | typedef struct
type KSFRAMETIME (line 1811) | typedef struct
type KSRATE (line 1820) | typedef struct
type KSRATE_CAPABILITY (line 1832) | typedef struct
type KSCLOCK_CREATE (line 1849) | typedef struct
type KSCORRELATED_TIME (line 1854) | typedef struct
type KSRESOLUTION (line 1860) | typedef struct
type KSPROPERTY_CLOCK (line 1866) | typedef enum
type KSCLOCK_FUNCTIONTABLE (line 1884) | typedef struct
type BOOLEAN (line 1892) | typedef BOOLEAN (*PFNKSSETTIMER)(PVOID Context, PKTIMER Timer,
type BOOLEAN (line 1894) | typedef BOOLEAN (*PFNKSCANCELTIMER)(PVOID Context, PKTIMER Timer);
type PVOID (line 1898) | typedef PVOID PKSDEFAULTCLOCK;
type KSEVENT_CLOCK_POSITION (line 1969) | typedef enum
type KSEVENT_CONNECTION (line 1980) | typedef enum
type KSQUALITY (line 1989) | typedef struct
type KSERROR (line 1996) | typedef struct
type KSIDENTIFIER (line 2002) | typedef KSIDENTIFIER KSDEGRADE, * PKSDEGRADE;
type KSDEGRADE_STANDARD (line 2009) | typedef enum
type NTSTATUS (line 2034) | typedef NTSTATUS (*PFNKSCONTEXT_DISPATCH)(PVOID Context, PIRP Irp);
type NTSTATUS (line 2035) | typedef NTSTATUS (*PFNKSHANDLER)(PIRP Irp, PKSIDENTIFIER Request, PVOID ...
type BOOLEAN (line 2036) | typedef BOOLEAN (*PFNKSFASTHANDLER)(PFILE_OBJECT FileObject,
type NTSTATUS (line 2041) | typedef NTSTATUS (*PFNKSALLOCATOR)(PIRP Irp, ULONG BufferSize,
type KSPROPERTY_MEMBERSLIST (line 2044) | typedef struct
type KSPROPERTY_VALUES (line 2050) | typedef struct
function __MINGW_EXTENSION (line 2081) | __MINGW_EXTENSION union
function __MINGW_EXTENSION (line 2107) | __MINGW_EXTENSION union
type KSPROPERTY_SET (line 2125) | typedef struct
type KSFASTMETHOD_ITEM (line 2163) | typedef struct
type KSMETHOD_SET (line 2183) | typedef struct
type KSEVENT_ENTRY (line 2192) | typedef struct _KSEVENT_ENTRY KSEVENT_ENTRY, * PKSEVENT_ENTRY;
type NTSTATUS (line 2193) | typedef NTSTATUS (*PFNKSADDEVENT)(PIRP Irp, PKSEVENTDATA EventData,
type VOID (line 2195) | typedef VOID (*PFNKSREMOVEEVENT)(PFILE_OBJECT FileObject,
type KSEVENT_ITEM (line 2207) | typedef struct
type KSEVENT_SET (line 2225) | typedef struct
type KSDPC_ITEM (line 2232) | typedef struct
type KSBUFFER_ITEM (line 2239) | typedef struct
type _KSEVENT_ENTRY (line 2249) | struct _KSEVENT_ENTRY
type KSEVENTS_LOCKTYPE (line 2268) | typedef enum
type KSOBJECT_CREATE_ITEM (line 2281) | typedef struct
type VOID (line 2290) | typedef VOID (*PFNKSITEMFREECALLBACK)(PKSOBJECT_CREATE_ITEM CreateItem);
type KSOBJECT_CREATE (line 2332) | typedef struct
type KSDISPATCH_TABLE (line 2338) | typedef struct
type PVOID (line 2390) | typedef PVOID KSDEVICE_HEADER, KSOBJECT_HEADER;
type KSCOMPLETION_INVOCATION (line 2392) | typedef enum
type KSLIST_ENTRY_LOCATION (line 2399) | typedef enum
type KSIRP_REMOVAL_OPERATION (line 2405) | typedef enum
type KSSTACK_USE (line 2413) | typedef enum
type KSTARGET_STATE (line 2420) | typedef enum
type NTSTATUS (line 2426) | typedef NTSTATUS (*PFNKSIRPLISTCALLBACK)(PIRP Irp, PVOID Context);
type VOID (line 2427) | typedef VOID (*PFNREFERENCEDEVICEOBJECT)(PVOID Context);
type VOID (line 2428) | typedef VOID (*PFNDEREFERENCEDEVICEOBJECT)(PVOID Context);
type NTSTATUS (line 2429) | typedef NTSTATUS (*PFNQUERYREFERENCESTRING)(PVOID Context, PWCHAR* String);
type BUS_INTERFACE_REFERENCE (line 2433) | typedef struct
type KSPROPERTY_SERIALHDR (line 2451) | typedef struct
type KSPROPERTY_SERIAL (line 2461) | typedef struct
type KSHANDSHAKE (line 2473) | typedef struct
type KSGATE (line 2480) | typedef struct _KSGATE KSGATE, * PKSGATE;
type _KSGATE (line 2482) | struct _KSGATE
type PVOID (line 2488) | typedef PVOID KSOBJECT_BAG;
type BOOLEAN (line 2490) | typedef BOOLEAN (*PFNKSGENERATEEVENTCALLBACK)(PVOID Context,
type NTSTATUS (line 2493) | typedef NTSTATUS (*PFNKSDEVICECREATE)(PKSDEVICE Device);
type NTSTATUS (line 2495) | typedef NTSTATUS (*PFNKSDEVICEPNPSTART)(PKSDEVICE Device, PIRP Irp,
type NTSTATUS (line 2499) | typedef NTSTATUS (*PFNKSDEVICE)(PKSDEVICE Device);
type NTSTATUS (line 2501) | typedef NTSTATUS (*PFNKSDEVICEIRP)(PKSDEVICE Device, PIRP Irp);
type NTSTATUS (line 2505) | typedef NTSTATUS (*PFNKSDEVICEQUERYCAPABILITIES)(PKSDEVICE Device, PIRP ...
type NTSTATUS (line 2508) | typedef NTSTATUS (*PFNKSDEVICEQUERYPOWER)(PKSDEVICE Device, PIRP Irp,
type NTSTATUS (line 2519) | typedef NTSTATUS (*PFNKSFILTERFACTORYVOID)(PKSFILTERFACTORY FilterFactory);
type NTSTATUS (line 2524) | typedef NTSTATUS (*PFNKSFILTERIRP)(PKSFILTER Filter, PIRP Irp);
type NTSTATUS (line 2526) | typedef NTSTATUS (*PFNKSFILTERPROCESS)(PKSFILTER Filter,
type NTSTATUS (line 2529) | typedef NTSTATUS (*PFNKSFILTERVOID)(PKSFILTER Filter);
type NTSTATUS (line 2533) | typedef NTSTATUS (*PFNKSPINIRP)(PKSPIN Pin, PIRP Irp);
type NTSTATUS (line 2535) | typedef NTSTATUS (*PFNKSPINSETDEVICESTATE)(PKSPIN Pin, KSSTATE ToState,
type NTSTATUS (line 2538) | typedef NTSTATUS (*PFNKSPINSETDATAFORMAT)(PKSPIN Pin, PKSDATAFORMAT OldF...
type NTSTATUS (line 2543) | typedef NTSTATUS (*PFNKSPINHANDSHAKE)(PKSPIN Pin, PKSHANDSHAKE In,
type NTSTATUS (line 2546) | typedef NTSTATUS (*PFNKSPIN)(PKSPIN Pin);
type BOOLEAN (line 2552) | typedef BOOLEAN (*PFNKSPINSETTIMER)(PKSPIN Pin, PKTIMER Timer,
type BOOLEAN (line 2555) | typedef BOOLEAN (*PFNKSPINCANCELTIMER)(PKSPIN Pin, PKTIMER Timer);
type NTSTATUS (line 2562) | typedef NTSTATUS (*PFNKSPININITIALIZEALLOCATOR)(PKSPIN Pin,
type KSAUTOMATION_TABLE (line 2568) | typedef struct KSAUTOMATION_TABLE_ KSAUTOMATION_TABLE, * PKSAUTOMATION_T...
type KSAUTOMATION_TABLE_ (line 2570) | struct KSAUTOMATION_TABLE_
type _KSDEVICE_DISPATCH (line 2621) | struct _KSDEVICE_DISPATCH
type _KSFILTER_DISPATCH (line 2639) | struct _KSFILTER_DISPATCH
type _KSPIN_DISPATCH (line 2647) | struct _KSPIN_DISPATCH
type _KSCLOCK_DISPATCH (line 2661) | struct _KSCLOCK_DISPATCH
type _KSALLOCATOR_DISPATCH (line 2669) | struct _KSALLOCATOR_DISPATCH
type _KSDEVICE_DESCRIPTOR (line 2679) | struct _KSDEVICE_DESCRIPTOR
type _KSFILTER_DESCRIPTOR (line 2687) | struct _KSFILTER_DESCRIPTOR
type _KSPIN_DESCRIPTOR_EX (line 2754) | struct _KSPIN_DESCRIPTOR_EX
type _KSNODE_DESCRIPTOR (line 2795) | struct _KSNODE_DESCRIPTOR
type _KSDEVICE (line 2813) | struct _KSDEVICE
type _KSFILTERFACTORY (line 2826) | struct _KSFILTERFACTORY
type _KSFILTER (line 2833) | struct _KSFILTER
type _KSPIN (line 2840) | struct _KSPIN
type _KSMAPPING (line 2860) | struct _KSMAPPING
type _KSSTREAM_POINTER_OFFSET (line 2867) | struct _KSSTREAM_POINTER_OFFSET
type _KSSTREAM_POINTER (line 2885) | struct _KSSTREAM_POINTER
type _KSPROCESSPIN (line 2895) | struct _KSPROCESSPIN
type _KSPROCESSPIN_INDEXENTRY (line 2909) | struct _KSPROCESSPIN_INDEXENTRY
type KSOBJECTTYPE (line 2915) | typedef enum
type IKsControl (line 2934) | struct IKsControl
type IKsReferenceClock (line 2973) | struct IKsReferenceClock
function KsFilterAddEvent (line 3273) | void __forceinline KsFilterAddEvent(PKSFILTER Filter, PKSEVENT_ENTRY Eve...
function KsPinAddEvent (line 3278) | void __forceinline KsPinAddEvent(PKSPIN Pin, PKSEVENT_ENTRY EventEntry)
function KsFilterGenerateEvents (line 3287) | void __forceinline KsFilterGenerateEvents(PKSFILTER Filter, const GUID* ...
function KsPinGenerateEvents (line 3293) | void __forceinline KsPinGenerateEvents(PKSPIN Pin, const GUID* EventSet,...
type KSSTREAM_POINTER_STATE (line 3299) | typedef enum
function PKSFILTER (line 3342) | PKSFILTER __forceinline KsGetFilterFromFileObject(PFILE_OBJECT FileObject)
function PKSPIN (line 3347) | PKSPIN __forceinline KsGetPinFromFileObject(PFILE_OBJECT FileObject)
function PKSDEVICE (line 3368) | PKSDEVICE __forceinline KsFilterFactoryGetParentDevice(PKSFILTERFACTORY ...
function PKSFILTERFACTORY (line 3373) | PKSFILTERFACTORY __forceinline KsFilterGetParentFilterFactory(PKSFILTER ...
function PKSFILTERFACTORY (line 3381) | PKSFILTERFACTORY __forceinline KsDeviceGetFirstChildFilterFactory(PKSDEV...
function PKSFILTER (line 3386) | PKSFILTER __forceinline KsFilterFactoryGetFirstChildFilter(PKSFILTERFACT...
function PKSFILTERFACTORY (line 3396) | PKSFILTERFACTORY __forceinline KsFilterFactoryGetNextSiblingFilterFactor...
function PKSFILTER (line 3401) | PKSFILTER __forceinline KsFilterGetNextSiblingFilter(PKSFILTER Filter)
function PKSDEVICE (line 3408) | PKSDEVICE __forceinline KsFilterFactoryGetDevice(PKSFILTERFACTORY Filter...
function PKSDEVICE (line 3413) | PKSDEVICE __forceinline KsFilterGetDevice(PKSFILTER Filter)
function PKSDEVICE (line 3418) | PKSDEVICE __forceinline KsPinGetDevice(PKSPIN Pin)
function KsFilterAcquireControl (line 3429) | void __forceinline KsFilterAcquireControl(PKSFILTER Filter)
function KsFilterReleaseControl (line 3434) | void __forceinline KsFilterReleaseControl(PKSFILTER Filter)
function KsPinAcquireControl (line 3439) | void __forceinline KsPinAcquireControl(PKSPIN Pin)
function KsPinReleaseControl (line 3444) | void __forceinline KsPinReleaseControl(PKSPIN Pin)
function PUNKNOWN (line 3510) | PUNKNOWN __forceinline KsDeviceRegisterAggregatedClientUnknown(PKSDEVICE...
function PUNKNOWN (line 3515) | PUNKNOWN __forceinline KsDeviceGetOuterUnknown(PKSDEVICE Device)
function PUNKNOWN (line 3520) | PUNKNOWN __forceinline KsFilterFactoryRegisterAggregatedClientUnknown(PK...
function PUNKNOWN (line 3525) | PUNKNOWN __forceinline KsFilterFactoryGetOuterUnknown(PKSFILTERFACTORY F...
function PUNKNOWN (line 3530) | PUNKNOWN __forceinline KsFilterRegisterAggregatedClientUnknown(PKSFILTER...
function PUNKNOWN (line 3535) | PUNKNOWN __forceinline KsFilterGetOuterUnknown(PKSFILTER Filter)
function PUNKNOWN (line 3540) | PUNKNOWN __forceinline KsPinRegisterAggregatedClientUnknown(PKSPIN Pin, ...
function PUNKNOWN (line 3545) | PUNKNOWN __forceinline KsPinGetOuterUnknown(PKSPIN Pin)
FILE: rtmidi/include/ksmedia.h
type KSMULTIPLE_DATA_PROP (line 17) | typedef struct
type KSINTERFACE_MEDIA (line 38) | typedef enum
type KSDATAFORMAT_WAVEFORMATEX (line 670) | typedef struct
type WAVEFORMATEXTENSIBLE (line 678) | typedef struct
type KSDSOUND_BUFFERDESC (line 697) | typedef struct
type KSDATAFORMAT_DSOUND (line 704) | typedef struct
type KSAUDIO_POSITION (line 726) | typedef struct
type _DS3DVECTOR (line 732) | struct _DS3DVECTOR
function __MINGW_EXTENSION (line 739) | __MINGW_EXTENSION union
function __MINGW_EXTENSION (line 744) | __MINGW_EXTENSION union
type KSPROPERTY_DIRECTSOUND3DLISTENER (line 756) | typedef enum
type KSDS3D_LISTENER_ALL (line 769) | typedef struct
type KSDS3D_LISTENER_ORIENTATION (line 780) | typedef struct
type KSPROPERTY_DIRECTSOUND3DBUFFER (line 791) | typedef enum
type KSDS3D_BUFFER_ALL (line 804) | typedef struct
type KSDS3D_BUFFER_CONE_ANGLES (line 817) | typedef struct
type KSDS3D_HRTF_PARAMS_MSG (line 835) | typedef struct
type KSDS3D_HRTF_FILTER_QUALITY (line 845) | typedef enum
type KSDS3D_HRTF_INIT_MSG (line 852) | typedef struct
type KSDS3D_HRTF_COEFF_FORMAT (line 864) | typedef enum
type KSDS3D_HRTF_FILTER_METHOD (line 871) | typedef enum
type KSDS3D_HRTF_FILTER_VERSION (line 878) | typedef enum
type KSDS3D_HRTF_FILTER_FORMAT_MSG (line 883) | typedef struct
type KSPROPERTY_HRTF3D (line 896) | typedef enum
type KSDS3D_ITD_PARAMS (line 903) | typedef struct
type KSDS3D_ITD_PARAMS_MSG (line 913) | typedef struct
type KSPROPERTY_ITD3D (line 926) | typedef enum
type KSDATARANGE_AUDIO (line 931) | typedef struct
type KSPROPERTY_BIBLIOGRAPHIC (line 958) | typedef enum
type KSPROPERTY_TOPOLOGYNODE (line 1005) | typedef enum
type KSPROPERTY_RTAUDIO (line 1016) | typedef enum
type KSPROPERTY_DRMAUDIOSTREAM (line 1026) | typedef enum
type KSPROPERTY_AUDIO (line 1036) | typedef enum
type KSAUDIO_COPY_PROTECTION (line 1088) | typedef struct
type KSAUDIO_CHANNEL_CONFIG (line 1094) | typedef struct
type KSAUDIO_DYNAMIC_RANGE (line 1155) | typedef struct
type KSAUDIO_MIXLEVEL (line 1161) | typedef struct
type KSAUDIO_MIX_CAPS (line 1167) | typedef struct
type KSAUDIO_MIXCAP_TABLE (line 1175) | typedef struct
type SE_TECHNIQUE (line 1182) | typedef enum
type KSAUDIO_STEREO_ENHANCE (line 1207) | typedef struct
type KSPROPERTY_SYSAUDIO_DEFAULT_TYPE (line 1215) | typedef enum
type KSAUDIO_PREFERRED_STATUS (line 1224) | typedef struct
type KSMETHOD_WAVETABLE (line 1648) | typedef enum
type KSWAVETABLE_WAVE_DESC (line 1656) | typedef struct
type KSPROPERTY_AEC (line 1671) | typedef enum
type KSPROPERTY_WAVE (line 1692) | typedef enum
type KSWAVE_COMPATCAPS (line 1703) | typedef struct
type KSWAVE_INPUT_CAPABILITIES (line 1711) | typedef struct
type KSWAVE_OUTPUT_CAPABILITIES (line 1722) | typedef struct
type KSWAVE_VOLUME (line 1746) | typedef struct
type KSWAVE_BUFFER (line 1755) | typedef struct
type KSPROPERTY_WAVETABLE (line 1792) | typedef enum
type KSDATARANGE_MUSIC (line 1800) | typedef struct
type KSEVENT_CYCLIC_TIME (line 1814) | typedef enum
type KSPROPERTY_CYCLIC (line 1824) | typedef enum
type KSEVENT_AUDIO_CONTROL_CHANGE (line 1834) | typedef enum
type KSEVENT_LOOPEDSTREAMING (line 1844) | typedef enum
type LOOPEDSTREAMING_POSITION_EVENT_DATA (line 1849) | typedef struct
type KSPROPERTY_SYSAUDIO (line 1860) | typedef enum
type SYSAUDIO_CREATE_VIRTUAL_SOURCE (line 1873) | typedef struct
type SYSAUDIO_SELECT_GRAPH (line 1880) | typedef struct
type SYSAUDIO_INSTANCE_INFO (line 1889) | typedef struct
type KSPROPERTY_SYSAUDIO_PIN (line 1903) | typedef enum
type SYSAUDIO_ATTACH_VIRTUAL_SOURCE (line 1908) | typedef struct
type KSNODEPROPERTY (line 1915) | typedef struct
type KSNODEPROPERTY_AUDIO_CHANNEL (line 1922) | typedef struct
type KSNODEPROPERTY_AUDIO_DEV_SPECIFIC (line 1929) | typedef struct
type KSNODEPROPERTY_AUDIO_3D_LISTENER (line 1937) | typedef struct
type KSNODEPROPERTY_AUDIO_PROPERTY (line 1946) | typedef struct
type KSPROPERTY_AUDIOGFX (line 1961) | typedef enum
type KSPROPERTY_LINEAR (line 1972) | typedef enum
type KSMUSICFORMAT (line 2002) | typedef struct
type KSPROPERTY_MPEG2VID (line 2134) | typedef enum
type KSMPEGVID_RECT (line 2147) | typedef struct _KSMPEGVID_RECT
type KSPROPERTY_AC3 (line 2190) | typedef enum
type KSAC3_ERROR_CONCEALMENT (line 2201) | typedef struct
type KSAC3_ALTERNATE_AUDIO (line 2207) | typedef struct
type KSAC3_DOWNMIX (line 2217) | typedef struct
type KSAC3_BIT_STREAM_MODE (line 2223) | typedef struct
type KSAC3_DIALOGUE_LEVEL (line 2237) | typedef struct
type KSAC3_ROOM_TYPE (line 2242) | typedef struct
type KSPROPERTY_AUDDECOUT (line 2262) | typedef enum
type KSPROPERTY_DVDSUBPIC (line 2282) | typedef enum
type KS_DVD_YCrCb (line 2289) | typedef struct _KS_DVD_YCrCb
type KS_DVD_YUV (line 2297) | typedef struct _KS_DVD_YUV
type KSPROPERTY_SPPAL (line 2305) | typedef struct _KSPROPERTY_SPPAL
type KS_COLCON (line 2310) | typedef struct _KS_COLCON
type KSPROPERTY_SPHLI (line 2322) | typedef struct _KSPROPERTY_SPHLI
type WINBOOL (line 2335) | typedef WINBOOL KSPROPERTY_COMPOSIT_ON, * PKSPROPERTY_COMPOSIT_ON;
type KSPROPERTY_COPYPROT (line 2342) | typedef enum
type KS_DVDCOPY_CHLGKEY (line 2354) | typedef struct _KS_DVDCOPY_CHLGKEY
type KS_DVDCOPY_BUSKEY (line 2360) | typedef struct _KS_DVDCOPY_BUSKEY
type KS_DVDCOPY_DISCKEY (line 2366) | typedef struct _KS_DVDCOPY_DISCKEY
type KS_DVDCOPY_REGION (line 2371) | typedef struct _KS_DVDCOPY_REGION
type KS_DVDCOPY_TITLEKEY (line 2378) | typedef struct _KS_DVDCOPY_TITLEKEY
type KS_COPY_MACROVISION (line 2386) | typedef struct _KS_COPY_MACROVISION
type KS_DVDCOPY_SET_COPY_STATE (line 2391) | typedef struct _KS_DVDCOPY_SET_COPY_STATE
type KS_DVDCOPYSTATE (line 2396) | typedef enum
type KS_COPY_MACROVISION_LEVEL (line 2405) | typedef enum
type KS_RGBQUAD (line 2523) | typedef struct tagKS_RGBQUAD
type KS_BITMAPINFOHEADER (line 2543) | typedef struct tagKS_BITMAPINFOHEADER
type KS_TRUECOLORINFO (line 2558) | typedef struct tag_KS_TRUECOLORINFO
type LONGLONG (line 2569) | typedef LONGLONG REFERENCE_TIME;
type KS_VIDEOINFOHEADER (line 2571) | typedef struct tagKS_VIDEOINFOHEADER
type KS_VIDEOINFO (line 2581) | typedef struct tagKS_VIDEOINFO
type KS_VBIINFOHEADER (line 2602) | typedef struct tagKS_VBIINFOHEADER
type KS_ANALOGVIDEOINFO (line 2625) | typedef struct tagKS_AnalogVideoInfo
type KS_TVTUNER_CHANGE_INFO (line 2637) | typedef struct tagKS_TVTUNER_CHANGE_INFO
type KS_MPEG2Level (line 2645) | typedef enum
type KS_MPEG2Profile (line 2653) | typedef enum
type KS_VIDEOINFOHEADER2 (line 2686) | typedef struct tagKS_VIDEOINFOHEADER2
type KS_MPEG1VIDEOINFO (line 2702) | typedef struct tagKS_MPEG1VIDEOINFO
type KS_MPEGVIDEOINFO2 (line 2714) | typedef struct tagKS_MPEGVIDEOINFO2
type KS_MPEGAUDIOINFO (line 2730) | typedef struct tagKS_MPEAUDIOINFO
type KS_DATAFORMAT_VIDEOINFOHEADER (line 2738) | typedef struct tagKS_DATAFORMAT_VIDEOINFOHEADER
type KS_DATAFORMAT_VIDEOINFOHEADER2 (line 2744) | typedef struct tagKS_DATAFORMAT_VIDEOINFOHEADER2
type KS_DATAFORMAT_VIDEOINFO_PALETTE (line 2750) | typedef struct tagKS_DATAFORMAT_VIDEOINFO_PALETTE
type KS_DATAFORMAT_VBIINFOHEADER (line 2756) | typedef struct tagKS_DATAFORMAT_VBIINFOHEADER
type KS_VIDEO_STREAM_CONFIG_CAPS (line 2762) | typedef struct _KS_VIDEO_STREAM_CONFIG_CAPS
type KS_DATARANGE_VIDEO (line 2787) | typedef struct tagKS_DATARANGE_VIDEO
type KS_DATARANGE_VIDEO2 (line 2798) | typedef struct tagKS_DATARANGE_VIDEO2
type KS_DATARANGE_MPEG1_VIDEO (line 2809) | typedef struct tagKS_DATARANGE_MPEG1_VIDEO
type KS_DATARANGE_MPEG2_VIDEO (line 2820) | typedef struct tagKS_DATARANGE_MPEG2_VIDEO
type KS_DATARANGE_VIDEO_PALETTE (line 2831) | typedef struct tagKS_DATARANGE_VIDEO_PALETTE
type KS_DATARANGE_VIDEO_VBI (line 2842) | typedef struct tagKS_DATARANGE_VIDEO_VBI
type KS_DATARANGE_ANALOGVIDEO (line 2853) | typedef struct tagKS_DATARANGE_ANALOGVIDEO
type KSPROPERTY_VBICAP (line 2878) | typedef enum
type VBICAP_PROPERTIES_PROTECTION_S (line 2883) | typedef struct _VBICAP_PROPERTIES_PROTECTION_S
type NABTSFEC_BUFFER (line 2929) | typedef struct _NABTSFEC_BUFFER
type KSPROPERTY_VBICODECFILTERING (line 2942) | typedef enum
type VBICODECFILTERING_SCANLINES (line 2951) | typedef struct _VBICODECFILTERING_SCANLINES
type VBICODECFILTERING_NABTS_SUBSTREAMS (line 2956) | typedef struct _VBICODECFILTERING_NABTS_SUBSTREAMS
type VBICODECFILTERING_CC_SUBSTREAMS (line 2961) | typedef struct _VBICODECFILTERING_CC_SUBSTREAMS
type CC_BYTE_PAIR (line 2983) | typedef struct _CC_BYTE_PAIR
type CC_HW_FIELD (line 2989) | typedef struct _CC_HW_FIELD
type NABTS_BUFFER_LINE (line 3000) | typedef struct _NABTS_BUFFER_LINE
type NABTS_BUFFER (line 3007) | typedef struct _NABTS_BUFFER
type WST_BUFFER_LINE (line 3023) | typedef struct _WST_BUFFER_LINE
type WST_BUFFER (line 3029) | typedef struct _WST_BUFFER
type VBICODECFILTERING_STATISTICS_COMMON (line 3035) | typedef struct _VBICODECFILTERING_STATISTICS_COMMON
type VBICODECFILTERING_STATISTICS_COMMON_PIN (line 3053) | typedef struct _VBICODECFILTERING_STATISTICS_COMMON_PIN
type VBICODECFILTERING_STATISTICS_NABTS (line 3065) | typedef struct _VBICODECFILTERING_STATISTICS_NABTS
type VBICODECFILTERING_STATISTICS_NABTS_PIN (line 3077) | typedef struct _VBICODECFILTERING_STATISTICS_NABTS_PIN
type VBICODECFILTERING_STATISTICS_CC (line 3082) | typedef struct _VBICODECFILTERING_STATISTICS_CC
type VBICODECFILTERING_STATISTICS_CC_PIN (line 3087) | typedef struct _VBICODECFILTERING_STATISTICS_CC_PIN
type VBICODECFILTERING_STATISTICS_TELETEXT (line 3092) | typedef struct _VBICODECFILTERING_STATISTICS_TELETEXT
type VBICODECFILTERING_STATISTICS_TELETEXT_PIN (line 3097) | typedef struct _VBICODECFILTERING_STATISTICS_TELETEXT_PIN
type KSPROPERTY_VBICODECFILTERING_SCANLINES_S (line 3102) | typedef struct
type KSPROPERTY_VBICODECFILTERING_NABTS_SUBSTREAMS_S (line 3108) | typedef struct
type KSPROPERTY_VBICODECFILTERING_CC_SUBSTREAMS_S (line 3114) | typedef struct
type KSPROPERTY_VBICODECFILTERING_STATISTICS_COMMON_S (line 3120) | typedef struct
type KSPROPERTY_VBICODECFILTERING_STATISTICS_COMMON_PIN_S (line 3126) | typedef struct
type KSPROPERTY_VBICODECFILTERING_STATISTICS_NABTS_S (line 3132) | typedef struct
type KSPROPERTY_VBICODECFILTERING_STATISTICS_NABTS_PIN_S (line 3138) | typedef struct
type KSPROPERTY_VBICODECFILTERING_STATISTICS_CC_S (line 3144) | typedef struct
type KSPROPERTY_VBICODECFILTERING_STATISTICS_CC_PIN_S (line 3150) | typedef struct
type KS_FRAME_INFO (line 3240) | typedef struct tagKS_FRAME_INFO
type KS_VBI_FRAME_INFO (line 3266) | typedef struct tagKS_VBI_FRAME_INFO
type KS_AnalogVideoStandard (line 3277) | typedef enum
type KSPROPERTY_ALLOCATOR_CONTROL (line 3311) | typedef enum
type KSPROPERTY_ALLOCATOR_CONTROL_SURFACE_SIZE_S (line 3319) | typedef struct
type KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_CAPS_S (line 3325) | typedef struct
type KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_INTERLEAVE_S (line 3330) | typedef struct
type KSPROPERTY_VIDCAP_VIDEOPROCAMP (line 3340) | typedef enum
type KSPROPERTY_VIDEOPROCAMP_S (line 3358) | typedef struct
type KSPROPERTY_VIDEOPROCAMP_NODE_S (line 3366) | typedef struct
type KSPROPERTY_VIDEOPROCAMP_S2 (line 3374) | typedef struct
type KSPROPERTY_VIDEOPROCAMP_NODE_S2 (line 3383) | typedef struct
type KSPROPERTY_VIDCAP_SELECTOR (line 3400) | typedef enum
type KSPROPERTY_SELECTOR_S (line 3406) | typedef struct
type KSPROPERTY_SELECTOR_NODE_S (line 3414) | typedef struct
type KSPROPERTY_TUNER (line 3427) | typedef enum
type KSPROPERTY_TUNER_MODES (line 3439) | typedef enum
type KS_TUNER_TUNING_FLAGS (line 3448) | typedef enum
type KS_TUNER_STRATEGY (line 3455) | typedef enum
type KSPROPERTY_TUNER_CAPS_S (line 3462) | typedef struct
type KSPROPERTY_TUNER_IF_MEDIUM_S (line 3471) | typedef struct
type KSPROPERTY_TUNER_MODE_CAPS_S (line 3477) | typedef struct
type KSPROPERTY_TUNER_MODE_S (line 3490) | typedef struct
type KSPROPERTY_TUNER_FREQUENCY_S (line 3496) | typedef struct
type KSPROPERTY_TUNER_STANDARD_S (line 3508) | typedef struct
type KSPROPERTY_TUNER_INPUT_S (line 3514) | typedef struct
type KSPROPERTY_TUNER_STATUS_S (line 3520) | typedef struct
type KSEVENT_TUNER (line 3534) | typedef enum
type KSPROPERTY_VIDCAP_VIDEOENCODER (line 3584) | typedef enum
type KSPROPERTY_VIDEOENCODER_S (line 3592) | typedef struct
type KSPROPERTY_VIDCAP_VIDEODECODER (line 3605) | typedef enum
type KS_VIDEODECODER_FLAGS (line 3614) | typedef enum
type KSPROPERTY_VIDEODECODER_CAPS_S (line 3621) | typedef struct
type KSPROPERTY_VIDEODECODER_STATUS_S (line 3630) | typedef struct
type KSPROPERTY_VIDEODECODER_S (line 3637) | typedef struct
type KSEVENT_VIDEODECODER (line 3648) | typedef enum
type KSPROPERTY_VIDCAP_CAMERACONTROL (line 3658) | typedef enum
type KSPROPERTY_CAMERACONTROL_S (line 3681) | typedef struct
type KSPROPERTY_CAMERACONTROL_NODE_S (line 3689) | typedef struct
type KSPROPERTY_CAMERACONTROL_S2 (line 3697) | typedef struct
type KSPROPERTY_CAMERACONTROL_NODE_S2 (line 3706) | typedef struct
type KSPROPERTY_CAMERACONTROL_FOCAL_LENGTH_S (line 3715) | typedef struct
type KSPROPERTY_CAMERACONTROL_NODE_FOCAL_LENGTH_S (line 3723) | typedef struct
type KSPROPERTY_EXTDEVICE (line 3745) | typedef enum
type DEVCAPS (line 3754) | typedef struct tagDEVCAPS
type KSPROPERTY_EXTDEVICE_S (line 3781) | typedef struct
type KSPROPERTY_EXTXPORT (line 3799) | typedef enum
type TRANSPORTSTATUS (line 3814) | typedef struct tagTRANSPORTSTATUS
type TRANSPORTBASICPARMS (line 3831) | typedef struct tagTRANSPORTBASICPARMS
type TRANSPORTVIDEOPARMS (line 3865) | typedef struct tagTRANSPORTVIDEOPARMS
type TRANSPORTAUDIOPARMS (line 3871) | typedef struct tagTRANSPORTAUDIOPARMS
type MEDIUM_INFO (line 3880) | typedef struct
type TRANSPORT_STATE (line 3887) | typedef struct
type KSPROPERTY_EXTXPORT_S (line 3893) | typedef struct
type KSPROPERTY_EXTXPORT_NODE_S (line 3920) | typedef struct
type KSPROPERTY_TIMECODE (line 3952) | typedef enum
type TIMECODE (line 3961) | typedef union _timecode
type TIMECODE (line 3971) | typedef TIMECODE* PTIMECODE;
type TIMECODE_SAMPLE (line 3973) | typedef struct tagTIMECODE_SAMPLE
type TIMECODE_SAMPLE (line 3981) | typedef TIMECODE_SAMPLE* PTIMECODE_SAMPLE;
type KSPROPERTY_TIMECODE_S (line 3984) | typedef struct
type KSPROPERTY_TIMECODE_NODE_S (line 3990) | typedef struct
type KSEVENT_DEVCMD (line 4001) | typedef enum
type KSPROPERTY_VIDCAP_CROSSBAR (line 4019) | typedef enum
type KSPROPERTY_CROSSBAR_CAPS_S (line 4027) | typedef struct
type KSPROPERTY_CROSSBAR_PININFO_S (line 4034) | typedef struct
type KSPROPERTY_CROSSBAR_ROUTE_S (line 4044) | typedef struct
type KSEVENT_CROSSBAR (line 4057) | typedef enum
type KS_PhysicalConnectorType (line 4062) | typedef enum
type KSPROPERTY_VIDCAP_TVAUDIO (line 4095) | typedef enum
type KSPROPERTY_TVAUDIO_CAPS_S (line 4108) | typedef struct
type KSPROPERTY_TVAUDIO_S (line 4116) | typedef struct
type KSEVENT_TVAUDIO (line 4127) | typedef enum
type KSPROPERTY_VIDCAP_VIDEOCOMPRESSION (line 4137) | typedef enum
type KS_CompressionCaps (line 4148) | typedef enum
type KS_VideoStreamingHints (line 4157) | typedef enum
type KSPROPERTY_VIDEOCOMPRESSION_GETINFO_S (line 4166) | typedef struct
type KSPROPERTY_VIDEOCOMPRESSION_S (line 4177) | typedef struct
type KSPROPERTY_VIDEOCOMPRESSION_S1 (line 4184) | typedef struct
type KSPROPERTY_OVERLAYUPDATE (line 4202) | typedef enum
type KSDISPLAYCHANGE (line 4213) | typedef struct
type KSPROPERTY_VIDCAP_VIDEOCONTROL (line 4288) | typedef enum
type KS_VideoControlFlags (line 4296) | typedef enum
type KSPROPERTY_VIDEOCONTROL_CAPS_S (line 4306) | typedef struct
type KSPROPERTY_VIDEOCONTROL_MODE_S (line 4313) | typedef struct
type KSPROPERTY_VIDEOCONTROL_ACTUAL_FRAME_RATE_S (line 4320) | typedef struct
type KSPROPERTY_VIDEOCONTROL_FRAME_RATES_S (line 4330) | typedef struct
type KSPROPERTY_VIDCAP_DROPPEDFRAMES (line 4343) | typedef enum
type KSPROPERTY_DROPPEDFRAMES_CURRENT_S (line 4348) | typedef struct
type KSPROPERTY_VPCONFIG (line 4366) | typedef enum
type KSVPMAXPIXELRATE (line 4392) | typedef struct
type KSVPSIZE_PROP (line 4399) | typedef struct
type KSVPSURFACEPARAMS (line 4405) | typedef struct
type _DDPIXELFORMAT (line 4416) | struct _DDPIXELFORMAT
function __MINGW_EXTENSION (line 4428) | __MINGW_EXTENSION union
function __MINGW_EXTENSION (line 4433) | __MINGW_EXTENSION union
function __MINGW_EXTENSION (line 4438) | __MINGW_EXTENSION union
function __MINGW_EXTENSION (line 4443) | __MINGW_EXTENSION union
type DDVIDEOPORTCONNECT (line 4454) | typedef struct _DDVIDEOPORTCONNECT
type KS_AMPixAspectRatio (line 4470) | typedef enum
type KS_AMVP_SELECTFORMATBY (line 4478) | typedef enum
type KS_AMVP_MODE (line 4485) | typedef enum
type KS_AMVPDIMINFO (line 4494) | typedef struct tagKS_AMVPDIMINFO
type KS_AMVPDATAINFO (line 4503) | typedef struct tagKS_AMVPDATAINFO
type KS_AMVPSIZE (line 4520) | typedef struct tagKS_AMVPSIZE
type KSVPMAXPIXELRATE (line 4526) | typedef struct
type KSVPSIZE_PROP (line 4533) | typedef struct
type KSVPSURFACEPARAMS (line 4539) | typedef struct
type KSEVENT_VPNOTIFY (line 4552) | typedef enum
type KSEVENT_VIDCAPTOSTI (line 4562) | typedef enum
type KSPROPERTY_EXTENSION_UNIT (line 4569) | typedef enum
type KSEVENT_VPVBINOTIFY (line 4581) | typedef enum
type KSGOP_USERDATA (line 4601) | typedef struct _KSGOP_USERDATA
type KS_AM_PROPERTY_TS_RATE_CHANGE (line 4621) | typedef enum
type KS_AM_SimpleRateChange (line 4629) | typedef struct
type KS_AM_ExactRateChange (line 4635) | typedef struct
type LONG (line 4641) | typedef LONG KS_AM_MaxFullDataRate;
type DWORD (line 4642) | typedef DWORD KS_AM_Step;
type VIDEOENCODER_BITRATE_MODE (line 4710) | typedef enum
type KSPROPERTY_JACK (line 4723) | typedef enum
type EPcxConnectionType (line 4730) | typedef enum
type EPcxGeoLocation (line 4746) | typedef enum
type EPcxGenLocation (line 4766) | typedef enum
type EPxcPortConnection (line 4775) | typedef enum
type KSJACK_DESCRIPTION (line 4783) | typedef struct
type KSJACK_SINK_CONNECTIONTYPE (line 4794) | typedef enum
type KSJACK_SINK_INFORMATION (line 4801) | typedef struct _tagKSJACK_SINK_INFORMATION
type KSJACK_DESCRIPTION2 (line 4817) | typedef struct _tagKSJACK_DESCRIPTION2
FILE: rtmidi/tests/cmidiin.cpp
function usage (line 14) | void usage( void ) {
function mycallback (line 22) | void mycallback( double deltatime, std::vector< unsigned char > *message...
function main (line 36) | int main( int argc, char *argv[] )
function chooseMidiPort (line 74) | bool chooseMidiPort( RtMidiIn *rtmidi )
FILE: rtmidi/tests/midiout.cpp
function main (line 27) | int main( int argc, char *argv[] )
function chooseMidiPort (line 109) | bool chooseMidiPort( RtMidiOut *rtmidi )
FILE: rtmidi/tests/midiprobe.cpp
function main (line 12) | int main()
FILE: rtmidi/tests/qmidiin.cpp
function finish (line 25) | static void finish( int ignore ){ done = true; }
function usage (line 27) | void usage( void ) {
function main (line 35) | int main( int argc, char *argv[] )
FILE: rtmidi/tests/sysextest.cpp
function usage (line 14) | void usage( void ) {
function mycallback (line 34) | void mycallback( double deltatime, std::vector< unsigned char > *message...
function main (line 43) | int main( int argc, char *argv[] )
function chooseMidiPort (line 104) | bool chooseMidiPort( RtMidi *rtmidi )
FILE: src/cursynth.cpp
function midiCallback (line 46) | void midiCallback(double delta_time, std::vector<unsigned char>* message,
function audioCallback (line 54) | int audioCallback(void *out_buffer, void *in_buffer,
function getConfigPath (line 68) | std::string getConfigPath() {
function getConfigFile (line 75) | std::string getConfigFile() {
function getUserPatchesPath (line 82) | std::string getUserPatchesPath() {
function confirmPathExists (line 89) | void confirmPathExists(std::string path) {
function getAllFiles (line 95) | std::vector<std::string> getAllFiles(std::string dir, std::string ext) {
type mopo (line 113) | namespace mopo {
FILE: src/cursynth.h
function namespace (line 28) | namespace mopo {
FILE: src/cursynth_common.h
function namespace (line 27) | namespace mopo {
FILE: src/cursynth_engine.cpp
type mopo (line 35) | namespace mopo {
function control_map (line 607) | control_map CursynthEngine::getControls() {
FILE: src/cursynth_engine.h
function namespace (line 32) | namespace mopo {
FILE: src/cursynth_gui.cpp
type mopo (line 44) | namespace mopo {
function DisplayDetails (line 391) | DisplayDetails* CursynthGui::initControl(std::string name,
FILE: src/cursynth_gui.h
function namespace (line 28) | namespace mopo {
FILE: src/cursynth_strings.cpp
type mopo (line 19) | namespace mopo {
FILE: src/cursynth_strings.h
function namespace (line 21) | namespace mopo {
FILE: src/main.cpp
function main (line 22) | int main(int argc, char **argv) {
Condensed preview — 161 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,799K chars).
[
{
"path": ".gitignore",
"chars": 468,
"preview": ".DS_Store\n\n# Compiled Object files\n*.slo\n*.lo\n*.o\ndebug\n\n# Compiled Dynamic libraries\n*.so\n*.dylib\n\n# Compiled Static li"
},
{
"path": "ABOUT-NLS",
"chars": 93787,
"preview": "1 Notes on the Free Translation Project\n***************************************\n\nFree software is going international! "
},
{
"path": "AUTHORS",
"chars": 72,
"preview": "Little IO <littleioaudio@gmail.com>\nMatt Tytel <matthewtytel@gmail.com>\n"
},
{
"path": "COPYING",
"chars": 35147,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "ChangeLog",
"chars": 624,
"preview": "2014-03-15 Matt Tytel <matthewtytel@gmail.com>\n\n\t* patches/*: Edited levels of all patches.\n\t* configure.ac: Bumped ve"
},
{
"path": "INSTALL",
"chars": 15758,
"preview": "Installation Instructions\n*************************\n\nCopyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundat"
},
{
"path": "Makefile.am",
"chars": 271,
"preview": "SUBDIRS = cJSON rtaudio rtmidi mopo src po doc\nEXTRA_DIST = config.rpath patches\n\npatchesdir = $(pkgdatadir)/patches\npat"
},
{
"path": "NEWS",
"chars": 22,
"preview": "No news is good news.\n"
},
{
"path": "README",
"chars": 1643,
"preview": "cursynth - a GNU program\n------------\ncursynth is a polyphonic, MIDI enabled, subtractive synth that runs in your\ntermin"
},
{
"path": "cJSON/LICENSE",
"chars": 1091,
"preview": " Copyright (c) 2009 Dave Gamble\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of t"
},
{
"path": "cJSON/Makefile.am",
"chars": 67,
"preview": "noinst_LIBRARIES = libcJSON.a\nlibcJSON_a_SOURCES = cJSON.c cJSON.h\n"
},
{
"path": "cJSON/cJSON.c",
"chars": 23174,
"preview": "/*\n Copyright (c) 2009 Dave Gamble\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of"
},
{
"path": "cJSON/cJSON.h",
"chars": 6806,
"preview": "/*\n Copyright (c) 2009 Dave Gamble\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n o"
},
{
"path": "configure.ac",
"chars": 5272,
"preview": "# -*- Autoconf -*-\n# Process this file with autoconf to produce a configur"
},
{
"path": "doc/.gitignore",
"chars": 82,
"preview": "# Documentation\nmdate-sh\ncursynth.info\ntexinfo.tex\nversion.texi\nstdin.info\n*.html\n"
},
{
"path": "doc/Makefile.am",
"chars": 64,
"preview": "info_TEXINFOS = cursynth.texi\ncursynth_TEXINFOS = cursynth.texi\n"
},
{
"path": "doc/cursynth.texi",
"chars": 8235,
"preview": "\\input texinfo @c -*-texinfo-*-\n@comment $Id@w{$}\n@comment %**start of header\n@setfilename cursynth.info\n@include vers"
},
{
"path": "doc/fdl.texi",
"chars": 20912,
"preview": "@cindex FDL, GNU Free Documentation License\n@center Version 1.2, November 2002\n\n@display\nCopyright @copyright{} 2000,200"
},
{
"path": "mopo/.gitignore",
"chars": 398,
"preview": "# Compiled Object files\n*.slo\n*.lo\n*.o\n\n# Compiled Dynamic libraries\n*.so\n*.dylib\n\n# Compiled Static libraries\n*.lai\n*.l"
},
{
"path": "mopo/AUTHORS",
"chars": 72,
"preview": "Little IO <littleioaudio@gmail.com>\nMatt Tytel <matthewtytel@gmail.com>\n"
},
{
"path": "mopo/COPYING",
"chars": 35147,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "mopo/ChangeLog",
"chars": 0,
"preview": ""
},
{
"path": "mopo/INSTALL",
"chars": 15749,
"preview": "Installation Instructions\n*************************\n\nCopyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundat"
},
{
"path": "mopo/Makefile.am",
"chars": 14,
"preview": "SUBDIRS = src\n"
},
{
"path": "mopo/NEWS",
"chars": 0,
"preview": ""
},
{
"path": "mopo/README",
"chars": 165,
"preview": "mopo: MOdular and POlyphonic synthesis library.\n-----------------------------\n\nmopo is an audio synthesis library aimed "
},
{
"path": "mopo/configure.ac",
"chars": 883,
"preview": "# -*- Autoconf -*-\n# Process this file with autoconf to produce a configur"
},
{
"path": "mopo/src/Makefile.am",
"chars": 1531,
"preview": "noinst_LIBRARIES = libmopo.a\nlibmopo_a_SOURCES = delay.cpp \\\n delay.h \\\n envelope."
},
{
"path": "mopo/src/delay.cpp",
"chars": 891,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/delay.h",
"chars": 1679,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/envelope.cpp",
"chars": 2959,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/envelope.h",
"chars": 2078,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/feedback.cpp",
"chars": 1025,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/feedback.h",
"chars": 1637,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/filter.cpp",
"chars": 3735,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/filter.h",
"chars": 1752,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/linear_slope.cpp",
"chars": 1760,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/linear_slope.h",
"chars": 1310,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/memory.h",
"chars": 1905,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/midi_lookup.cpp",
"chars": 777,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/midi_lookup.h",
"chars": 2048,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/mono_panner.cpp",
"chars": 1519,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/mono_panner.h",
"chars": 1371,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/mopo.h",
"chars": 1630,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/operators.cpp",
"chars": 1182,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/operators.h",
"chars": 4815,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/oscillator.cpp",
"chars": 1357,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/oscillator.h",
"chars": 1747,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/processor.cpp",
"chars": 3352,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/processor.h",
"chars": 4103,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/processor_router.cpp",
"chars": 8734,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/processor_router.h",
"chars": 2773,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/send_receive.cpp",
"chars": 1792,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/send_receive.h",
"chars": 2147,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/smooth_filter.cpp",
"chars": 1124,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/smooth_filter.h",
"chars": 1143,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/smooth_value.cpp",
"chars": 1262,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/smooth_value.h",
"chars": 1325,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/step_generator.cpp",
"chars": 1540,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/step_generator.h",
"chars": 1261,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/tick_router.h",
"chars": 1070,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/trigger_operators.cpp",
"chars": 3918,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/trigger_operators.h",
"chars": 2292,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/utils.h",
"chars": 1169,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/value.cpp",
"chars": 1572,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/value.h",
"chars": 1176,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/voice_handler.cpp",
"chars": 5355,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/voice_handler.h",
"chars": 3441,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/wave.cpp",
"chars": 755,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "mopo/src/wave.h",
"chars": 9010,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * mopo is free software: you can redistribute it and/or modify\n * it under the ter"
},
{
"path": "patches/bit_sin.mite",
"chars": 1107,
"preview": "{\n \"amp attack\": 0.890625,\n \"amp decay\": 0.679688,\n \"amp release\": 0.534376,\n \"amp sustain\": 0,\n \"cross modulation\": 0,\n"
},
{
"path": "patches/bwang.mite",
"chars": 1115,
"preview": "{\n \"amp attack\": 0,\n \"amp decay\": 2.153125,\n \"amp release\": 0.300000,\n \"amp sustain\": 0,\n \"cross modulation\": 0,\n \"cutof"
},
{
"path": "patches/default.mite",
"chars": 1101,
"preview": "{\n \"amp attack\": 0.010000,\n \"amp decay\": 0.700000,\n \"amp release\": 0.300000,\n \"amp sustain\": 0,\n \"cross modulation\": 0.0"
},
{
"path": "patches/loaded_room.mite",
"chars": 1129,
"preview": "{\n \"amp attack\": 0.010000,\n \"amp decay\": 2.437500,\n \"amp release\": 0.300000,\n \"amp sustain\": 0,\n \"cross modulation\": 0.1"
},
{
"path": "patches/test_patch1.mite",
"chars": 1115,
"preview": "{\n \"amp attack\": 0.408438,\n \"amp decay\": 0.723437,\n \"amp release\": 0.229688,\n \"amp sustain\": 0,\n \"cross modulation\": 0,\n"
},
{
"path": "patches/test_patch2.mite",
"chars": 1100,
"preview": "{\n \"amp attack\": 0,\n \"amp decay\": 0.160937,\n \"amp release\": 0.229688,\n \"amp sustain\": 0,\n \"cross modulation\": 0,\n \"cutof"
},
{
"path": "patches/water_wobble.mite",
"chars": 1134,
"preview": "{\n \"amp attack\": 0.281250,\n \"amp decay\": 1.262500,\n \"amp release\": 0.300000,\n \"amp sustain\": 0,\n \"cross modulation\": 0,\n"
},
{
"path": "patches/whistle.mite",
"chars": 1112,
"preview": "{\n \"amp attack\": 0.117188,\n \"amp decay\": 0.957812,\n \"amp release\": 0.534376,\n \"amp sustain\": 0,\n \"cross modulation\": 0,\n"
},
{
"path": "patches/whoooo.mite",
"chars": 1117,
"preview": "{\n \"amp attack\": 0.164063,\n \"amp decay\": 2.320312,\n \"amp release\": 0.534376,\n \"amp sustain\": 0,\n \"cross modulation\": 0,\n"
},
{
"path": "patches/womp.mite",
"chars": 1114,
"preview": "{\n \"amp attack\": 0.197500,\n \"amp decay\": 0.700000,\n \"amp release\": 0.300000,\n \"amp sustain\": 0,\n \"cross modulation\": 0,\n"
},
{
"path": "po/.gitignore",
"chars": 125,
"preview": "# Ignore everything in this directory\n*\n\n# Except these files\n!.gitignore\n\n!ChangeLog\n!LINGUAS\n!POTFILES.in\n!Makevars\n\n!"
},
{
"path": "po/Makevars",
"chars": 2349,
"preview": "# Makefile variables for PO directory in any package using GNU gettext.\n\n# Usually the message domain is the same as the"
},
{
"path": "po/POTFILES.in",
"chars": 80,
"preview": "# List of source files which contain translatable strings.\nsrc/cursynth_gui.cpp\n"
},
{
"path": "rtaudio/.gitignore",
"chars": 63,
"preview": "librtaudio.so*\nlibrtaudio.dylib.4\nrtaudio-config\nlibrtaudio.pc\n"
},
{
"path": "rtaudio/Makefile.am",
"chars": 87,
"preview": "noinst_LIBRARIES = librtaudio.a\nlibrtaudio_a_SOURCES = RtAudio.cpp RtAudio.h RtError.h\n"
},
{
"path": "rtaudio/RtAudio.cpp",
"chars": 305740,
"preview": "/************************************************************************/\r\n/*! \\class RtAudio\r\n \\brief Realtime audi"
},
{
"path": "rtaudio/RtAudio.h",
"chars": 43010,
"preview": "/************************************************************************/\n/*! \\class RtAudio\n \\brief Realtime audio "
},
{
"path": "rtaudio/RtError.h",
"chars": 2136,
"preview": "/************************************************************************/\n/*! \\class RtError\n \\brief Exception handl"
},
{
"path": "rtaudio/configure.ac",
"chars": 6299,
"preview": "# Process this file with autoconf to produce a configure script.\nAC_INIT(RtAudio, 4.0, gary@music.mcgill.ca, rtaudio)\nAC"
},
{
"path": "rtaudio/contrib/python/pyrtaudio/PyRtAudioTest.py",
"chars": 1553,
"preview": "\r\nimport rtaudio as rt\r\n\r\nfrom math import cos\r\n\r\nimport struct\r\n\r\n\r\nclass audio_generator:\r\n def __init__(self):\r\n "
},
{
"path": "rtaudio/contrib/python/pyrtaudio/readme",
"chars": 2496,
"preview": "PyRtAudio - a python wrapper around RtAudio that allows to perform audio i/o operations in real-time from the python lan"
},
{
"path": "rtaudio/contrib/python/pyrtaudio/rtaudiomodule.cpp",
"chars": 21310,
"preview": "/************************************************************************/\n/* PyRtAudio: a python wrapper around RtAudi"
},
{
"path": "rtaudio/contrib/python/pyrtaudio/setup.py",
"chars": 1601,
"preview": "#!/bin/env python\n\nimport os\nfrom distutils.core import setup, Extension\n\nif hasattr(os, 'uname'):\n OSNAME = os.uname"
},
{
"path": "rtaudio/include/asio.cpp",
"chars": 5577,
"preview": "/*\r\n\tSteinberg Audio Stream I/O API\r\n\t(c) 1996, Steinberg Soft- und Hardware GmbH\r\n\r\n\tasio.cpp\r\n\t\r\n\tasio functions entri"
},
{
"path": "rtaudio/include/asio.h",
"chars": 42889,
"preview": "//---------------------------------------------------------------------------------------------------\r\n//---------------"
},
{
"path": "rtaudio/include/asiodrivers.cpp",
"chars": 3426,
"preview": "#include <string.h>\r\n#include \"asiodrivers.h\"\r\n\r\nAsioDrivers* asioDrivers = 0;\r\n\r\nbool loadAsioDriver(char *name);\r\n\r\nbo"
},
{
"path": "rtaudio/include/asiodrivers.h",
"chars": 719,
"preview": "#ifndef __AsioDrivers__\r\n#define __AsioDrivers__\r\n\r\n#include \"ginclude.h\"\r\n\r\n#if MAC\r\n#include \"CodeFragments.hpp\"\r\n\r\ncl"
},
{
"path": "rtaudio/include/asiodrvr.h",
"chars": 2266,
"preview": "/*\r\n\tSteinberg Audio Stream I/O API\r\n\t(c) 1996, Steinberg Soft- und Hardware GmbH\r\n\tcharlie (May 1996)\r\n\r\n\tasiodrvr.h\r\n\t"
},
{
"path": "rtaudio/include/asiolist.cpp",
"chars": 7676,
"preview": "#include <windows.h>\n#include \"iasiodrv.h\"\n#include \"asiolist.h\"\n\n#define ASIODRV_DESC\t\t\"description\"\n#define INPROC_SER"
},
{
"path": "rtaudio/include/asiolist.h",
"chars": 994,
"preview": "#ifndef __asiolist__\r\n#define __asiolist__\r\n\r\n#define DRVERR\t\t\t-5000\r\n#define DRVERR_INVALID_PARAM\t\tDRVERR-1\r\n#define DR"
},
{
"path": "rtaudio/include/asiosys.h",
"chars": 1360,
"preview": "#ifndef __asiosys__\r\n\t#define __asiosys__\r\n\r\n\t#ifdef WIN32\r\n\t\t#undef MAC \r\n\t\t#define PPC 0\r\n\t\t#define WINDOWS 1\r\n\t\t#defi"
},
{
"path": "rtaudio/include/dsound.h",
"chars": 108387,
"preview": "/*==========================================================================;\n *\n * Copyright (c) Microsoft Corporation"
},
{
"path": "rtaudio/include/ginclude.h",
"chars": 636,
"preview": "#ifndef __gInclude__\r\n#define __gInclude__\r\n\r\n#if SGI \r\n\t#undef BEOS \r\n\t#undef MAC \r\n\t#undef WINDOWS\r\n\t//\r\n\t#define ASIO"
},
{
"path": "rtaudio/include/iasiodrv.h",
"chars": 1588,
"preview": "#include \"asiosys.h\"\r\n#include \"asio.h\"\r\n\r\n/* Forward Declarations */ \r\n\r\n#ifndef __ASIODRIVER_FWD_DEFINED__\r\n#define __"
},
{
"path": "rtaudio/include/iasiothiscallresolver.cpp",
"chars": 23987,
"preview": "/*\n\tIASIOThiscallResolver.cpp see the comments in iasiothiscallresolver.h for\n the top level description - this comme"
},
{
"path": "rtaudio/include/iasiothiscallresolver.h",
"chars": 9864,
"preview": "// ****************************************************************************\r\n//\r\n// Changed: I have modified"
},
{
"path": "rtaudio/include/soundcard.h",
"chars": 66113,
"preview": "/*\n * soundcard.h\n */\n\n/*-\n * Copyright by Hannu Savolainen 1993 / 4Front Technologies 1993-2006\n * Modified for the new"
},
{
"path": "rtaudio/install",
"chars": 2059,
"preview": "RtAudio - a set of C++ classes which provide a common API for realtime audio input/output across GNU/Linux (native ALSA,"
},
{
"path": "rtaudio/librtaudio.pc.in",
"chars": 351,
"preview": "prefix=/usr/local\nexec_prefix=${prefix}\nlibdir=${exec_prefix}/lib\nincludedir=${prefix}/include \n\nName: librtaudio"
},
{
"path": "rtaudio/readme",
"chars": 3540,
"preview": "RtAudio - a set of C++ classes that provide a common API for realtime audio input/output across GNU/Linux (native ALSA, "
},
{
"path": "rtaudio/rtaudio-config.in",
"chars": 382,
"preview": "#! /bin/sh\nif (test \"x$#\" != \"x1\") ; then\n echo \"Usage: $0 [--libs | --cxxflags | --cppflags]\"\n exit;\nfi\n\nLIBRARY=\"@LI"
},
{
"path": "rtaudio/tests/Windows/audioprobe.dsp",
"chars": 5492,
"preview": "# Microsoft Developer Studio Project File - Name=\"audioprobe\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generate"
},
{
"path": "rtaudio/tests/Windows/duplex.dsp",
"chars": 5446,
"preview": "# Microsoft Developer Studio Project File - Name=\"duplex\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Bu"
},
{
"path": "rtaudio/tests/Windows/playraw.dsp",
"chars": 5425,
"preview": "# Microsoft Developer Studio Project File - Name=\"playraw\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated B"
},
{
"path": "rtaudio/tests/Windows/playsaw.dsp",
"chars": 5425,
"preview": "# Microsoft Developer Studio Project File - Name=\"playsaw\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated B"
},
{
"path": "rtaudio/tests/Windows/record.dsp",
"chars": 5409,
"preview": "# Microsoft Developer Studio Project File - Name=\"record\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated Bu"
},
{
"path": "rtaudio/tests/Windows/rtaudio.dsw",
"chars": 1677,
"preview": "Microsoft Developer Studio Workspace File, Format Version 6.00\r\n# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r\n\r"
},
{
"path": "rtaudio/tests/Windows/testall.dsp",
"chars": 5425,
"preview": "# Microsoft Developer Studio Project File - Name=\"testall\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated B"
},
{
"path": "rtaudio/tests/Windows/teststops.dsp",
"chars": 5457,
"preview": "# Microsoft Developer Studio Project File - Name=\"teststops\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated"
},
{
"path": "rtaudio/tests/audioprobe.cpp",
"chars": 3152,
"preview": "/******************************************/\n/*\n audioprobe.cpp\n by Gary P. Scavone, 2001\n\n Probe audio system and pr"
},
{
"path": "rtaudio/tests/duplex.cpp",
"chars": 3761,
"preview": "/******************************************/\n/*\n duplex.cpp\n by Gary P. Scavone, 2006-2007.\n\n This program opens a du"
},
{
"path": "rtaudio/tests/playraw.cpp",
"chars": 3984,
"preview": "/******************************************/\n/*\n playraw.cpp\n by Gary P. Scavone, 2007\n\n Play a specified raw file. "
},
{
"path": "rtaudio/tests/playsaw.cpp",
"chars": 5384,
"preview": "/******************************************/\n/*\n playsaw.cpp\n by Gary P. Scavone, 2006\n\n This program will output saw"
},
{
"path": "rtaudio/tests/record.cpp",
"chars": 4823,
"preview": "/******************************************/\n/*\n record.cpp\n by Gary P. Scavone, 2007\n\n This program records audio fr"
},
{
"path": "rtaudio/tests/testall.cpp",
"chars": 6450,
"preview": "/******************************************/\n/*\n testall.cpp\n by Gary P. Scavone, 2007-2008\n\n This program will make "
},
{
"path": "rtaudio/tests/teststops.cpp",
"chars": 7605,
"preview": "/******************************************/\r\n/*\r\n teststop.cpp\r\n by Gary P. Scavone, 2011\r\n\r\n This program starts an"
},
{
"path": "rtmidi/.gitignore",
"chars": 59,
"preview": "librtmidi.so*\nlibrtmidi.dylib.4\nrtmidi-config\nlibrtmidi.pc\n"
},
{
"path": "rtmidi/Makefile.am",
"chars": 83,
"preview": "noinst_LIBRARIES = librtmidi.a\nlibrtmidi_a_SOURCES = RtMidi.cpp RtMidi.h RtError.h\n"
},
{
"path": "rtmidi/RtError.h",
"chars": 2136,
"preview": "/************************************************************************/\n/*! \\class RtError\n \\brief Exception handl"
},
{
"path": "rtmidi/RtMidi.cpp",
"chars": 120445,
"preview": "/**********************************************************************/\n/*! \\class RtMidi\n \\brief An abstract base c"
},
{
"path": "rtmidi/RtMidi.h",
"chars": 24991,
"preview": "/**********************************************************************/\n/*! \\class RtMidi\n \\brief An abstract base c"
},
{
"path": "rtmidi/configure.ac",
"chars": 4842,
"preview": "# Process this file with autoconf to produce a configure script.\nAC_INIT(RtMidi, 2.0, gary@music.mcgill.ca, rtmidi)\nAC_C"
},
{
"path": "rtmidi/include/ks.h",
"chars": 129498,
"preview": "/**\n * This file has no copyright assigned and is placed in the Public Domain.\n * This file is part of the w64 mingw-run"
},
{
"path": "rtmidi/include/ksmedia.h",
"chars": 183771,
"preview": "/**\n * This file has no copyright assigned and is placed in the Public Domain.\n * This file is part of the w64 mingw-run"
},
{
"path": "rtmidi/msw/readme",
"chars": 171,
"preview": "This directory contains a Visual Studio 2008 project, contributed by Jason Champion, to build rtmidi as a library. The "
},
{
"path": "rtmidi/msw/rtmidilib.sln",
"chars": 881,
"preview": "\r\nMicrosoft Visual Studio Solution File, Format Version 10.00\r\n# Visual Studio 2008\r\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-"
},
{
"path": "rtmidi/msw/rtmidilib.vcproj",
"chars": 3606,
"preview": "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\r\n<VisualStudioProject\r\n\tProjectType=\"Visual C++\"\r\n\tVersion=\"9.00\"\r\n\tName=\""
},
{
"path": "rtmidi/readme",
"chars": 3405,
"preview": "RtMidi - a set of C++ classes that provide a common API for realtime MIDI input/output across GNU/Linux (ALSA & Jack), M"
},
{
"path": "rtmidi/rtmidi-config.in",
"chars": 382,
"preview": "#! /bin/sh\nif (test \"x$#\" != \"x1\") ; then\n echo \"Usage: $0 [--libs | --cxxflags | --cppflags]\"\n exit;\nfi\n\nLIBRARY=\"@LI"
},
{
"path": "rtmidi/tests/RtMidi.dsw",
"chars": 1311,
"preview": "Microsoft Developer Studio Workspace File, Format Version 6.00\r\n# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r\n\r"
},
{
"path": "rtmidi/tests/cmidiin.cpp",
"chars": 2849,
"preview": "//*****************************************//\n// cmidiin.cpp\n// by Gary Scavone, 2003-2004.\n//\n// Simple program to t"
},
{
"path": "rtmidi/tests/cmidiin.dsp",
"chars": 4383,
"preview": "# Microsoft Developer Studio Project File - Name=\"cmidiin\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated B"
},
{
"path": "rtmidi/tests/midiout.cpp",
"chars": 3166,
"preview": "//*****************************************//\n// midiout.cpp\n// by Gary Scavone, 2003-2004.\n//\n// Simple program to t"
},
{
"path": "rtmidi/tests/midiout.dsp",
"chars": 4383,
"preview": "# Microsoft Developer Studio Project File - Name=\"midiout\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated B"
},
{
"path": "rtmidi/tests/midiprobe.cpp",
"chars": 1973,
"preview": "// midiprobe.cpp\n//\n// Simple program to check MIDI inputs and outputs.\n//\n// by Gary Scavone, 2003-2012.\n\n#include <ios"
},
{
"path": "rtmidi/tests/midiprobe.dsp",
"chars": 4419,
"preview": "# Microsoft Developer Studio Project File - Name=\"midiprobe\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated"
},
{
"path": "rtmidi/tests/qmidiin.cpp",
"chars": 2318,
"preview": "//*****************************************//\n// qmidiin.cpp\n// by Gary Scavone, 2003-2004.\n//\n// Simple program to t"
},
{
"path": "rtmidi/tests/qmidiin.dsp",
"chars": 4383,
"preview": "# Microsoft Developer Studio Project File - Name=\"qmidiin\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated B"
},
{
"path": "rtmidi/tests/sysextest.cpp",
"chars": 3877,
"preview": "//*****************************************//\n// sysextest.cpp\n// by Gary Scavone, 2003-2005.\n//\n// Simple program to"
},
{
"path": "rtmidi/tests/sysextest.dsp",
"chars": 4423,
"preview": "# Microsoft Developer Studio Project File - Name=\"sysextest\" - Package Owner=<4>\r\n# Microsoft Developer Studio Generated"
},
{
"path": "src/Makefile.am",
"chars": 978,
"preview": "bin_PROGRAMS = cursynth\npatchesdir = $(pkgdatadir)/patches\n\ncursynth_SOURCES = main.cpp \\\n cursynth.cp"
},
{
"path": "src/cursynth.cpp",
"chars": 18854,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * cursynth is free software: you can redistribute it and/or modify\n * it under the"
},
{
"path": "src/cursynth.h",
"chars": 3590,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * cursynth is free software: you can redistribute it and/or modify\n * it under the"
},
{
"path": "src/cursynth_common.h",
"chars": 3023,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * cursynth is free software: you can redistribute it and/or modify\n * it under the"
},
{
"path": "src/cursynth_engine.cpp",
"chars": 24673,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * cursynth is free software: you can redistribute it and/or modify\n * it under the"
},
{
"path": "src/cursynth_engine.h",
"chars": 6949,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * cursynth is free software: you can redistribute it and/or modify\n * it under the"
},
{
"path": "src/cursynth_gui.cpp",
"chars": 18738,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * cursynth is free software: you can redistribute it and/or modify\n * it under the"
},
{
"path": "src/cursynth_gui.h",
"chars": 3082,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * cursynth is free software: you can redistribute it and/or modify\n * it under the"
},
{
"path": "src/cursynth_strings.cpp",
"chars": 1303,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * cursynth is free software: you can redistribute it and/or modify\n * it under the"
},
{
"path": "src/cursynth_strings.h",
"chars": 1089,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * cursynth is free software: you can redistribute it and/or modify\n * it under the"
},
{
"path": "src/main.cpp",
"chars": 2166,
"preview": "/* Copyright 2013-2015 Matt Tytel\n *\n * cursynth is free software: you can redistribute it and/or modify\n * it under the"
}
]
About this extraction
This page contains the full source code of the mtytel/cursynth GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 161 files (1.6 MB), approximately 473.0k tokens, and a symbol index with 1047 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.