mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-15 06:59:58 -05:00
Add pa_sample_format_valid()
I think this makes the code a bit nicer to read and write. This also reduces the chances of off-by-one errors when checking the bounds of the sample format value.
This commit is contained in:
parent
643eb5bae2
commit
1cda717252
8 changed files with 30 additions and 45 deletions
|
|
@ -650,15 +650,13 @@ size_t pa_mix(
|
|||
}
|
||||
|
||||
pa_do_mix_func_t pa_get_mix_func(pa_sample_format_t f) {
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
return do_mix_table[f];
|
||||
}
|
||||
|
||||
void pa_set_mix_func(pa_sample_format_t f, pa_do_mix_func_t func) {
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
do_mix_table[f] = func;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -253,8 +253,8 @@ static pa_resample_method_t pa_resampler_fix_method(
|
|||
|
||||
/* Return true if a is a more precise sample format than b, else return false */
|
||||
static bool sample_format_more_precise(pa_sample_format_t a, pa_sample_format_t b) {
|
||||
pa_assert(a >= 0 && a < PA_SAMPLE_MAX);
|
||||
pa_assert(b >= 0 && b < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(a));
|
||||
pa_assert(pa_sample_format_valid(b));
|
||||
|
||||
switch (a) {
|
||||
case PA_SAMPLE_U8:
|
||||
|
|
@ -305,8 +305,8 @@ static pa_sample_format_t pa_resampler_choose_work_format(
|
|||
bool map_required) {
|
||||
pa_sample_format_t work_format;
|
||||
|
||||
pa_assert(a >= 0 && a < PA_SAMPLE_MAX);
|
||||
pa_assert(b >= 0 && b < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(a));
|
||||
pa_assert(pa_sample_format_valid(b));
|
||||
pa_assert(method >= 0);
|
||||
pa_assert(method < PA_RESAMPLER_MAX);
|
||||
|
||||
|
|
|
|||
|
|
@ -202,17 +202,13 @@ static pa_convert_func_t to_float32ne_table[] = {
|
|||
};
|
||||
|
||||
pa_convert_func_t pa_get_convert_to_float32ne_function(pa_sample_format_t f) {
|
||||
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
return to_float32ne_table[f];
|
||||
}
|
||||
|
||||
void pa_set_convert_to_float32ne_function(pa_sample_format_t f, pa_convert_func_t func) {
|
||||
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
to_float32ne_table[f] = func;
|
||||
}
|
||||
|
|
@ -234,17 +230,13 @@ static pa_convert_func_t from_float32ne_table[] = {
|
|||
};
|
||||
|
||||
pa_convert_func_t pa_get_convert_from_float32ne_function(pa_sample_format_t f) {
|
||||
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
return from_float32ne_table[f];
|
||||
}
|
||||
|
||||
void pa_set_convert_from_float32ne_function(pa_sample_format_t f, pa_convert_func_t func) {
|
||||
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
from_float32ne_table[f] = func;
|
||||
}
|
||||
|
|
@ -266,17 +258,13 @@ static pa_convert_func_t to_s16ne_table[] = {
|
|||
};
|
||||
|
||||
pa_convert_func_t pa_get_convert_to_s16ne_function(pa_sample_format_t f) {
|
||||
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
return to_s16ne_table[f];
|
||||
}
|
||||
|
||||
void pa_set_convert_to_s16ne_function(pa_sample_format_t f, pa_convert_func_t func) {
|
||||
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
to_s16ne_table[f] = func;
|
||||
}
|
||||
|
|
@ -298,17 +286,13 @@ static pa_convert_func_t from_s16ne_table[] = {
|
|||
};
|
||||
|
||||
pa_convert_func_t pa_get_convert_from_s16ne_function(pa_sample_format_t f) {
|
||||
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
return from_s16ne_table[f];
|
||||
}
|
||||
|
||||
void pa_set_convert_from_s16ne_function(pa_sample_format_t f, pa_convert_func_t func) {
|
||||
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
from_s16ne_table[f] = func;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -261,15 +261,13 @@ static pa_do_volume_func_t do_volume_table[] = {
|
|||
};
|
||||
|
||||
pa_do_volume_func_t pa_get_volume_func(pa_sample_format_t f) {
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
return do_volume_table[f];
|
||||
}
|
||||
|
||||
void pa_set_volume_func(pa_sample_format_t f, pa_do_volume_func_t func) {
|
||||
pa_assert(f >= 0);
|
||||
pa_assert(f < PA_SAMPLE_MAX);
|
||||
pa_assert(pa_sample_format_valid(f));
|
||||
|
||||
do_volume_table[f] = func;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue