-
Notifications
You must be signed in to change notification settings - Fork 349
audio: module_adapter: Set the pipeline pointer during init #10288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR centralizes pipeline pointer initialization by moving it from copier-specific code to the general module adapter initialization. This ensures all modules receive proper pipeline configuration during initialization.
- Moved pipeline pointer and period setup from copier init to module_adapter_new_ext
- Added LL module period configuration to match pipeline period
- Removed redundant pipeline setup code from copier module
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/audio/module_adapter/module_adapter.c | Added centralized pipeline pointer and period initialization for all modules |
| src/audio/copier/copier.c | Removed module-specific pipeline initialization code that is now handled centrally |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
c18790b to
99f57e8
Compare
d12dd3d to
964b4cf
Compare
jsarha
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The real branch is Ok now and I have tested it. For some reason the web interace is not updated accordingly. But I'll approve anyway. Who ever merges this, please make sure the "if (ipc_pipe)" condition makes sense.
216065e to
debddf4
Compare
|
SOFCI TEST |
Set the pipeline pointer during init for all modules and remove the code from copier init. Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
debddf4 to
3e59d1e
Compare
Set the pipeline pointer during init for all modules and remove the code from copier init. Also set the pipeline period for all LL modules during init.