To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / TestInitialise.cpp @ 67:fa66ee7dcf08

History | View | Annotate | Download (4.63 KB)

1 10:0c1c60654125 cannam
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
2
3
/*
4
    Vamp Plugin Tester
5
    Chris Cannam, cannam@all-day-breakfast.com
6
    Centre for Digital Music, Queen Mary, University of London.
7 42:f1e8e14e9c96 Chris
    Copyright 2009-2014 QMUL.
8 10:0c1c60654125 cannam

9
    This program loads a Vamp plugin and tests its susceptibility to a
10
    number of common pitfalls, including handling of extremes of input
11
    data.  If you can think of any additional useful tests that are
12
    easily added, please send them to me.
13

14
    Permission is hereby granted, free of charge, to any person
15
    obtaining a copy of this software and associated documentation
16
    files (the "Software"), to deal in the Software without
17
    restriction, including without limitation the rights to use, copy,
18
    modify, merge, publish, distribute, sublicense, and/or sell copies
19
    of the Software, and to permit persons to whom the Software is
20
    furnished to do so, subject to the following conditions:
21

22
    The above copyright notice and this permission notice shall be
23
    included in all copies or substantial portions of the Software.
24

25
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
29
    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
30
    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32

33
    Except as contained in this notice, the names of the Centre for
34
    Digital Music; Queen Mary, University of London; and Chris Cannam
35
    shall not be used in advertising or otherwise to promote the sale,
36
    use or other dealings in this Software without prior written
37
    authorization.
38
*/
39
40
#include "TestInitialise.h"
41
42
#include <vamp-hostsdk/Plugin.h>
43
#include <vamp-hostsdk/PluginLoader.h>
44
using namespace Vamp;
45
using namespace Vamp::HostExt;
46
47
#include <set>
48
#include <memory>
49
using namespace std;
50
51
#include <cmath>
52 45:56eabc22ccbf Chris
#include <ctime>
53 10:0c1c60654125 cannam
54
Tester::TestRegistrar<TestSampleRates>
55 39:07144cdcbedf Chris
TestSampleRates::m_registrar("F1", "Different sample rates");
56 10:0c1c60654125 cannam
57
Tester::TestRegistrar<TestLengthyConstructor>
58 39:07144cdcbedf Chris
TestLengthyConstructor::m_registrar("F2", "Lengthy constructor");
59 10:0c1c60654125 cannam
60
Test::Results
61 23:28097c1b3de4 cannam
TestSampleRates::test(string key, Options options)
62 10:0c1c60654125 cannam
{
63
    int rates[] =
64 43:0973204bf446 Chris
        { 111, 800, 10099, 11024, 44100, 48000, 96000, 192000, 201011, 1094091 };
65 10:0c1c60654125 cannam
66
    Results r;
67
68 23:28097c1b3de4 cannam
    if (options & Verbose) {
69
        cout << "    ";
70
    }
71
72 14:e48fdc8de790 cannam
    for (int i = 0; i < int(sizeof(rates)/sizeof(rates[0])); ++i) {
73 10:0c1c60654125 cannam
74
        int rate = rates[i];
75 23:28097c1b3de4 cannam
76
        if (options & Verbose) {
77
            cout << "[" << rate << "Hz] " << flush;
78
        }
79
80 10:0c1c60654125 cannam
        auto_ptr<Plugin> p(load(key, rate));
81
        Plugin::FeatureSet f;
82
        float **data = 0;
83
        size_t channels = 0;
84 43:0973204bf446 Chris
85
        // Aim to feed the plugin a roughly fixed input duration in secs
86
        const float seconds = 10.f;
87
        size_t step = 1000;
88
        size_t count = (seconds * rate) / step;
89
        if (count < 1) count = 1;
90 10:0c1c60654125 cannam
91 23:28097c1b3de4 cannam
        Results subr;
92 43:0973204bf446 Chris
        if (!initAdapted(p.get(), channels, step, step, subr)) {
93 23:28097c1b3de4 cannam
            // This is not an error; the plugin can legitimately
94
            // refuse to initialise at weird settings and that's often
95
            // the most acceptable result
96
            if (!subr.empty()) {
97
                r.push_back(note(subr.begin()->message()));
98
            }
99
            continue;
100
        }
101 10:0c1c60654125 cannam
102 43:0973204bf446 Chris
        data = createTestAudio(channels, step, count);
103
        for (size_t j = 0; j < count; ++j) {
104 67:fa66ee7dcf08 Chris
            float **ptr = new float *[channels];
105 43:0973204bf446 Chris
            size_t idx = j * step;
106 10:0c1c60654125 cannam
            for (size_t c = 0; c < channels; ++c) ptr[c] = data[c] + idx;
107
            RealTime timestamp = RealTime::frame2RealTime(idx, rate);
108
            Plugin::FeatureSet fs = p->process(ptr, timestamp);
109 67:fa66ee7dcf08 Chris
            delete[] ptr;
110 10:0c1c60654125 cannam
            appendFeatures(f, fs);
111
        }
112
        Plugin::FeatureSet fs = p->getRemainingFeatures();
113
        appendFeatures(f, fs);
114
        destroyTestAudio(data, channels);
115
    }
116
117 23:28097c1b3de4 cannam
    if (options & Verbose) cout << endl;
118
119 10:0c1c60654125 cannam
    // We can't actually do anything meaningful with our results.
120
    // We're really just testing to see whether the plugin crashes.  I
121
    // wonder whether it's possible to do any better?  If not, we
122
    // should probably report our limitations
123
124
    return r;
125
}
126
127
Test::Results
128 14:e48fdc8de790 cannam
TestLengthyConstructor::test(string key, Options)
129 10:0c1c60654125 cannam
{
130
    time_t t0 = time(0);
131
    auto_ptr<Plugin> p(load(key));
132
    time_t t1 = time(0);
133
    Results r;
134
    if (t1 - t0 > 1) r.push_back(warning("Constructor takes some time to run: work should be deferred to initialise?"));
135
    return r;
136
}