Skip to content

Commit 9a07a8a

Browse files
committed
audio: module: increase heap size
The check-src-play.sh test fails on PTL nocodec with 20k module heap and passes with 24k. Increase it to 28k to add a bit of security until we switch to using module configuration. Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
1 parent 8d75e2c commit 9a07a8a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/audio/module_adapter/module_adapter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ static struct vregion *module_adapter_dp_heap_new(const struct comp_ipc_config *
6363
{
6464
/* src-lite with 8 channels has been seen allocating 14k in one go */
6565
/* FIXME: the size will be derived from configuration */
66-
const size_t buf_size = 20 * 1024;
66+
const size_t buf_size = 28 * 1024;
6767

6868
/*
6969
* A 1-to-1 replacement of the original heap implementation would be to

0 commit comments

Comments
 (0)