Skip to content

Commit 9deb6f6

Browse files
committed
MetaDataFilterDecoder: add missing notifications
1 parent c91d75e commit 9deb6f6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/AudioTools/CoreAudio/AudioMetaData/MetaDataFilter.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

src/AudioTools/CoreAudio/Fade.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)