Revision 62:247a0c471a51

View differences:

README
171 171
 simple test file.  This may be perfectly reasonable behaviour, but
172 172
 you might like to know about it.
173 173

  
174
 ** ERROR: Plugin output <x> has FixedSampleRate but gives sample rate as 0
175

  
176
 A plugin output that has a sample type of FixedSampleRate must have a
177
 non-zero sample rate. See
178
 https://code.soundsoftware.ac.uk/projects/vamp-plugin-sdk/wiki/SampleType
179

  
174 180
 ** NOTE: Plugin returns features with timestamps on OneSamplePerStep output
175 181
 ** NOTE: Plugin returns features with durations on OneSamplePerStep output
176 182

  
177 183
 Hosts will usually ignore timestamps and durations attached to any
178
 feature returned on a OneSamplePerStep output.
184
 feature returned on a OneSamplePerStep output. See
185
 https://code.soundsoftware.ac.uk/projects/vamp-plugin-sdk/wiki/SampleType
179 186

  
180 187
 ** ERROR: Plugin returns features with no timestamps on VariableSampleRate output
181 188

  
182 189
 Timestamps are mandatory on all features associated with a
183
 VariableSampleRate output.
190
 VariableSampleRate output. See
191
 https://code.soundsoftware.ac.uk/projects/vamp-plugin-sdk/wiki/SampleType
184 192

  
185 193
 ** WARNING: Plugin returned one or more NaN/inf values
186 194

  
......
255 263
 If you give the -n or --nondeterministic option, vamp-plugin-tester
256 264
 will downgrade this error to a note.
257 265

  
266
 ** ERROR: Call to reset after setting parameters, but before processing, changes the results (parameter values not retained through reset?)
267

  
268
 The plugin was constructed and run twice on the same data. The first
269
 time, its parameters were set to some arbitrary values and it was
270
 initialised and run. The second time, its parameters were set to the
271
 same values and it was initialised, then reset(), then run. The two
272
 runs returned different results, suggesting that perhaps some
273
 parameter value was being modified within the reset() function. (This
274
 function should reset internal state within the plugin, but not
275
 parameter configuration.)
276

  
277
 If you give the -n or --nondeterministic option, vamp-plugin-tester
278
 will downgrade this error to a note.
279

  
258 280
 ** WARNING: Constructor takes some time to run: work should be deferred to initialise?
259 281

  
260 282
 The plugin took a long time to construct.  You should ensure that the

Also available in: Unified diff