1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-27 01:31:42 +00:00

Adds further exposition.

This commit is contained in:
Thomas Harte 2020-05-10 00:44:03 -04:00
parent 64c62c16fb
commit c41028cdc7

View File

@ -63,6 +63,10 @@ class SampleSource {
a certain proportion of the allocated volume range. This commonly happens
in sample sources that use a time-multiplexed sound output for example, if
one were to output only every other sample then it would return 0.5.
This is permitted to vary over time but there is no contract as to when it will be
used by a speaker. If it varies, it should do so very infrequently and only to
represent changes in hardware configuration.
*/
double get_average_output_peak() const { return 1.0; }
};