From 0476e187a318da2aaa431aac3054f65c3dfa2e0e Mon Sep 17 00:00:00 2001 From: Patrick Radius Date: Mon, 2 Jan 2017 10:25:47 +0100 Subject: [PATCH] Update AudioMultiply_F32.h Oops, forgot to edit the title in the comment. Also added guard block so there will be no problem including it in multiple places (i guess all .h files should have this) --- AudioMultiply_F32.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/AudioMultiply_F32.h b/AudioMultiply_F32.h index 55988ec..aeaf284 100644 --- a/AudioMultiply_F32.h +++ b/AudioMultiply_F32.h @@ -1,5 +1,5 @@ /* - * AudioEffectsGain + * AudioMultiply * * Created: Patrick Radius, December 2016 * Purpose: Multiply two channels of audio data. Can be used for example as 'vca' or amplitude modulation. @@ -9,6 +9,8 @@ * * MIT License. use at your own risk. */ +#ifndef AUDIOMULTIPLYF32_H +#define AUDIOMULTIPLYF32_H #include #include @@ -22,3 +24,5 @@ class AudioMultiply_F32 : public AudioStream_F32 private: audio_block_f32_t *inputQueueArray_f32[2]; }; + +#endif