| 19 | } |
| 20 | |
| 21 | int ModemDigital::checkSampleRate(long long sampleRate, int /* audioSampleRate */) { |
| 22 | if (sampleRate < MIN_BANDWIDTH) { |
| 23 | return MIN_BANDWIDTH; |
| 24 | } |
| 25 | return (int)sampleRate; |
| 26 | } |
| 27 | |
| 28 | ModemKit *ModemDigital::buildKit(long long sampleRate, int audioSampleRate) { |
| 29 | auto *dkit = new ModemKitDigital; |
nothing calls this directly
no outgoing calls
no test coverage detected