Mercurial > hg > beaglert
annotate projects/basic_FFT_phase_vocoder/SampleData.h @ 253:33e0e4831763 prerelease
Started prerelease branch; updated PRU code to be able to run on either PRU.
author | andrewm |
---|---|
date | Mon, 16 May 2016 12:13:58 +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_ */ |