-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Audio: up_down_mixer: move up_down_mixer header files to module folder
This is a clean up, purpose is de-cluster headers, toml files, Readme.md etc per module basis, since today everything is scattered in current code base. Signed-off-by: Baofeng Tian <[email protected]>
- Loading branch information
Showing
5 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,6 @@ | |
// Author: Bartosz Kokoszko <[email protected]> | ||
// Author: Adrian Bonislawski <[email protected]> | ||
|
||
#include <sof/audio/coefficients/up_down_mixer/up_down_mixer.h> | ||
#include <sof/audio/up_down_mixer/up_down_mixer.h> | ||
#include <sof/audio/buffer.h> | ||
#include <sof/audio/format.h> | ||
#include <sof/audio/module_adapter/module/generic.h> | ||
|
@@ -28,6 +26,9 @@ | |
#include <stddef.h> | ||
#include <stdint.h> | ||
|
||
#include "up_down_mixer_coef.h" | ||
#include "up_down_mixer.h" | ||
|
||
LOG_MODULE_REGISTER(up_down_mixer, CONFIG_SOF_LOG_LEVEL); | ||
|
||
/* these ids aligns windows driver requirement to support windows driver */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
// Author: Bartosz Kokoszko <[email protected]> | ||
// Author: Adrian Bonislawski <[email protected]> | ||
|
||
#include <ipc4/up_down_mixer.h> | ||
#include "up_down_mixer_ipc4.h" | ||
#include <stdint.h> | ||
|
||
#if CONFIG_COMP_UP_DOWN_MIXER | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
// | ||
// Author: Bartosz Kokoszko <[email protected]> | ||
|
||
#include <sof/audio/up_down_mixer/up_down_mixer.h> | ||
#include "up_down_mixer.h" | ||
|
||
#if defined(__XCC__) && XCHAL_HAVE_HIFI3 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters