Mercurial > hg > vamp-plugin-sdk
comparison src/vamp-hostsdk/PluginInputDomainAdapter.cpp @ 290:c97e70ed5abc
* Doc updates, copyright updates, etc., in preparation for 2.1 release
author | cannam |
---|---|
date | Mon, 21 Sep 2009 09:33:05 +0000 |
parents | 3e5ab1c7ea8c |
children | 5940dd0a399f |
comparison
equal
deleted
inserted
replaced
289:3e5ab1c7ea8c | 290:c97e70ed5abc |
---|---|
4 Vamp | 4 Vamp |
5 | 5 |
6 An API for audio analysis and feature extraction plugins. | 6 An API for audio analysis and feature extraction plugins. |
7 | 7 |
8 Centre for Digital Music, Queen Mary, University of London. | 8 Centre for Digital Music, Queen Mary, University of London. |
9 Copyright 2006-2007 Chris Cannam and QMUL. | 9 Copyright 2006-2009 Chris Cannam and QMUL. |
10 | 10 |
11 This file is based in part on Don Cross's public domain FFT | 11 This file is based in part on Don Cross's public domain FFT |
12 implementation. | 12 implementation. |
13 | 13 |
14 Permission is hereby granted, free of charge, to any person | 14 Permission is hereby granted, free of charge, to any person |
107 double *m_window; | 107 double *m_window; |
108 | 108 |
109 ProcessTimestampMethod m_method; | 109 ProcessTimestampMethod m_method; |
110 int m_processCount; | 110 int m_processCount; |
111 float **m_shiftBuffers; | 111 float **m_shiftBuffers; |
112 // FeatureSet prepadProcess(const float *const *inputBuffers, | |
113 // RealTime timestamp); | |
114 | 112 |
115 #ifdef HAVE_FFTW3 | 113 #ifdef HAVE_FFTW3 |
116 fftw_plan m_plan; | 114 fftw_plan m_plan; |
117 fftw_complex *m_cbuf; | 115 fftw_complex *m_cbuf; |
118 #else | 116 #else |