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 {
679
679
}
680
680
681
681
// / Provides the nubmer of bytes we can write
682
- virtual int availableForWrite () {
682
+ virtual int availableForWrite () override {
683
683
return p_out==nullptr ? 0 : p_out->availableForWrite ();
684
684
}
685
685
686
686
// / Provides the nubmer of bytes we can write
687
- virtual int available () {
687
+ virtual int available () override {
688
688
return p_in==nullptr ? 0 : p_in->available ();
689
689
}
690
690
691
691
// / Detines the Audio info - The bits_per_sample are critical to work properly!
692
- void setAudioInfo (AudioBaseInfo info){
692
+ void setAudioInfo (AudioBaseInfo info) override {
693
693
LOGD (LOG_METHOD);
694
694
this ->info = info;
695
695
max_value = NumberConverter::maxValue (info.bits_per_sample );
You can’t perform that action at this time.
0 commit comments