=======================================================================
| 12 | |
| 13 | //======================================================================= |
| 14 | int main() |
| 15 | { |
| 16 | //--------------------------------------------------------------- |
| 17 | /** Writes a sine wave to an audio file */ |
| 18 | examples::writeSineWaveToAudioFile(); |
| 19 | |
| 20 | //--------------------------------------------------------------- |
| 21 | /** Loads an audio file and prints key details to the console*/ |
| 22 | examples::loadAudioFileAndPrintSummary(); |
| 23 | |
| 24 | //--------------------------------------------------------------- |
| 25 | /** Loads an audio file and processess the samples */ |
| 26 | examples::loadAudioFileAndProcessSamples(); |
| 27 | |
| 28 | return 0; |
| 29 | } |
| 30 | |
| 31 | //======================================================================= |
| 32 | namespace examples |
nothing calls this directly
no test coverage detected