audio: eq_fir: move eq fir header to its own directory

This is part of eq_fir code reorganize, move headers to
its own directory.

Signed-off-by: Baofeng Tian <baofeng.tian@intel.com>
This commit is contained in:
Baofeng Tian 2023-11-03 14:10:13 +08:00 committed by Kai Vehmanen
parent 2ab6fe528d
commit df00e71416
6 changed files with 9 additions and 5 deletions

View File

@ -6,7 +6,6 @@
// Liam Girdwood <liam.r.girdwood@linux.intel.com>
// Keyon Jie <yang.jie@linux.intel.com>
#include <sof/audio/eq_fir/eq_fir.h>
#include <sof/audio/buffer.h>
#include <sof/audio/component.h>
#include <sof/audio/data_blob.h>
@ -37,6 +36,8 @@
#include <stddef.h>
#include <stdint.h>
#include "eq_fir.h"
LOG_MODULE_REGISTER(eq_fir, CONFIG_SOF_LOG_LEVEL);
/* 43a90ce7-f3a5-41df-ac06-ba98651ae6a3 */

View File

@ -11,12 +11,13 @@
#if FIR_GENERIC
#include <sof/audio/module_adapter/module/generic.h>
#include <sof/audio/eq_fir/eq_fir.h>
#include <sof/math/fir_generic.h>
#include <errno.h>
#include <stddef.h>
#include <stdint.h>
#include "eq_fir.h"
LOG_MODULE_DECLARE(eq_fir, CONFIG_SOF_LOG_LEVEL);
#if CONFIG_FORMAT_S16LE

View File

@ -9,7 +9,6 @@
#if FIR_HIFIEP
#include <sof/audio/module_adapter/module/generic.h>
#include <sof/audio/eq_fir/eq_fir.h>
#include <sof/audio/buffer.h>
#include <sof/audio/format.h>
#include <sof/math/fir_hifi2ep.h>
@ -19,6 +18,8 @@
#include <stddef.h>
#include <stdint.h>
#include "eq_fir.h"
LOG_MODULE_DECLARE(eq_fir, CONFIG_SOF_LOG_LEVEL);
#if CONFIG_FORMAT_S32LE

View File

@ -9,7 +9,6 @@
#if FIR_HIFI3
#include <sof/audio/module_adapter/module/generic.h>
#include <sof/audio/eq_fir/eq_fir.h>
#include <sof/math/fir_hifi3.h>
#include <user/fir.h>
#include <xtensa/config/defs.h>
@ -18,6 +17,8 @@
#include <stddef.h>
#include <stdint.h>
#include "eq_fir.h"
LOG_MODULE_DECLARE(eq_fir, CONFIG_SOF_LOG_LEVEL);
#if CONFIG_FORMAT_S32LE

View File

@ -9,7 +9,7 @@
#include <cmocka.h>
#include <kernel/header.h>
#include <sof/audio/component_ext.h>
#include <sof/audio/eq_fir/eq_fir.h>
#include <eq_fir/eq_fir.h>
#include <sof/audio/module_adapter/module/generic.h>
#include "../../util.h"