mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
Also emit port info the the merger monitor ports. Proxy params and buffers to the right monitor ports. fmtconvert does not always have dsp ports Increase resampler output buffer sizes so that we can up and downsample. Fix little off by one in native resampler. Fix passthrough in speex resampler.
83 lines
2.4 KiB
C
83 lines
2.4 KiB
C
/* Spa
|
|
*
|
|
* Copyright © 2018 Wim Taymans
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include <speex/speex_resampler.h>
|
|
|
|
static void impl_speex_free(struct resample *r)
|
|
{
|
|
if (r->data)
|
|
speex_resampler_destroy(r->data);
|
|
r->data = NULL;
|
|
}
|
|
|
|
static void impl_speex_update_rate(struct resample *r, double rate)
|
|
{
|
|
r->rate = rate;
|
|
speex_resampler_set_rate_frac(r->data,
|
|
r->i_rate / rate, r->o_rate, r->i_rate, r->o_rate);
|
|
}
|
|
|
|
static void impl_speex_process(struct resample *r,
|
|
const void *SPA_RESTRICT src[], uint32_t *in_len,
|
|
void * SPA_RESTRICT dst[], uint32_t *out_len)
|
|
{
|
|
uint32_t c, i, o;
|
|
|
|
if (r->i_rate == r->o_rate && r->rate == 1.0) {
|
|
o = i = SPA_MIN(*in_len, *out_len);
|
|
for (c = 0; c < r->channels; c++)
|
|
spa_memcpy(dst[c], src[c], o * sizeof(float));
|
|
}
|
|
else {
|
|
for (c = 0; c < r->channels; c++) {
|
|
i = *in_len;
|
|
o = *out_len;
|
|
speex_resampler_process_float(r->data, c, src[c], &i, dst[c], &o);
|
|
}
|
|
}
|
|
*in_len = i;
|
|
*out_len = o;
|
|
}
|
|
|
|
static void impl_speex_reset (struct resample *r)
|
|
{
|
|
}
|
|
|
|
static int impl_speex_init(struct resample *r)
|
|
{
|
|
int err;
|
|
|
|
r->rate = 1.0;
|
|
r->free = impl_speex_free;
|
|
r->update_rate = impl_speex_update_rate;
|
|
r->process = impl_speex_process;
|
|
r->reset = impl_speex_reset;
|
|
r->data = speex_resampler_init_frac(r->channels,
|
|
r->i_rate, r->o_rate, r->i_rate, r->o_rate,
|
|
SPEEX_RESAMPLER_QUALITY_DEFAULT, &err);
|
|
if (r->data == NULL)
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
|
}
|