diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-08-01 16:54:34 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-08-01 17:04:12 +0200 |
commit | 857da27194ea621734be7df4c1d940992dbb26e9 (patch) | |
tree | 8698f4347b1a1ac0c1133533963b64f7eb041eaf /src/audiooutputengine.h | |
parent | 982aad68eedfcd70a19864c31255e70a34876db4 (diff) |
Remove the last references to hardcoded 44k1Hz samplerate.
Diffstat (limited to 'src/audiooutputengine.h')
-rw-r--r-- | src/audiooutputengine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audiooutputengine.h b/src/audiooutputengine.h index 19f9f44..f69fd75 100644 --- a/src/audiooutputengine.h +++ b/src/audiooutputengine.h @@ -54,7 +54,7 @@ public: //! Overload this method to force engine to use different buffer size. virtual std::size_t getBufferSize() const { return 1024; } - virtual std::size_t getSamplerate() const { return 44100; } + virtual std::size_t getSamplerate() const = 0; virtual bool isFreewheeling() const = 0; //! Overload this method to get notification of latency changes. |