The great audio processing overhaul.
authorDavid Robillard <d@drobilla.net>
Thu, 7 May 2009 06:30:50 +0000 (06:30 +0000)
committerDavid Robillard <d@drobilla.net>
Thu, 7 May 2009 06:30:50 +0000 (06:30 +0000)
commit7183242b8c8d9296f94a035fb66b1eae06fd3496
treeee48e2019f2330baee7c280090a48e43336682b3
parent97b5eb1580d53197dc93a805d1995b82660cdfe3
The great audio processing overhaul.

The vast majority of Route signal processing is now simply in the list of
processors.  There are definitely regressions here, but there's also
a lot of things fixed.  It's far too much work to let diverge anymore
regardless, so here it is.

The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream).  The first processor takes this
as input.  The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on.  Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.

All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).

User visible changes:
 * LV2 Instrument support (tracks with both MIDI and audio channels)
 * MIDI in/out plugin support
 * Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
 * Movable meter point

Known Bugs:
 * Things seem to get weird on loaded sessions
 * Output delivery is sketchy
 * 2.0 session loading was probably already broken...
   but it's definitely broken now :)

Please test this and file bugs if you have any time...

git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
85 files changed:
gtk2_ardour/audio_time_axis.cc
gtk2_ardour/keyboard.cc
gtk2_ardour/main.cc
gtk2_ardour/mixer_strip.cc
gtk2_ardour/panner2d.cc
gtk2_ardour/panner2d.h
gtk2_ardour/panner_ui.cc
gtk2_ardour/po/de_DE.po
gtk2_ardour/po/el_GR.po
gtk2_ardour/po/es_ES.po
gtk2_ardour/po/fr_FR.po
gtk2_ardour/po/it_IT.po
gtk2_ardour/po/pl_PL.po
gtk2_ardour/po/pt_BR.po
gtk2_ardour/po/pt_PT.po
gtk2_ardour/po/ru_RU.po
gtk2_ardour/po/sv_SE.po
gtk2_ardour/processor_box.cc
gtk2_ardour/processor_box.h
gtk2_ardour/time_axis_view.cc
gtk2_ardour/ui_config.cc
libs/ardour/amp.cc
libs/ardour/ardour/amp.h
libs/ardour/ardour/audio_track.h
libs/ardour/ardour/buffer_set.h
libs/ardour/ardour/chan_count.h
libs/ardour/ardour/chan_mapping.h
libs/ardour/ardour/click.h
libs/ardour/ardour/control_outputs.h [new file with mode: 0644]
libs/ardour/ardour/io.h
libs/ardour/ardour/io_processor.h
libs/ardour/ardour/meter.h
libs/ardour/ardour/midi_track.h
libs/ardour/ardour/panner.h
libs/ardour/ardour/plugin_insert.h
libs/ardour/ardour/port_insert.h
libs/ardour/ardour/processor.h
libs/ardour/ardour/route.h
libs/ardour/ardour/send.h
libs/ardour/ardour/session.h
libs/ardour/ardour/track.h
libs/ardour/audio_diskstream.cc
libs/ardour/audio_track.cc
libs/ardour/audioengine.cc
libs/ardour/automatable.cc
libs/ardour/buffer_set.cc
libs/ardour/chan_count.cc
libs/ardour/configuration.cc
libs/ardour/control_outputs.cc [new file with mode: 0644]
libs/ardour/diskstream.cc
libs/ardour/globals.cc
libs/ardour/import.cc
libs/ardour/io.cc
libs/ardour/io_processor.cc
libs/ardour/lv2_event_buffer.cc
libs/ardour/lv2_plugin.cc
libs/ardour/meter.cc
libs/ardour/midi_diskstream.cc
libs/ardour/midi_patch_manager.cc
libs/ardour/midi_source.cc
libs/ardour/midi_track.cc
libs/ardour/panner.cc
libs/ardour/plugin_insert.cc
libs/ardour/plugin_manager.cc
libs/ardour/po/el_GR.po
libs/ardour/po/it_IT.po
libs/ardour/po/pl_PL.po
libs/ardour/po/ru_RU.po
libs/ardour/po/sv_SE.po
libs/ardour/port.cc
libs/ardour/port_insert.cc
libs/ardour/processor.cc
libs/ardour/route.cc
libs/ardour/send.cc
libs/ardour/session.cc
libs/ardour/session_state.cc
libs/ardour/smf_source.cc
libs/ardour/template_utils.cc
libs/ardour/track.cc
libs/ardour/wscript
libs/evoral/evoral/Control.hpp
libs/evoral/evoral/ControlSet.hpp
libs/evoral/evoral/Sequence.hpp
libs/evoral/src/Control.cpp
libs/evoral/src/ControlSet.cpp