| 26 | ///////////////////////////////////////////// |
| 27 | |
| 28 | struct AudioDeviceInfo |
| 29 | { |
| 30 | int32_t index{-1}; |
| 31 | std::string identifier; |
| 32 | uint32_t num_output_channels{0}; |
| 33 | uint32_t num_input_channels{0}; |
| 34 | std::vector<float> supported_samplerates; |
| 35 | float nominal_samplerate{0}; |
| 36 | bool is_default_output{false}; |
| 37 | bool is_default_input{false}; |
| 38 | }; |
| 39 | |
| 40 | // Input and Output |
| 41 | struct AudioStreamConfig |
nothing calls this directly
no outgoing calls
no test coverage detected