File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments