diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-10-07 10:39:51 +0200 |
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-10-07 10:39:51 +0200 |
| commit | 9c2615425bb4f35a417eb04b1ceebfc77d8e2c8b (patch) | |
| tree | 6bc07553e7dcc56389d763f849f273bdf6d06681 /src/VLCInput.h | |
| parent | 68ee7799a4eeb4148cd4628113ebf9ea3f94a211 (diff) | |
| download | ODR-AudioEnc-9c2615425bb4f35a417eb04b1ceebfc77d8e2c8b.tar.gz ODR-AudioEnc-9c2615425bb4f35a417eb04b1ceebfc77d8e2c8b.tar.bz2 ODR-AudioEnc-9c2615425bb4f35a417eb04b1ceebfc77d8e2c8b.zip | |
Move fault_detected() into common input interface
Diffstat (limited to 'src/VLCInput.h')
| -rw-r--r-- | src/VLCInput.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VLCInput.h b/src/VLCInput.h index 789bc70..703641d 100644 --- a/src/VLCInput.h +++ b/src/VLCInput.h @@ -140,7 +140,7 @@ class VLCInput : public InputInterface int getChannels() { return m_channels; } - bool fault_detected() { return m_fault; }; + virtual bool fault_detected(void) const override { return m_fault; }; /*! Separator string used when artist/title are written */ |
