-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Audio: aria: move aria header to aria module folder
There are two headers for aria, below action is taken: 1. move header file from include path to module path. 2. combine two headers to one header file. Signed-off-by: Baofeng Tian <[email protected]>
- Loading branch information
Showing
5 changed files
with
10 additions
and
40 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 |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
// | ||
// Author: Adrian Bonislawski <[email protected]> | ||
|
||
#include <sof/audio/aria/aria.h> | ||
#include <sof/audio/buffer.h> | ||
#include <sof/audio/format.h> | ||
#include <sof/audio/pipeline.h> | ||
|
@@ -20,13 +19,13 @@ | |
#include <rtos/string.h> | ||
#include <sof/ut.h> | ||
#include <sof/trace/trace.h> | ||
#include <ipc4/aria.h> | ||
#include <ipc4/fw_reg.h> | ||
#include <ipc/dai.h> | ||
#include <user/trace.h> | ||
#include <errno.h> | ||
#include <stddef.h> | ||
#include <stdint.h> | ||
#include "aria.h" | ||
|
||
#define ARIA_SET_ATTENUATION 1 | ||
|
||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
*/ | ||
|
||
/** | ||
* \file audio/aria/aria.h | ||
* \file aria.h | ||
* \brief Aria component header file | ||
* \authors Adrian Bonislawski <[email protected]> | ||
*/ | ||
|
@@ -16,6 +16,7 @@ | |
|
||
#include <sof/audio/component_ext.h> | ||
#include <sof/audio/ipc-config.h> | ||
#include <sof/compiler_attributes.h> | ||
#include <rtos/bit.h> | ||
#include <sof/common.h> | ||
#include <sof/trace/trace.h> | ||
|
@@ -92,4 +93,9 @@ struct aria_data { | |
|
||
extern const uint8_t INDEX_TAB[]; | ||
|
||
struct ipc4_aria_module_cfg { | ||
struct ipc4_base_module_cfg base_cfg; | ||
uint32_t attenuation; | ||
} __packed __aligned(8); | ||
|
||
#endif /* __SOF_AUDIO_ARIA_H__ */ |
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
This file was deleted.
Oops, something went wrong.