summaryrefslogtreecommitdiff
path: root/src/lib/resampler.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-09 09:50:48 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-09 09:50:48 +0100
commitf26af8112b03b5233eb5239defd11a7428b705ad (patch)
treea7385c484829f531bbbc35b3f38235035e160a92 /src/lib/resampler.h
parent272ce54d159a53be22f592922913901cfc673097 (diff)
Use SRC_LINEAR for speed when analysing audio (#685).
Diffstat (limited to 'src/lib/resampler.h')
-rw-r--r--src/lib/resampler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/resampler.h b/src/lib/resampler.h
index 5a69d0983..f51c3cdb5 100644
--- a/src/lib/resampler.h
+++ b/src/lib/resampler.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -27,7 +27,7 @@ class AudioBuffers;
class Resampler : public boost::noncopyable
{
public:
- Resampler (int, int, int);
+ Resampler (int, int, int, bool fast);
~Resampler ();
boost::shared_ptr<const AudioBuffers> run (boost::shared_ptr<const AudioBuffers>);