-
Notifications
You must be signed in to change notification settings - Fork 349
Audio: DRC: Tune: DRC setup scripts to module directory #9188
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| function sof_drc_paths(enable) | ||
|
|
||
| % sof_drc_paths(enable) | ||
| % enable - set to 1 to enable needed search path | ||
| % set to 0 to disable the search paths | ||
| % | ||
|
|
||
| % SPDX-License-Identifier: BSD-3-Clause | ||
| % | ||
| % Copyright (c) 2024, Intel Corporation. All rights reserved. | ||
|
|
||
| common = '../../../../tools/tune/common'; | ||
| % After #9187 use this | ||
| %eq = '../../eq_iir/tune'; | ||
| % and remove this | ||
| eq = '../../../../tools/tune/eq'; | ||
| if enable | ||
| addpath(common); | ||
| addpath(eq); | ||
| else | ||
| rmpath(common); | ||
| rmpath(eq); | ||
| end | ||
| end | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is fine for the moment (short term), but in the long term we need a script that sets the Matlab/Octave environment and paths up (we have a source script for Zephyr today- so something similar). See https://docs.octave.org/v4.2.1/Startup-Files.html as these mechanism can be used |
||
Uh oh!
There was an error while loading. Please reload this page.