diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-08-01 18:53:09 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-08-01 18:53:09 -0400 |
commit | 555749ef5dde558f745f0dc6d00a168d3b3e9d58 (patch) | |
tree | eba6929696b04e4d4fb67271f9dee78bfa6ff2e1 /source/sclock.cpp | |
parent | 123cc4c756cc8a22f66351ab65595c5a20e53e27 (diff) |
8x oversample; other fixes
Diffstat (limited to 'source/sclock.cpp')
-rw-r--r-- | source/sclock.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/sclock.cpp b/source/sclock.cpp index 317b995..6660f95 100644 --- a/source/sclock.cpp +++ b/source/sclock.cpp @@ -35,7 +35,12 @@ const std::array<unsigned int, 6> SClock::m_rate_divs = {{ /* 48k */ 100, /* 96k */ 50 #else - 4500, 2250, 1800, 1125, 750, 375 + /* 8k */ 4500, + /* 16k */ 2250, + /* 20k */ 1800, + /* 32k */ 1125, + /* 48k */ 750, + /* 96k */ 375 #endif }}; |