mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-04-12 08:21:09 -04:00
json: add helper function to parse channel positions
Use the helper instead of duplicating the same code. Also add some helpers to parse a json array of uint32_t Move some functions to convert between type name and id.
This commit is contained in:
parent
911a601b95
commit
e2991f6398
34 changed files with 256 additions and 791 deletions
|
|
@ -37,10 +37,11 @@ static int avb_set_param(struct state *state, const char *k, const char *s)
|
|||
state->default_rate = atoi(s);
|
||||
fmt_change++;
|
||||
} else if (spa_streq(k, SPA_KEY_AUDIO_FORMAT)) {
|
||||
state->default_format = spa_avb_format_from_name(s, strlen(s));
|
||||
state->default_format = spa_type_audio_format_from_short_name(s);
|
||||
fmt_change++;
|
||||
} else if (spa_streq(k, SPA_KEY_AUDIO_POSITION)) {
|
||||
spa_avb_parse_position(&state->default_pos, s, strlen(s));
|
||||
spa_audio_parse_position(s, strlen(s), state->default_pos.pos,
|
||||
&state->default_pos.channels);
|
||||
fmt_change++;
|
||||
} else if (spa_streq(k, SPA_KEY_AUDIO_ALLOWED_RATES)) {
|
||||
state->n_allowed_rates = spa_avb_parse_rates(state->allowed_rates,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue