annotate projects/basic_FFT_phase_vocoder/SampleData.h @ 258:88cf310417cd aux_task_args

Add a parameter 'autoSchedule' to createAuxiliaryTask() which when true causes the task to be automatically scheduled after every render function call, without the user needing to call scheduleAuxiliaryTask()
author Liam Donovan <l.b.donovan@qmul.ac.uk>
date Sat, 07 May 2016 13:23:15 +0100
parents aec268b5d1b4
children
rev   line source
giuliomoro@250 1 /*
giuliomoro@250 2 * SampleData.h
giuliomoro@250 3 *
giuliomoro@250 4 * Created on: Nov 5, 2014
giuliomoro@250 5 * Author: Victor Zappi
giuliomoro@250 6 */
giuliomoro@250 7
giuliomoro@250 8 #ifndef SAMPLEDATA_H_
giuliomoro@250 9 #define SAMPLEDATA_H_
giuliomoro@250 10
giuliomoro@250 11 // User defined structure to pass between main and rendere complex data retrieved from file
giuliomoro@250 12 struct SampleData {
giuliomoro@250 13 float *samples; // Samples in file
giuliomoro@250 14 int sampleLen; // Total nume of samples
giuliomoro@250 15 };
giuliomoro@250 16
giuliomoro@250 17
giuliomoro@250 18
giuliomoro@250 19 #endif /* SAMPLEDATA_H_ */