mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
audioconvert: Increase param length limit to 4096
Parameter values read into a 512 byte long buffer, which is insufficient for medium to long filter-graph parameters. Increase the buffer to 4096 bytes to give some wiggle-room.
This commit is contained in:
parent
35591922ce
commit
a0be431c7f
1 changed files with 1 additions and 1 deletions
|
|
@ -1214,7 +1214,7 @@ static int parse_prop_params(struct impl *this, struct spa_pod *params)
|
|||
while (true) {
|
||||
const char *name;
|
||||
struct spa_pod *pod;
|
||||
char value[512];
|
||||
char value[4096];
|
||||
|
||||
if (spa_pod_parser_get_string(&prs, &name) < 0)
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue