* @brief Returns a list of available input audio devices. */
| 733 | * @brief Returns a list of available input audio devices. |
| 734 | */ |
| 735 | QStringList IO::Drivers::Audio::inputDeviceList() const |
| 736 | { |
| 737 | QStringList list; |
| 738 | |
| 739 | for (const auto& device : m_inputDevices) |
| 740 | list.append(QString::fromUtf8(device.name)); |
| 741 | |
| 742 | return list; |
| 743 | } |
| 744 | |
| 745 | /** |
| 746 | * @brief Returns the list of supported sample formats for the selected input device. |
no test coverage detected