mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 14:16:31 +01:00
Make stem export export from right before any processors.
The dialog does not support exporting from the outputs anymore, sorry. Will add options later... git-svn-id: svn://localhost/ardour2/branches/3.0@8520 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
113e6b505a
commit
a406d9183a
12 changed files with 306 additions and 24 deletions
|
|
@ -42,10 +42,10 @@ ExportGraphBuilder::process (framecnt_t frames, bool last_cycle)
|
|||
assert(frames <= process_buffer_frames);
|
||||
|
||||
for (ChannelMap::iterator it = channels.begin(); it != channels.end(); ++it) {
|
||||
Sample * process_buffer = 0;
|
||||
Sample const * process_buffer = 0;
|
||||
it->first->read (process_buffer, frames);
|
||||
ProcessContext<Sample> context(process_buffer, frames, 1);
|
||||
if (last_cycle) { context.set_flag (ProcessContext<Sample>::EndOfInput); }
|
||||
ConstProcessContext<Sample> context(process_buffer, frames, 1);
|
||||
if (last_cycle) { context().set_flag (ProcessContext<Sample>::EndOfInput); }
|
||||
it->second->process (context);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue