summaryrefslogtreecommitdiff
path: root/libs/ardour/sse_functions_xmm.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-05-02 15:21:51 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-05-02 15:21:51 +0000
commitc3e666867cfd44768c9aa605abefde78274ace24 (patch)
tree547fb2300f0b384387647936c13d6672385aa0e7 /libs/ardour/sse_functions_xmm.cc
parenta612857eb6024f75f11094d09def4ccbe621b7b4 (diff)
reintroduce use of optimized functions for gain into buffer code, and cleanup the way they are declared to avoid depending on Session
git-svn-id: svn://localhost/ardour2/branches/midi@1775 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/sse_functions_xmm.cc')
-rw-r--r--libs/ardour/sse_functions_xmm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/sse_functions_xmm.cc b/libs/ardour/sse_functions_xmm.cc
index 5554462132..9b37c37912 100644
--- a/libs/ardour/sse_functions_xmm.cc
+++ b/libs/ardour/sse_functions_xmm.cc
@@ -22,7 +22,7 @@
#include <ardour/types.h>
void
-x86_sse_find_peaks(float *buf, nframes_t nframes, float *min, float *max)
+x86_sse_find_peaks(const ARDOUR::Sample* buf, nframes_t nframes, float *min, float *max)
{
__m128 current_max, current_min, work;