Skip to content
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

Fix compilation errors / warnings #8547

Merged
merged 2 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/audio/drc/drc_hifi4.c
Original file line number Diff line number Diff line change
Expand Up @@ -577,8 +577,8 @@ static void drc_delay_input_sample_s16(struct drc_state *state,
drc_pre_delay_index_inc(&state->pre_delay_read_index, nfrm);
}

*x = x0;
*y = y0;
*x = (int16_t *)x0;
*y = (int16_t *)y0;
}

static void drc_s16_default(struct processing_module *mod,
Expand Down Expand Up @@ -715,8 +715,8 @@ static void drc_delay_input_sample_s32(struct drc_state *state,
drc_pre_delay_index_inc(&state->pre_delay_read_index, nfrm);
}

*x = x0;
*y = y0;
*x = (int32_t *)x0;
*y = (int32_t *)y0;
}
#endif

Expand Down
1 change: 1 addition & 0 deletions src/include/sof/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#if !defined(__ASSEMBLER__) && defined(__XTENSA__)

#include <ipc/trace.h>
#include <rtos/panic.h>
#define VERIFY_ALIGN

#endif
Expand Down
Loading