PulseAudio: How to determine native sample rates and bit depths, supported by hardware

audiohardwarepulseaudio

I want to set maximum sampling rate and bit depth supported by my hardware (Intel HDA).

How to know the values?

I need this information because I want to avoid unnecessary resampling.

Best Answer

According to Wikipedia article, Intel HDA has sample rates of 6–192 kHz and sample resolutions of 8–32 bits, though manufacturers may have not implemented the full specification, so it is good idea to test using

pactl list sinks | grep -Ei 'name:|sample specification:'

after changing the configuration.

Related Question