Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/audio/template_comp/template-generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static int template_comp_s16(const struct processing_module *mod,
}
#endif /* CONFIG_FORMAT_S16LE */

#if CONFIG_FORMAT_S32LE || CONFIG_FORMAT_S32LE
#if CONFIG_FORMAT_S32LE || CONFIG_FORMAT_S24LE
Copy link

Copilot AI Aug 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The original line had CONFIG_FORMAT_S32LE duplicated instead of CONFIG_FORMAT_S24LE. This fix correctly enables the S32/S24 processing function when either S32_LE or S24_LE formats are configured, resolving the build failure when only S24_LE is enabled.

Copilot uses AI. Check for mistakes.
/**
* template_comp_s32() - Process S32_LE or S24_4LE format.
* @mod: Pointer to module data.
Expand Down
Loading