Skip to content

Commit ad3d9f4

Browse files
committed
AudioEffects - GeneratorFromStream
1 parent 89a5fc4 commit ad3d9f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AudioEffects/AudioEffects.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class AudioEffects : public SoundGenerator<effect_t> {
5050
/// Constructor which is assigning a Stream as input. The stream must consist of int16_t values
5151
/// with the indicated number of channels
5252
AudioEffects(Stream &input, int channels=2, float volume=1.0) {
53-
setInput(* (new GeneratorFromStream<effect_t>(input, channels, volume)));
53+
setInput(* (new GeneratorT(input, channels, volume)));
5454
owns_generator = true;
5555
}
5656

0 commit comments

Comments
 (0)