annotate transform/PluginTransform.h @ 182:21a76c9ed5c3

* Merge transform directory from sv-match-alignment branch (the previous comment included notes for this stuff, but I missed it in the actual merge) * Fix crash when a transform fails to create an output model and the thread that created the transform then deletes its input model thinking it's no longer needed, even though the transform run thread is still using it -- fix is to wait() on the transform before returning the null output model
author Chris Cannam
date Fri, 28 Sep 2007 16:15:06 +0000
parents bedc7517b6e8
children
rev   line source
Chris@27 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@27 2
Chris@27 3 /*
Chris@27 4 Sonic Visualiser
Chris@27 5 An audio file viewer and annotation editor.
Chris@27 6 Centre for Digital Music, Queen Mary, University of London.
Chris@77 7 This file copyright 2006 QMUL.
Chris@27 8
Chris@27 9 This program is free software; you can redistribute it and/or
Chris@27 10 modify it under the terms of the GNU General Public License as
Chris@27 11 published by the Free Software Foundation; either version 2 of the
Chris@27 12 License, or (at your option) any later version. See the file
Chris@27 13 COPYING included with this distribution for more information.
Chris@27 14 */
Chris@27 15
Chris@27 16 #ifndef _PLUGIN_TRANSFORM_H_
Chris@27 17 #define _PLUGIN_TRANSFORM_H_
Chris@27 18
Chris@27 19 #include "Transform.h"
Chris@27 20
Chris@27 21 #include "base/Window.h"
Chris@27 22
Chris@27 23 #include "vamp-sdk/Plugin.h"
Chris@27 24
Chris@27 25 //!!! should this just move back up to Transform? It is after all used
Chris@27 26 //directly in all sorts of generic places, like Document
Chris@27 27
Chris@27 28 class PluginTransform : public Transform
Chris@27 29 {
Chris@27 30 public:
Chris@27 31 class ExecutionContext {
Chris@27 32 public:
Chris@27 33 // Time domain:
Chris@27 34 ExecutionContext(int _c = -1, size_t _bs = 0);
Chris@27 35
Chris@27 36 // Frequency domain:
Chris@27 37 ExecutionContext(int _c, size_t _ss, size_t _bs, WindowType _wt);
Chris@27 38
Chris@27 39 // From plugin defaults:
Chris@27 40 ExecutionContext(int _c, const Vamp::PluginBase *_plugin);
Chris@27 41
Chris@27 42 bool operator==(const ExecutionContext &);
Chris@27 43
Chris@27 44 void makeConsistentWithPlugin(const Vamp::PluginBase *_plugin);
Chris@27 45
Chris@27 46 int channel;
Chris@27 47 Vamp::Plugin::InputDomain domain;
Chris@27 48 size_t stepSize;
Chris@27 49 size_t blockSize;
Chris@27 50 WindowType windowType;
Chris@182 51 size_t startFrame;
Chris@182 52 size_t duration; // 0 -> whole thing
Chris@182 53 float sampleRate; // 0 -> model's rate
Chris@27 54 };
Chris@27 55
Chris@27 56 protected:
Chris@27 57 PluginTransform(Model *inputModel,
Chris@27 58 const ExecutionContext &context);
Chris@27 59
Chris@27 60 ExecutionContext m_context;
Chris@27 61 };
Chris@27 62
Chris@27 63 #endif