mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
audioconvert: increase buffer size
64 channels with the new format support needs more space. See #1620
This commit is contained in:
parent
1129e90c4f
commit
143f233be3
3 changed files with 3 additions and 3 deletions
|
|
@ -479,7 +479,7 @@ impl_node_port_enum_params(void *object, int seq,
|
|||
struct port *port, *other;
|
||||
struct spa_pod *param;
|
||||
struct spa_pod_builder b = { 0 };
|
||||
uint8_t buffer[1024];
|
||||
uint8_t buffer[4096];
|
||||
struct spa_result_node_params result;
|
||||
uint32_t count = 0;
|
||||
int res;
|
||||
|
|
|
|||
|
|
@ -739,7 +739,7 @@ impl_node_port_enum_params(void *object, int seq,
|
|||
struct port *port;
|
||||
struct spa_pod *param;
|
||||
struct spa_pod_builder b = { 0 };
|
||||
uint8_t buffer[1024];
|
||||
uint8_t buffer[2048];
|
||||
struct spa_result_node_params result;
|
||||
uint32_t count = 0;
|
||||
int res;
|
||||
|
|
|
|||
|
|
@ -493,7 +493,7 @@ impl_node_port_enum_params(void *object, int seq,
|
|||
struct port *port;
|
||||
struct spa_pod *param;
|
||||
struct spa_pod_builder b = { 0 };
|
||||
uint8_t buffer[1024];
|
||||
uint8_t buffer[2048];
|
||||
struct spa_result_node_params result;
|
||||
uint32_t count = 0;
|
||||
int res;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue