We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89a5fc4 commit ad3d9f4Copy full SHA for ad3d9f4
src/AudioEffects/AudioEffects.h
@@ -50,7 +50,7 @@ class AudioEffects : public SoundGenerator<effect_t> {
50
/// Constructor which is assigning a Stream as input. The stream must consist of int16_t values
51
/// with the indicated number of channels
52
AudioEffects(Stream &input, int channels=2, float volume=1.0) {
53
- setInput(* (new GeneratorFromStream<effect_t>(input, channels, volume)));
+ setInput(* (new GeneratorT(input, channels, volume)));
54
owns_generator = true;
55
}
56
0 commit comments