From: Sampo Savolainen Date: Wed, 11 Oct 2006 21:07:43 +0000 (+0000) Subject: Fix normal gain stage to use SSE / veclib optimizations. X-Git-Tag: 2.0beta6~27 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=c44e6a62f62b1f74a5cb5304ad5b4aa81c176d76;p=ardour.git Fix normal gain stage to use SSE / veclib optimizations. git-svn-id: svn://localhost/ardour2/trunk@978 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 318989bb60..87493e5400 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -483,7 +483,7 @@ Route::process_output_buffers (vector& bufs, uint32_t nbufs, for (n = 0; n < nbufs; ++n) { Sample *sp = bufs[n]; - apply_gain_to_buffer(sp,nframes,this_gain); + Session::apply_gain_to_buffer(sp,nframes,this_gain); } } else if (_gain == 0) {