Skip to content

Commit 1abeaa2

Browse files
Jyri Sarhakv2019i
authored andcommitted
Revert "module_adapter: dp: Decrease default heap size from 20k to 16k"
This reverts commit a32d983. It looks like this causes more trouble than it solves. 16k is not enough heap for 11025Hz to 48000Hz conversion. The inability to have two SRCs active at the same time is not as critical issue as failing some conversions completely. Signed-off-by: Jyri Sarha <jyri.sarha@linux.intel.com>
1 parent c51be00 commit 1abeaa2

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
@@ -62,7 +62,7 @@ static struct dp_heap_user *module_adapter_dp_heap_new(const struct comp_ipc_con
6262
{
6363
/* src-lite with 8 channels has been seen allocating 14k in one go */
6464
/* FIXME: the size will be derived from configuration */
65-
const size_t buf_size = 16 * 1024;
65+
const size_t buf_size = 20 * 1024;
6666

6767
/* Keep uncached to match the default SOF heap! */
6868
uint8_t *mod_heap_mem = rballoc_align(SOF_MEM_FLAG_USER | SOF_MEM_FLAG_COHERENT,

0 commit comments

Comments
 (0)