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:
Kenny Levinsen 2025-04-11 21:42:23 +02:00 committed by Wim Taymans
parent 35591922ce
commit a0be431c7f

View file

@ -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;