File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -209,10 +209,12 @@ class MetaDataFilterDecoder : public AudioDecoder {
209209
210210 void setOutput (AudioStream &out_stream) override {
211211 p_decoder->setOutput (out_stream);
212+ addNotifyAudioChange (out_stream);
212213 }
213214
214215 virtual void setOutput (AudioOutput &out_stream) override {
215216 p_decoder->setOutput (out_stream);
217+ addNotifyAudioChange (out_stream);
216218 }
217219
218220 // / Defines where the decoded result is written to
Original file line number Diff line number Diff line change @@ -311,7 +311,7 @@ class FadeStream : public ModifyingStream {
311311
312312 bool isFadeComplete () { return fade.isFadeComplete (); }
313313
314- // If can not provide any more samples we bring the last sample slowy back to 0
314+ // / If you can not provide any more samples we bring the last sample slowy back to 0
315315 void writeEnd (Print &print, int steps = 200 ) {
316316 fade_last.end (print, steps);
317317 }
You can’t perform that action at this time.
0 commit comments