MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / formatAudioAttempt

Function formatAudioAttempt

src/core/AudioEngine.cpp:113–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111}
112
113QString formatAudioAttempt(int sampleRate,
114 int channelCount,
115 QAudioFormat::SampleFormat sampleFormat)
116{
117 return QStringLiteral("%1Hz %2ch %3")
118 .arg(sampleRate)
119 .arg(channelCount)
120 .arg(AudioSummaryLogger::sampleFormatName(sampleFormat));
121}
122
123qsizetype queuedAudioBytes(const std::deque<QByteArray>& packets)
124{

Callers 2

startRxStreamMethod · 0.85
startTxStreamMethod · 0.85

Calls 1

sampleFormatNameFunction · 0.70

Tested by

no test coverage detected