Returns a list of all valid (user-selectable) sample rates. The device may accept sample rates not in this list, but it *must* accept sample rates in the list. */
| 92 | The device may accept sample rates not in this list, but it *must* accept sample rates in the list. |
| 93 | */ |
| 94 | virtual std::set<float> getSampleRates() { |
| 95 | return {}; |
| 96 | } |
| 97 | /** Returns the current sample rate. */ |
| 98 | virtual float getSampleRate() { |
| 99 | return 0; |
nothing calls this directly
no outgoing calls
no test coverage detected