summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2018-08-01 16:54:34 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2018-08-01 17:04:12 +0200
commit857da27194ea621734be7df4c1d940992dbb26e9 (patch)
tree8698f4347b1a1ac0c1133533963b64f7eb041eaf /src
parent982aad68eedfcd70a19864c31255e70a34876db4 (diff)
Remove the last references to hardcoded 44k1Hz samplerate.
Diffstat (limited to 'src')
-rw-r--r--src/audiooutputengine.h2
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.