summaryrefslogtreecommitdiff
path: root/libs/ardour/audio_track.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-04-27 17:10:04 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-04-27 17:10:04 +0000
commit47de938e998ffceb0d9cfa829b47dad721445dc9 (patch)
tree4b45ec998720dca102820df648595a16d3c28dc6 /libs/ardour/audio_track.cc
parenta8e354ed7bb38f8be8bfdda33841f3f238e8bbab (diff)
add muted-by-other concept to solo support infrastructure
git-svn-id: svn://localhost/ardour2/branches/3.0@7005 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/audio_track.cc')
-rw-r--r--libs/ardour/audio_track.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/audio_track.cc b/libs/ardour/audio_track.cc
index 862f15b68c..e90c569753 100644
--- a/libs/ardour/audio_track.cc
+++ b/libs/ardour/audio_track.cc
@@ -527,7 +527,7 @@ int
AudioTrack::export_stuff (BufferSet& buffers, sframes_t start, nframes_t nframes, bool enable_processing)
{
boost::scoped_array<gain_t> gain_buffer (new gain_t[nframes]);
- boost::scoped_array<float> mix_buffer (new float[nframes]);
+ boost::scoped_array<Sample> mix_buffer (new Sample[nframes]);
boost::shared_ptr<AudioDiskstream> diskstream = audio_diskstream();
Glib::RWLock::ReaderLock rlock (_processor_lock);