-
Notifications
You must be signed in to change notification settings - Fork 476
Open
Description
There are a few problems with the current supported_formats method:
- Many devices support massive numbers of supported formats and it is impractical to try and iterate over them all.
- The alsa and wasapi backends are only able to provide
supported_formatsby querying the device with arbitrary formats. SupportedFormatonly supports "range"s of sample rates. Perhaps a way of querying whether or notFormats are supported is more useful? Perhaps thesupported_{input/output}_formatsmethods could be changed toknown_supported_input/output_formatsto clarify that it only returns a subset of all supported stream formats?
KillyMXI, MOZGIII and Wandalen