| 64 | } |
| 65 | |
| 66 | QString idFingerprint(const QByteArray& id) |
| 67 | { |
| 68 | if (id.isEmpty()) |
| 69 | return {}; |
| 70 | |
| 71 | return QString::fromLatin1( |
| 72 | QCryptographicHash::hash(id, QCryptographicHash::Sha256).toHex().left(12)); |
| 73 | } |
| 74 | |
| 75 | QJsonObject deviceToJson(const QAudioDevice& device, |
| 76 | const QAudioDevice& selected, |
no test coverage detected