summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/quantize.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-31 02:59:48 +0000
committerDavid Robillard <d@drobilla.net>2011-05-31 02:59:48 +0000
commitfd33fa896f787470d3c12708e02f9c7af63259c8 (patch)
tree2eb361f7bf4847e769b031e4b0dd14b4ec056069 /libs/ardour/ardour/quantize.h
parenta0d09e81d4b304b2474b3be9f1bd6a04b3779489 (diff)
Quantize notes to session tempo time, not relative to start of region (fix issue #4069).
git-svn-id: svn://localhost/ardour2/branches/3.0@9640 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/quantize.h')
-rw-r--r--libs/ardour/ardour/quantize.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/ardour/ardour/quantize.h b/libs/ardour/ardour/quantize.h
index bf046e6c50..e1ca2b2395 100644
--- a/libs/ardour/ardour/quantize.h
+++ b/libs/ardour/ardour/quantize.h
@@ -36,7 +36,9 @@ public:
float strength, float swing, float threshold);
~Quantize ();
- Command* operator() (boost::shared_ptr<ARDOUR::MidiModel>, std::vector<Evoral::Sequence<Evoral::MusicalTime>::Notes>&);
+ Command* operator() (boost::shared_ptr<ARDOUR::MidiModel>,
+ double position,
+ std::vector<Evoral::Sequence<Evoral::MusicalTime>::Notes>&);
std::string name() const { return std::string ("quantize"); }
private: