mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
add support for 24bit packed samples
This commit is contained in:
parent
9955398fda
commit
6dc76d1158
15 changed files with 370 additions and 32 deletions
|
|
@ -257,8 +257,10 @@ pa_resampler* pa_resampler_new(
|
|||
|
||||
if (a->format == PA_SAMPLE_S32NE || a->format == PA_SAMPLE_S32RE ||
|
||||
a->format == PA_SAMPLE_FLOAT32NE || a->format == PA_SAMPLE_FLOAT32RE ||
|
||||
a->format == PA_SAMPLE_S24NE || a->format == PA_SAMPLE_S24RE ||
|
||||
b->format == PA_SAMPLE_S32NE || b->format == PA_SAMPLE_S32RE ||
|
||||
b->format == PA_SAMPLE_FLOAT32NE || b->format == PA_SAMPLE_FLOAT32RE)
|
||||
b->format == PA_SAMPLE_FLOAT32NE || b->format == PA_SAMPLE_FLOAT32RE ||
|
||||
b->format == PA_SAMPLE_S24NE || b->format == PA_SAMPLE_S24RE)
|
||||
r->work_format = PA_SAMPLE_FLOAT32NE;
|
||||
else
|
||||
r->work_format = PA_SAMPLE_S16NE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue