From c44e6a62f62b1f74a5cb5304ad5b4aa81c176d76 Mon Sep 17 00:00:00 2001 From: Sampo Savolainen Date: Wed, 11 Oct 2006 21:07:43 +0000 Subject: [PATCH] Fix normal gain stage to use SSE / veclib optimizations. git-svn-id: svn://localhost/ardour2/trunk@978 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/route.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {