Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/audio/module_adapter/module_adapter.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static struct vregion *module_adapter_dp_heap_new(const struct comp_ipc_config *
* A 1-to-1 replacement of the original heap implementation would be to
* have "lifetime size" equal to 0. But (1) this is invalid for
* vregion_create() and (2) we gradually move objects, that are simple
* to move to the lifetime buffer. Make it 1k for the beginning.
* to move to the lifetime buffer. Make it 4k for the beginning.
*/
return vregion_create(4096, buf_size - 4096);
Comment thread
lyakh marked this conversation as resolved.
}
Expand Down
1 change: 1 addition & 0 deletions src/include/sof/audio/audio_buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ struct audio_buffer_ops {
const uint32_t frame_align_req);
};

struct mod_alloc_ctx;
/* base class for all buffers, all buffers must inherit from it */
struct sof_audio_buffer {
CORE_CHECK_STRUCT_FIELD;
Expand Down
Loading