mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-03-13 05:33:55 -04:00
spa: add spa_audio_parse_position_n
Add a function that accepts the size of the position array when reading the audio positions. This makes it possible to decouple the position array size from SPA_AUDIO_MAX_CHANNELS. Also use SPA_N_ELEMENTS to pass the number of array elements to functions instead of a fixed constant. This makes it easier to change the array size later to a different constant without having to patch up all the places where the size is used.
This commit is contained in:
parent
9e7cae13df
commit
8bbca3b8f3
27 changed files with 84 additions and 63 deletions
|
|
@ -539,7 +539,7 @@ static void param_format_changed(struct impl *impl, const struct spa_pod *param,
|
|||
if (param != NULL) {
|
||||
if (spa_format_audio_raw_parse(param, &info) < 0 ||
|
||||
info.channels == 0 ||
|
||||
info.channels > SPA_AUDIO_MAX_CHANNELS)
|
||||
info.channels > SPA_N_ELEMENTS(info.position))
|
||||
return;
|
||||
|
||||
if ((impl->info.format != 0 && impl->info.format != info.format) ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue