| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #pragma once 2 : 3 : #include <string> 4 : 5 : namespace Amplitron { 6 : 7 6 : struct AudioDeviceInfo { 8 : int index = -1; 9 : std::string name; 10 : int max_input_channels = 0; 11 : int max_output_channels = 0; 12 : double default_sample_rate = 0.0; 13 : bool is_usb_device = false; 14 : }; 15 : 16 : } // namespace Amplitron |
| Generated by: LCOV version 2.0-1 |