Return the default audio sample rate (from the system)
| 64 | |
| 65 | // Return the default audio sample rate (from the system) |
| 66 | double QtPlayer::GetDefaultSampleRate() { |
| 67 | if (reader && threads_started) { |
| 68 | return p->audioPlayback->getDefaultSampleRate(); |
| 69 | } else { |
| 70 | return 0; |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | /// Get vector of audio device names & types |
| 75 | AudioDeviceList QtPlayer::GetAudioDeviceNames() { |
nothing calls this directly
no test coverage detected