Mercurial > hg > beaglert
annotate examples/basic_FFT_phase_vocoder/SampleData.h @ 377:a430a16d2c02 prerelease
Updated scripts so that the Bela folder on the bbb is ~/Bela. Note: BeagleRT_startup.sh is still the same (because the reference to it needs to be changed in /etc/init.d/ ....
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Sat, 11 Jun 2016 01:54:43 +0100 |
parents | dbeed520b014 |
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_ */ |