AminetAminet
Search:
84782 packages online
About
Recent
Browse
Search
Upload
Setup
Services

mus/misc/DelfLuxe.lha

Mirror:Random
Showing: m68k-amigaos icongeneric icon
No screenshot available
Short:Realtime effects for Delfina sound cards
Author: lemming at assampler.com
Uploader:lemming assampler com
Type:mus/misc
Version:1.00
Architecture:m68k-amigaos
Date:2001-09-05
Requires:Delfina sound card, camd.library
Download:mus/misc/DelfLuxe.lha - View contents
Readme:mus/misc/DelfLuxe.readme
Downloads:921

 You wonder why it is better to have a Delfina sound card with a freely
programmable DSP instead of a card that is specialized to replay MP3 files
and to encode Dolby surround sounds?  The answer is that the possibilities
the Delfina sound card provides are much more than these applications.
E.g.  it can act as a great effect processor for you.  This is ideal for
people with a great sound card but a poor music keyboard (like me :-).

 DelfLuxe is a collection of Delfina effects such as tone generators and
filters.  Most of them are already available in Assampler in a rather
non-realtime manner.


Installation:

 I did not include an install script, but installation is very simple.
Extract the archive to somewhere you want.  Then move
libs/delfinacontrol.library to your Libs:  directory.  You may also want to
assign DelfLuxe:  to the delfluxe directory, then OctaMED can find the
scripts for demo songs.


Usage:

 In DelfLuxe a central library called delfinacontrol.library supports a
common CLI argument template and an interface to several controling
sources.  (GUI?  See below)
 The basic template for all DelfinaMidi(#?) programs is:

NAME/K,ALGORITHM=ALGO/K,
OMOD/K,OSOCKET/K/N,INTISOCKET/K/N,INTOSOCKET/K/N,IMOD/K,ISOCKET/K/N,
CONTROLRATE=CR/K/N,PRIORITY=PRI/K/N,SIGNALTASK/K/N

ALGORITHM, NAME

 Every effect can be associated with a group of effects called Algorithm.
There is no structure, no handle that is allocated for an algorithm.  It is
only the same algorithm name which makes several effects belong together.
 Further it is possible to give every effect a name according to its
function.  E.g.  if you have an oscillator that controls another
oscillator, you could call the first oscillator a "Low Frequency
Oscillator", short LFO.  Then both modules are distinguishable.  If you do
not specify a NAME, the default name is derived from the effect name, e.g.
 DelfinaOscillator -> NAME=Oscillator
 DelfinaMoogFilter -> NAME="Moog Filter"
 The name of the internal Delfina modules that are created are
concatenations of ALGORITHM, NAME and an internal name, if the effect is
build of more than one Delfina module (e.g. DelfinaMidiReverb).
 Whenever a module is adressed by its name by DelfLuxe programs the module is
searched first as part of the same algorithm before it is tried to find a
module which owns this name as internal Delfina name.
 E.g. in case of
 DelfinaMidiEcho ALGORITHM=Forrest OMOD=Connectors ...
 a Delfina module with name "Forrest Echo" is setup (because an alternative
name was left) and it is tried to connect its input to "Forrest Connectors"
which will probably not exist, thus it is connected to the global
"Connectors" module.

OMOD, OSOCKET, INTISOCKET, INTOSOCKET, IMOD, ISOCKET

 A connection
  [OMOD] OSOCKET --- INTISOCKET [ThisModule] INTOSOCKET --- ISOCKET [IMOD]
 is setup.  Socket options indicate where pipes are plugged in.  This saves
you some calls to SetPipe and let you benefit from the improved module
search.  (See options ALGORITHM, NAME)

CONTROLRATE

 The frequency with which controling Delfina signals are checked.  E.g.  if
you use an Oscillator as control signal for a filter sweep, the control
rate should be the higher the faster the Oscillator moves, otherwise you
get ugly quantifying effects.  (Unfortunately, although I use microHz as
timer unit, it sounds to be never faster than screen refresh.  :-( )

PRIORITY

 Priority of the task that checks for incoming MIDI and Delfina controling
events.  If the priority is too low, the controling might be interrupted by
moving windows, starting programs etc.

SIGNALTASK

 For internal use with DelfinaRunModule.


Controller

 Some parameters of every effect are controlable. E.g. the filter frequency
can be controlled by the pitch bender wheel of your MIDI keyboard.
 DelfinaMidiMoogFilter FREQUENCY=midi.bender:exp(110,6) ...
 means that the filter frequency is controlled by any pitch bender event
that comes from some MIDI device, where the lower limit of the wheel is
mapped to 110 Hz (the unit Hz is the interpretation of the filter effect)
and the upper limit is mapped to 110 Hz * 2^6 = 7040 Hz.  Thus, in the
center position of the pitch bender wheel a filter frequency of 880 Hz is
set (exponential scaling).
 Now the full explaination.  The controller description is divided into an
incoming and an outgoing part.  Both are separated by a colon.  The ingoing
part tells what source should be watched and which value range one have to
expect from it.  The outgoing part tells how to map the incoming values
into effect parameters.

ingoing part

constant
 The controller does not change its value.  It is fixed to the one
specified on the outgoing part.  This differs a little bit from the
standard scheme.  E.g.  constant:100 means a constant value of 100.  You
can not abbreviate FREQUENCY=100 but you must write FREQUENCY=constant:100
instead, sorry!

delfina
 delfina.LFO.0 addresses the output signal at socket 0 of the Delfina
module LFO (either in the same algorithm or globally)

midi
 midi.keyboard(min,max) - holds the key number of the currently pressed key.
  The range of keys from min to max is mapped to the outgoing range,
  but also keys outside this range are mapped.
  midi.keyboard(48,60):exp(523.25,1) maps the keys from a specific C to
    the next C (don't ask me for absolute octave numbers)
    to the corresponding frequency
  midi.keyboard(48,60):exp(523.25,-1) reverse the key order :-)
  midi.keyboard(48,101):exp(523.25,1) enables you to play Steinberg's
    53-tone music B-)
 midi.velocity - the force with which you have pressed the key
 midi.aftertouch - pressure on a key when it is already down
 midi.bender - the pitch bender wheel
 midi.modulation - the modulation wheel
 midi.vectorx - x component of Vector Control joystick (Yamaha SY35)
 midi.vectory - y component of Vector Control joystick
 midi.volume - volume of the sound (never received this event)
 midi.sustain - state of the sustain pedal (never tested)
 midi.controller.$0A(0,$80) - the MIDI controller with number $0A (10 = pan
  due to the MIDI specifications) which can have values from 0 (inclusive)
  to $80 (exclusive), at least I assume so ;-)

midichannel
 E.g.  by replacing midi by midichannel.3 you can make the effect to listen
to events on MIDI channel 3 instead of listening to all channels.


outgoing part

lin(0,1)
 means linear scaling from 0 to 1. Thus
 VOLUME=midi.velocity:lin(0,1)
 let you interpret the key press force of the MIDI keyboard as volume for
some effect.

exp(440,3)
 means exponential scaling from 440 to 3 octaves higher, i.e. 440*2^3 = 3520
 E.g. it would sensible to map 12 keys from the keyboard to 1 octave.


Effects

 Every of the following programs supports one effect and has additional CLI
options for their controllers. I am a bit lazy to explain all controllers.
I hope you can guess their meanings easily.

DelfinaMidiAllpassCascade
 A cascade of ORDER all passes, which can be used to simulate phasing
effects from analogue synthesizers.

DelfinaMidiAmplifier
 A simple amplifier.

DelfinaMidiBlockResample
 Blockwise resampling. Unfortunately the periodic clicking becomes faster
the more you move away from 1:1 resampling.

DelfinaMidiComplexFilter
 Band pass like filter where each stereo channel influences the other.

DelfinaMidiEcho
 Repeated echo.  To minimize the need for allocation of echo buffers (which
would require a buffer flush at each reallocation) you have to specify a
fix maximal possible delay and the real delay is measured as ratio of this
and can be controlled.

DelfinaMidiFilter1stOrder
 Simple filter with high pass and low pass output on different sockets.

DelfinaMidiGetAmplitude
 Envelope follower.

DelfinaMidiLimit
 Limits each elongation (sample).  Creates the fuzz distortion effect.

DelfinaMidiMoogFilter
 A cascade of ORDER low passes which are fed back to obtain band pass
characteristic.  This is a filter of Moog's synthesizers.

DelfinaMidiMultiplier
 An amplifier where the second input signal is the volume control.  Can be
used as ring modulator.

DelfinaMidiNoise
 Noise generator with built-in quantification.

DelfinaMidiOscillator
 Tone generator with optional linear interpolation.  There are some
waveforms in 32-bit signed words format in the waves directory which are
ready to be loaded into the oscillator.  Feel free to create new forms!

DelfinaMidiReverb
 A reverb made of some short echos. Very memory and time consuming. Will
probably force the Delfina to switch back to lower sample rates.

DelfinaMidiUniFilter
 The universal filter provides high pass, band pass, low pass and band
limit at its four output sockets.

DelfinaMidiVocoder
 A multi-channel vocoder.  Don't work.  The analysis filters don't seem to
work the way they should.  I chose the ComplexFilter because it is the
fastest.  Every other filter will slow down the process to unacceptable
sample rates or number of channels :-(


DelfinaRunModule
 Runs another DelfinaMidi(#?) effect program in the background, but waits
until the effect is completely set up.  This is necessary for batch scripts
where every module assumes that the module already exists where it wants to
connect to.
 Attention!  Improper use of DelfinaRunModule will crash your machine!  I
did not found a way to make the whole thing really safe.  Because the user
may accidentally start a program that is not an effect program,
DelfinaRunModule may wait infinitely.  To avoid this you can break
DelfinaRunModule with CTRL-C.  But make sure that the started program will
never try to tell DelfinaRunModule about its successful setup after you
quit DelfinaRunModule, or the machine will crash as soon as it try so.

DelfinaQuitAlgorithm
 Sends a CTRL-C to all programs that are associated with the algorithm
name.

DelfinaListContexts
 Similar to Delfina:ListMod, but lists all effects that run with
delfinacontrol.library currently.

DelfinaCreateWaves
 The program which generated the files in the waves directory.


Additional tools
 To be able to manage situations you got by accidentally starting programs
with wrong options etc. you should be familar with AmigaDOS commands Status
and Break, or alternatively with the system monitors Scout, ARTM
(AmigaRealTimeMonitor).


Examples:
 To get the effect examples running you should plug a sound source, e.g.
microphone, synthesizer line output, radio etc.  into your Delfina card.
(I assume that the Delfina card is all the time plugged into a HIFI
amplifier on the other side.  Thus we skip this step.  :-) For the MIDI
controlled effects, you should additionally connect the MIDI output of some
keyboard with the MIDI interface in your Amiga.  Then run some of the
scripts in the "s" directory or play one of the OctaMED modules which will
start some of the (#?)NoCtrl scripts by themselves.  These scripts will
fail to run without OctaMED, because they will open an requester on the
OctaMED screen.


Technical background:

Streaming

 As Assampler the delfinacontrol.library and DelfLuxe are developed with
Cluster (= Modula II deluxe).  The delfina code is written with a56, the
standard DSP 56000 assembler for Delfina cards.
 The delfinacontrol.library is a temporary solution until this or the next
Amiga system will have a very sophisticated streaming engine build into.
This would enable us to process several signals coming from MIDI (wheels,
keys), sampled sounds (from hard disk, memory, microphone), user input
(mouse move, joy stick), synthetic sources (noise, oscillator from delfina,
Assampler).  delfinacontrol.library is quite limitted in this aspect, e.g.
it is not possible to mix the two control signals "pitch bender" and "key
pitch" to create a tone controlled by MIDI keyboard and the pitch bender
wheel.

GUI

 A GUI is not supported, unless you consider mus/misc/DelfSetPipeMui as
that.  A nice GUI for the Delfina effects would be Assampler, but
integrating DelfLuxe into it would mean to blow up Assampler or to
completely restructure and modularize it.  The latter is preferred way, but
may not come reality on the classic Amigas.

Exceptions

 Exceptions are simply written to standard output (your CLI in most cases).
It's one of the things I feel to be limitting more and more in the classic
AmigaOS that it do not support an exception throwing and catching system.
Thus all languages that support exceptions have to take care not to skip OS
cleanup code when throwing an exception.  That's why one do better if one
writes code in a level of plain C.  :-(


Support site:
 http://www.assampler.de  (german)
 http://www.assampler.com (english)
 This is the support site for Assampler, another sound synthesis project of mine,
but its site is also used for the Delfina effects now.

Mailing list:
 http://www.yahoogroups.com/subscribe/assampler
 http://www.yahoogroups.com/group/assampler
 Again this mailing list is mainly addressed to people interested in
Assampler, but because of very low traffic and the similar topic, you are
welcome to join it, if you are interested in Delfina effects.


Contents of mus/misc/DelfLuxe.lha
 PERMSSN    UID  GID    PACKED    SIZE  RATIO METHOD CRC     STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
[generic]                 3582    7104  50.4% -lh5- bcbc Aug 30  2001 DelfLuxe/DelfinaCreateWaves
[generic]                  834    1436  58.1% -lh5- 8b78 Aug 10  2001 DelfLuxe/DelfinaListContexts
[generic]                 5299   10888  48.7% -lh5- f9ad Aug 30  2001 DelfLuxe/DelfinaMidiAllpassCascade
[generic]                 4067    8088  50.3% -lh5- e02d Aug 29  2001 DelfLuxe/DelfinaMidiAmplifier
[generic]                 7680   15736  48.8% -lh5- 41a6 Aug 29  2001 DelfLuxe/DelfinaMidiBlockResample
[generic]                 4101    8380  48.9% -lh5- 1bb4 Aug 29  2001 DelfLuxe/DelfinaMidiComplexFilter
[generic]                 5775   12024  48.0% -lh5- fb7b Aug 30  2001 DelfLuxe/DelfinaMidiEcho
[generic]                 4221    8480  49.8% -lh5- 7bb0 Aug 29  2001 DelfLuxe/DelfinaMidiFilter1stOrder
[generic]                 4321    9180  47.1% -lh5- 61b7 Aug 29  2001 DelfLuxe/DelfinaMidiGetAmplitude
[generic]                 4062    8180  49.7% -lh5- 79b5 Aug 29  2001 DelfLuxe/DelfinaMidiLimit
[generic]                 4859    9940  48.9% -lh5- 4762 Aug 30  2001 DelfLuxe/DelfinaMidiMoogFilter
[generic]                 3596    7216  49.8% -lh5- 3b9e Aug 29  2001 DelfLuxe/DelfinaMidiMultiplier
[generic]                 4325    8908  48.6% -lh5- 5940 Aug 29  2001 DelfLuxe/DelfinaMidiNoise
[generic]                 7033   14588  48.2% -lh5- 1e52 Aug 30  2001 DelfLuxe/DelfinaMidiOscillator
[generic]                 7752   16596  46.7% -lh5- bbd9 Aug 30  2001 DelfLuxe/DelfinaMidiReverb
[generic]                 4485    9104  49.3% -lh5- 65d2 Aug 29  2001 DelfLuxe/DelfinaMidiUniFilter
[generic]                 9944   23088  43.1% -lh5- e3c8 Aug 29  2001 DelfLuxe/DelfinaMidiVocoder
[generic]                 1124    2036  55.2% -lh5- 165b Aug 11  2001 DelfLuxe/DelfinaQuitAlgorithm
[generic]                 1691    2916  58.0% -lh5- 85ea Aug 11  2001 DelfLuxe/DelfinaRunModule
[generic]                 5851   13506  43.3% -lh5- f6d7 Aug 30  2001 DelfLuxe/DelfLuxe.readme
[generic]                11505   24460  47.0% -lh5- 890d Aug 30  2001 DelfLuxe/Libs/delfinacontrol.library
[generic]                  269     479  56.2% -lh5- b28a Aug 29  2001 DelfLuxe/S/AllpassPhaserBender.bat
[generic]                  196     359  54.6% -lh5- 1b10 Aug 29  2001 DelfLuxe/S/AllpassPhaserSweep.bat
[generic]                  314     563  55.8% -lh5- a533 Aug 11  2001 DelfLuxe/S/AllpassPhaserSweepNoCtrl.bat
[generic]                  102     217  47.0% -lh5- 72c8 Aug 10  2001 DelfLuxe/S/Amplifier.bat
[generic]                   65      81  80.2% -lh5- 9ec2 Aug 10  2001 DelfLuxe/S/Echo.bat
[generic]                  220     851  25.9% -lh5- 8b39 Aug 11  2001 DelfLuxe/S/FilterBender.bat
[generic]                  175     439  39.9% -lh5- a8b4 Aug 29  2001 DelfLuxe/S/FilterCascade.bat
[generic]                  201     475  42.3% -lh5- 5f9d Aug 11  2001 DelfLuxe/S/FilterDistort.bat
[generic]                  233     690  33.8% -lh5- 764b Aug 29  2001 DelfLuxe/S/FilterEnvelope.bat
[generic]                  269    1098  24.5% -lh5- fd45 Aug 30  2001 DelfLuxe/S/FilterNoise.bat
[generic]                  316    1454  21.7% -lh5- 74ac Aug 29  2001 DelfLuxe/S/FilterRandom.bat
[generic]                  240    1032  23.3% -lh5- 7cff Aug 12  2001 DelfLuxe/S/FilterSweep.bat
[generic]                  218     577  37.8% -lh5- 4645 Aug 30  2001 DelfLuxe/S/FilterSweepChannel.bat
[generic]                  294     521  56.4% -lh5- c79c Aug 11  2001 DelfLuxe/S/FilterSweepNoCtrl.bat
[generic]                  127     176  72.2% -lh5- 15fa Aug 10  2001 DelfLuxe/S/FilterVelocity.bat
[generic]                  259     891  29.1% -lh5- 9b27 Aug 11  2001 DelfLuxe/S/FlangerSweep.bat
[generic]                  371     707  52.5% -lh5- 9280 Aug 11  2001 DelfLuxe/S/FlangerSweepNoCtrl.bat
[generic]                  149     326  45.7% -lh5- 9524 Aug 10  2001 DelfLuxe/S/FrequencyModulation.bat
[generic]                  181     346  52.3% -lh5- c79d Aug 22  2001 DelfLuxe/S/LaserZap.bat
[generic]                   98     208  47.1% -lh5- f0e7 Aug 10  2001 DelfLuxe/S/LimitDistort.bat
[generic]                  332    1120  29.6% -lh5- 21cd Aug 30  2001 DelfLuxe/S/Oscillator.bat
[generic]                  206     544  37.9% -lh5- 4187 Aug 30  2001 DelfLuxe/S/QuantifiedNoise.bat
[generic]                  127     188  67.6% -lh5- 4fd3 Aug 10  2001 DelfLuxe/S/Reverb.bat
[generic]                  169     299  56.5% -lh5- f3c0 Aug 29  2001 DelfLuxe/S/Siren.bat
[generic]                  201     408  49.3% -lh5- 283f Aug 11  2001 DelfLuxe/S/Staccato.bat
[generic]                  330    1120  29.5% -lh5- d4f6 Aug 29  2001 DelfLuxe/S/Vocoder.bat
[generic]                 1655    2844  58.2% -lh5- 187d Aug 11  2001 DelfLuxe/Songs/OldCastle.mmd2
[generic]                  910    1336  68.1% -lh5- 317b Aug 11  2001 DelfLuxe/Songs/OxygeneVI.mmd2
[generic]                 1016    1732  58.7% -lh5- 5771 Aug 11  2001 DelfLuxe/Songs/OxygeneXIII.mmd2
[generic]                   41      41 100.0% -lh0- d5ff Jan 20  2001 DelfLuxe/Sources/A56/Add.a56
[generic]                   56      56 100.0% -lh0- e5d9 Jan 20  2001 DelfLuxe/Sources/A56/Add.o56
[generic]                  900    1909  47.1% -lh5- 5d39 Aug 29  2001 DelfLuxe/Sources/A56/AllpassCascade.a56
[generic]                  172     224  76.8% -lh5- fad6 Aug 29  2001 DelfLuxe/Sources/A56/AllpassCascade.o56
[generic]                  852    1954  43.6% -lh5- 3a55 Aug  1  2001 DelfLuxe/Sources/A56/AllpassCascadeFeedback.a56
[generic]                  606    1316  46.0% -lh5- f980 Jul 16  2001 DelfLuxe/Sources/A56/Amplifier.a56
[generic]                  177     248  71.4% -lh5- a859 Jul 14  2001 DelfLuxe/Sources/A56/Amplifier.o56
[generic]                  736    1472  50.0% -lh5- c87a Apr  8  2001 DelfLuxe/Sources/A56/ComplexFilter.a56
[generic]                  114     140  81.4% -lh5- 8929 Apr  8  2001 DelfLuxe/Sources/A56/ComplexFilter.o56
[generic]                  288     601  47.9% -lh5- 7213 Aug  9  2001 DelfLuxe/Sources/A56/DelfinaEffect.make
[generic]                  373     765  48.8% -lh5- 8f2d Aug  9  2001 DelfLuxe/Sources/A56/DelfinaEffectVar.make
[generic]                 1575    3843  41.0% -lh5- d27a Jul 15  2001 DelfLuxe/Sources/A56/Echo.a56
[generic]                  295     500  59.0% -lh5- 4ccc Jul 15  2001 DelfLuxe/Sources/A56/Echo.o56
[generic]                  657    1410  46.6% -lh5- 6878 Jul  7  2001 DelfLuxe/Sources/A56/Filter1stOrder.a56
[generic]                  174     232  75.0% -lh5- 54e1 Jul  7  2001 DelfLuxe/Sources/A56/Filter1stOrder.o56
[generic]                  714    1363  52.4% -lh5- cf40 Jul  8  2001 DelfLuxe/Sources/A56/GetAmplitude.a56
[generic]                  145     172  84.3% -lh5- b111 Jul  8  2001 DelfLuxe/Sources/A56/GetAmplitude.o56
[generic]                  242     417  58.0% -lh5- 6a3b Aug 22  2001 DelfLuxe/Sources/A56/GetValue.a56
[generic]                   71      80  88.8% -lh5- 4a14 Aug 22  2001 DelfLuxe/Sources/A56/GetValue.o56
[generic]                  374     758  49.3% -lh5- 162f Jul 15  2001 DelfLuxe/Sources/A56/Limit.a56
[generic]                  118     140  84.3% -lh5- 4378 Jul 15  2001 DelfLuxe/Sources/A56/Limit.o56
[generic]                  421     846  49.8% -lh5- c591 Jul  7  2001 DelfLuxe/Sources/A56/LowPass1stOrder.a56
[generic]                  113     144  78.5% -lh5- 4d79 Jul  7  2001 DelfLuxe/Sources/A56/LowPass1stOrder.o56
[generic]                  799    1822  43.9% -lh5- aef9 Aug  9  2001 DelfLuxe/Sources/A56/Makefile
[generic]                  960    2167  44.3% -lh5- 221c Aug  8  2001 DelfLuxe/Sources/A56/Makefile.fine
[generic]                  487    1051  46.3% -lh5- 4d4f Aug 30  2001 DelfLuxe/Sources/A56/Mixer.a56
[generic]                  169     240  70.4% -lh5- ed31 Aug 30  2001 DelfLuxe/Sources/A56/Mixer.o56
[generic]                  750    1571  47.7% -lh5- 11bd Aug 30  2001 DelfLuxe/Sources/A56/MoogFilter.a56
[generic]                  184     240  76.7% -lh5- 2574 Aug 30  2001 DelfLuxe/Sources/A56/MoogFilter.o56
[generic]                  404     837  48.3% -lh5- ebdc Jul 16  2001 DelfLuxe/Sources/A56/Multiplier.a56
[generic]                   99     120  82.5% -lh5- a118 Jul 16  2001 DelfLuxe/Sources/A56/Multiplier.o56
[generic]                  557    1088  51.2% -lh5- 7b4d Jul  6  2001 DelfLuxe/Sources/A56/Noise.a56
[generic]                  172     232  74.1% -lh5- 4622 Jul  6  2001 DelfLuxe/Sources/A56/Noise.o56
[generic]                 2206    6337  34.8% -lh5- f1fe Aug 22  2001 DelfLuxe/Sources/A56/Oscillator.a56
[generic]                  400     656  61.0% -lh5- 3f57 Aug 22  2001 DelfLuxe/Sources/A56/Oscillator.o56
[generic]                  360     652  55.2% -lh5- d548 Jul 14  2001 DelfLuxe/Sources/A56/PassThrough.a56
[generic]                   93     104  89.4% -lh5- 8d2f Aug  9  2001 DelfLuxe/Sources/A56/PassThrough.o56
[generic]                  477     926  51.5% -lh5- 4ac2 Jun 30  2001 DelfLuxe/Sources/A56/ReorderChannels.a56
[generic]                   91     108  84.3% -lh5- d4ca Jun 30  2001 DelfLuxe/Sources/A56/ReorderChannels.o56
[generic]                 1819    4607  39.5% -lh5- fc0b Jul  7  2001 DelfLuxe/Sources/A56/UniFilter.a56
[generic]                  253     380  66.6% -lh5- acf4 Aug  9  2001 DelfLuxe/Sources/A56/UniFilter.o56
[generic]                 8140   33706  24.2% -lh5- a4b8 Aug 12  2001 DelfLuxe/Sources/Cluster/CAMD.def
[generic]                  535    1114  48.0% -lh5- 9ed3 Jul  5  2001 DelfLuxe/Sources/Cluster/CAMD.mod
[generic]                 1517    3441  44.1% -lh5- 6a0d Apr 16  2001 DelfLuxe/Sources/Cluster/CAMDMidiMouse.mod
[generic]                 1007    2306  43.7% -lh5- d2a0 Aug 30  2001 DelfLuxe/Sources/Cluster/CAMDTestInput.mod
[generic]                  885    2094  42.3% -lh5- fbb7 Jan 21  2001 DelfLuxe/Sources/Cluster/CAMDTestOutput.mod
[generic]                 5042   18685  27.0% -lh5- cb72 Aug 30  2001 DelfLuxe/Sources/Cluster/Delfina.def
[generic]                 1554    4235  36.7% -lh5- 2f88 Aug 30  2001 DelfLuxe/Sources/Cluster/Delfina.mod
[generic]                  144     217  66.4% -lh5- 49a7 Aug 29  2001 DelfLuxe/Sources/Cluster/DelfinaAllpassCascade56k.def
[generic]                  358     845  42.4% -lh5- 6c67 Aug 29  2001 DelfLuxe/Sources/Cluster/DelfinaAllpassCascade56k.mod
[generic]                  140     192  72.9% -lh5- 74c0 Jul 14  2001 DelfLuxe/Sources/Cluster/DelfinaAmplifier56k.def
[generic]                  369     899  41.0% -lh5- bafe Jul 14  2001 DelfLuxe/Sources/Cluster/DelfinaAmplifier56k.mod
[generic]                  142     212  67.0% -lh5- 5e4d Apr  8  2001 DelfLuxe/Sources/Cluster/DelfinaComplexFilter56k.def
[generic]                  283     590  48.0% -lh5- 0f6a Apr  8  2001 DelfLuxe/Sources/Cluster/DelfinaComplexFilter56k.mod
[generic]                  762    2368  32.2% -lh5- d6e9 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaControl.def
[generic]                  360     756  47.6% -lh5- f204 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaControl.mod
[generic]                  529    1587  33.3% -lh5- 9fa8 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaControlDefinitions.def
[generic]                  212     410  51.7% -lh5- c1d3 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaControlDefinitions.mod
[generic]                11413   44852  25.4% -lh5- 6e8b Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaControlLib.mod
[generic]                 2606    6454  40.4% -lh5- 7b8c Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaControlLib.REV
[generic]                  325     627  51.8% -lh5- dcb7 Aug 29  2001 DelfLuxe/Sources/Cluster/DelfinaControlLibInit.def
[generic]                  572    1763  32.4% -lh5- 7172 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaControlLibInit.mod
[generic]                  937    2416  38.8% -lh5- 3a68 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaCreateWaves.mod
[generic]                  136     168  81.0% -lh5- d911 Jul 15  2001 DelfLuxe/Sources/Cluster/DelfinaEcho56k.def
[generic]                  532    1636  32.5% -lh5- 2fdc Jul 15  2001 DelfLuxe/Sources/Cluster/DelfinaEcho56k.mod
[generic]                  145     217  66.8% -lh5- 3a34 Jul  7  2001 DelfLuxe/Sources/Cluster/DelfinaFilter1stOrder56k.def
[generic]                  359     871  41.2% -lh5- 1121 Jul  7  2001 DelfLuxe/Sources/Cluster/DelfinaFilter1stOrder56k.mod
[generic]                  143     207  69.1% -lh5- c681 Jul  8  2001 DelfLuxe/Sources/Cluster/DelfinaGetAmplitude56k.def
[generic]                  326     682  47.8% -lh5- 387c Jul  8  2001 DelfLuxe/Sources/Cluster/DelfinaGetAmplitude56k.mod
[generic]                  139     187  74.3% -lh5- 6826 Aug 22  2001 DelfLuxe/Sources/Cluster/DelfinaGetValue56k.def
[generic]                  344     693  49.6% -lh5- 8fd0 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaGetValue56k.mod
[generic]                  135     172  78.5% -lh5- 6da0 Jul 15  2001 DelfLuxe/Sources/Cluster/DelfinaLimit56k.def
[generic]                  280     558  50.2% -lh5- 2074 Jul 15  2001 DelfLuxe/Sources/Cluster/DelfinaLimit56k.mod
[generic]                  221     443  49.9% -lh5- d2b6 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaListContexts.mod
[generic]                  145     222  65.3% -lh5- ec71 Jul  7  2001 DelfLuxe/Sources/Cluster/DelfinaLowPass1stOrder56k.def
[generic]                  284     609  46.6% -lh5- 7b0b Jul  7  2001 DelfLuxe/Sources/Cluster/DelfinaLowPass1stOrder56k.mod
[generic]                  792    2010  39.4% -lh5- 62e7 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiAllpassCascade.mod
[generic]                  596    1398  42.6% -lh5- fecb Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiAmplifier.mod
[generic]                 1046    2636  39.7% -lh5- d3dc Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiBlockResample.mod
[generic]                  867    2328  37.2% -lh5- 746c Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiComplexFilter.mod
[generic]                 1188    2999  39.6% -lh5- 2182 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiEcho.mod
[generic]                  636    1467  43.4% -lh5- 82bf Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiFilter1stOrder.mod
[generic]                  628    1448  43.4% -lh5- f17a Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiGetAmplitude.mod
[generic]                  569    1277  44.6% -lh5- 29bf Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiLimit.mod
[generic]                  746    1832  40.7% -lh5- 705b Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiMoogFilter.mod
[generic]                  387     825  46.9% -lh5- 6092 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiMultiplier.mod
[generic]                  690    1668  41.4% -lh5- 8d5b Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiNoise.mod
[generic]                  828    2081  39.8% -lh5- 8323 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiOscillator.mod
[generic]                 1411    3709  38.0% -lh5- f795 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiReverb.mod
[generic]                  461    1093  42.2% -lh5- be6b Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiSupport.def
[generic]                  780    1758  44.4% -lh5- 7bd4 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiSupport.mod
[generic]                  863    2299  37.5% -lh5- c28c Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiUniFilter.mod
[generic]                 1855    6095  30.4% -lh5- 57f3 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMidiVocoder.mod
[generic]                  138     172  80.2% -lh5- 007a Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMixer56k.def
[generic]                  346     857  40.4% -lh5- 3458 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMixer56k.mod
[generic]                  141     197  71.6% -lh5- ef47 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMoogFilter56k.def
[generic]                  367     877  41.8% -lh5- 4cd1 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaMoogFilter56k.mod
[generic]                  140     197  71.1% -lh5- b19e Jul 16  2001 DelfLuxe/Sources/Cluster/DelfinaMultiplier56k.def
[generic]                  258     519  49.7% -lh5- a27b Jul 16  2001 DelfLuxe/Sources/Cluster/DelfinaMultiplier56k.mod
[generic]                  135     172  78.5% -lh5- 003b Jul  6  2001 DelfLuxe/Sources/Cluster/DelfinaNoise56k.def
[generic]                  347     835  41.6% -lh5- 19ab Jul  6  2001 DelfLuxe/Sources/Cluster/DelfinaNoise56k.mod
[generic]                  141     198  71.2% -lh5- f101 Aug 22  2001 DelfLuxe/Sources/Cluster/DelfinaOscillator56k.def
[generic]                  661    2125  31.1% -lh5- f6be Aug 22  2001 DelfLuxe/Sources/Cluster/DelfinaOscillator56k.mod
[generic]                  142     202  70.3% -lh5- ac05 Aug  9  2001 DelfLuxe/Sources/Cluster/DelfinaPassThrough56k.def
[generic]                  256     475  53.9% -lh5- 5aff Aug  9  2001 DelfLuxe/Sources/Cluster/DelfinaPassThrough56k.mod
[generic]                  522    1126  46.4% -lh5- 2961 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaQuitAlgorithm.mod
[generic]                  145     222  65.3% -lh5- dc90 Jun 30  2001 DelfLuxe/Sources/Cluster/DelfinaReorderChannels56k.def
[generic]                  253     502  50.4% -lh5- 2825 Jun 30  2001 DelfLuxe/Sources/Cluster/DelfinaReorderChannels56k.mod
[generic]                 1328    3652  36.4% -lh5- cbd9 Aug 30  2001 DelfLuxe/Sources/Cluster/DelfinaRunModule.mod
[generic]                  137     192  71.4% -lh5- a57f Aug  9  2001 DelfLuxe/Sources/Cluster/DelfinaUniFilter56k.def
[generic]                  461    1294  35.6% -lh5- 8948 Aug  9  2001 DelfLuxe/Sources/Cluster/DelfinaUniFilter56k.mod
[generic]                  570    2112  27.0% -lh5- 2ac3 Aug 29  2001 DelfLuxe/Sources/Cluster/ImportAll.mod
[generic]                 3880   12556  30.9% -lh5- 1a60 Jul  1  2001 DelfLuxe/Sources/Cluster/MidiDefs.def
[generic]                  498    1097  45.4% -lh5- c46b Jul  5  2001 DelfLuxe/Sources/Cluster/MidiDefs.mod
[generic]                 1210    3675  32.9% -lh5- 42b8 Jan  4  2001 DelfLuxe/Sources/Cluster/MidiPrefs.def
[generic]                  188     360  52.2% -lh5- dc67 Jul  5  2001 DelfLuxe/Sources/Cluster/MidiPrefs.mod
[generic]                 1149    3059  37.6% -lh5- 993c Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfina.def
[generic]                 1611    4167  38.7% -lh5- ca17 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfina.mod
[generic]                  452    1170  38.6% -lh5- f56d Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaAllpassCascade.def
[generic]                 1375    3763  36.5% -lh5- 7336 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaAllpassCascade.mod
[generic]                  370     845  43.8% -lh5- 48fa Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaAmplifier.def
[generic]                 1086    2444  44.4% -lh5- 7605 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaAmplifier.mod
[generic]                  398     979  40.7% -lh5- f1c6 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaComplexFilter.def
[generic]                  877    2138  41.0% -lh5- 4e5d Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaComplexFilter.mod
[generic]                  561    1401  40.0% -lh5- a960 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaEcho.def
[generic]                 1360    4059  33.5% -lh5- dda5 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaEcho.mod
[generic]                  389     938  41.5% -lh5- b3b0 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaFilter1stOrder.def
[generic]                  744    1950  38.2% -lh5- 4fd7 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaFilter1stOrder.mod
[generic]                  410     985  41.6% -lh5- 7574 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaGetAmplitude.def
[generic]                  846    2342  36.1% -lh5- e158 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaGetAmplitude.mod
[generic]                  348     777  44.8% -lh5- c70a Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaLimit.def
[generic]                  650    1527  42.6% -lh5- cab0 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaLimit.mod
[generic]                  442     956  46.2% -lh5- da9d Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaMixer.def
[generic]                  891    2121  42.0% -lh5- 4525 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaMixer.mod
[generic]                  443    1085  40.8% -lh5- 33fc Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaMoogFilter.def
[generic]                 1342    4452  30.1% -lh5- 7512 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaMoogFilter.mod
[generic]                  348     782  44.5% -lh5- a669 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaMultiplier.def
[generic]                  410     855  48.0% -lh5- 4f62 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaMultiplier.mod
[generic]                  378     857  44.1% -lh5- b6ce Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaNoise.def
[generic]                  722    1778  40.6% -lh5- 8260 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaNoise.mod
[generic]                  506    1240  40.8% -lh5- 1237 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaOscillator.def
[generic]                 1807    5442  33.2% -lh5- 7341 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaOscillator.mod
[generic]                  361     850  42.5% -lh5- c840 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaReorderChannels.def
[generic]                  415     900  46.1% -lh5- 9dca Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaReorderChannels.mod
[generic]                  383     919  41.7% -lh5- 2f30 Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaUniFilter.def
[generic]                 1039    2600  40.0% -lh5- 2b7f Aug 30  2001 DelfLuxe/Sources/Cluster/ODelfinaUniFilter.mod
[generic]                  861    2681  32.1% -lh5- f0b4 Aug 30  2001 DelfLuxe/Sources/Cluster/T_Delfina.def
[generic]                  778    2530  30.8% -lh5- 1e98 Aug 30  2001 DelfLuxe/Sources/Cluster/T_Delfina.mod
[generic]                   83     128  64.8% -lh5- ff86 Aug  8  2001 DelfLuxe/Waves/Saw
[generic]                  128     128 100.0% -lh0- 49b7 Aug  8  2001 DelfLuxe/Waves/Sine
[generic]                   16     128  12.5% -lh5- d002 Aug  8  2001 DelfLuxe/Waves/Square
[generic]                   73     128  57.0% -lh5- 7617 Aug  8  2001 DelfLuxe/Waves/Triangle
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total       202 files  226524  554779  40.8%            Sep  5  2001
Page generated in 0.02 seconds
Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>