Is your feature request related to a problem? Please describe.
Attempting to use an ALSA plugin (an equalizer) that doesn't support any sample format other than floating point little endian, at least that's my interpretation of this snapclient log snippet after skimming the source.
Describe the solution you'd like
Add support for floating point ALSA PCM sample types SND_PCM_FORMAT_FLOAT_LE, SND_PCM_FORMAT_FLOAT_BE, SND_PCM_FORMAT_FLOAT64_LE, and SND_PCM_FORMAT_FLOAT64_BE. Enum is here in the ALSA docs.
Describe alternatives you've considered
Alternate solution is attempt to get support for ALSA integer types into alsaequal, but the project seems like it hasn't been touched in a while and it seems like a decent goal (in my possibly naive opinion) for snapclient to be highly compatible.
Is your feature request related to a problem? Please describe. Attempting to use an ALSA plugin (an equalizer) that doesn't support any sample format other than floating point little endian, at least that's my interpretation of this
snapclient
log snippet after skimming the source.Describe the solution you'd like Add support for floating point ALSA PCM sample types
SND_PCM_FORMAT_FLOAT_LE
,SND_PCM_FORMAT_FLOAT_BE
,SND_PCM_FORMAT_FLOAT64_LE
, andSND_PCM_FORMAT_FLOAT64_BE
. Enum is here in the ALSA docs.Describe alternatives you've considered Alternate solution is attempt to get support for ALSA integer types into
alsaequal
, but the project seems like it hasn't been touched in a while and it seems like a decent goal (in my possibly naive opinion) forsnapclient
to be highly compatible.Additional context I am willing to work on this!