Skip to content

Commit 5635d07

Browse files
committed
missing overrides
1 parent 8c965e4 commit 5635d07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/AudioTools/AudioStreams.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -679,17 +679,17 @@ class VolumeStream : public AudioStreamX {
679679
}
680680

681681
/// Provides the nubmer of bytes we can write
682-
virtual int availableForWrite() {
682+
virtual int availableForWrite() override {
683683
return p_out==nullptr? 0 : p_out->availableForWrite();
684684
}
685685

686686
/// Provides the nubmer of bytes we can write
687-
virtual int available() {
687+
virtual int available() override {
688688
return p_in==nullptr? 0 : p_in->available();
689689
}
690690

691691
/// Detines the Audio info - The bits_per_sample are critical to work properly!
692-
void setAudioInfo(AudioBaseInfo info){
692+
void setAudioInfo(AudioBaseInfo info) override {
693693
LOGD(LOG_METHOD);
694694
this->info = info;
695695
max_value = NumberConverter::maxValue(info.bits_per_sample);

0 commit comments

Comments
 (0)