mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
simplify code a bit by using pa_sample_size_of_format()
This commit is contained in:
parent
a6fe991716
commit
d6dd907cc8
1 changed files with 1 additions and 11 deletions
|
|
@ -156,16 +156,6 @@ static int (* const init_table[])(pa_resampler*r) = {
|
|||
[PA_RESAMPLER_PEAKS] = peaks_init,
|
||||
};
|
||||
|
||||
static inline size_t sample_size(pa_sample_format_t f) {
|
||||
pa_sample_spec ss = {
|
||||
.format = f,
|
||||
.rate = 0,
|
||||
.channels = 1
|
||||
};
|
||||
|
||||
return pa_sample_size(&ss);
|
||||
}
|
||||
|
||||
pa_resampler* pa_resampler_new(
|
||||
pa_mempool *pool,
|
||||
const pa_sample_spec *a,
|
||||
|
|
@ -275,7 +265,7 @@ pa_resampler* pa_resampler_new(
|
|||
|
||||
pa_log_info("Using %s as working format.", pa_sample_format_to_string(r->work_format));
|
||||
|
||||
r->w_sz = sample_size(r->work_format);
|
||||
r->w_sz = pa_sample_size_of_format(r->work_format);
|
||||
|
||||
if (r->i_ss.format == r->work_format)
|
||||
r->to_work_format_func = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue