sndfile-util: fix format for 24bit depth wav files

PA_SAMPLE_24NE generated in pa_sndfile_read_sample_spec is not
handled in pa_sndfile_readf and writef function. paplay/parecord
used to get aborted for 24bit depth wav files
This commit is contained in:
Kiran Krishnappa 2013-10-09 23:30:09 -07:00 committed by Tanu Kaskinen
parent f81e3e1d78
commit ab25436486

View file

@ -384,6 +384,7 @@ pa_sndfile_readf_t pa_sndfile_readf_function(const pa_sample_spec *ss) {
case PA_SAMPLE_ULAW:
case PA_SAMPLE_ALAW:
case PA_SAMPLE_S24NE:
return NULL;
default:
@ -407,6 +408,7 @@ pa_sndfile_writef_t pa_sndfile_writef_function(const pa_sample_spec *ss) {
case PA_SAMPLE_ULAW:
case PA_SAMPLE_ALAW:
case PA_SAMPLE_S24NE:
return NULL;
default: