Skip to content
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
2 changes: 1 addition & 1 deletion src/audio/google/google_ctc_audio_processing.c
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ static int ctc_process(struct processing_module *mod,
return 0;
}

static struct module_interface google_ctc_audio_processing_interface = {
static const struct module_interface google_ctc_audio_processing_interface = {
.init = ctc_init,
.free = ctc_free,
.process_audio_stream = ctc_process,
Expand Down
2 changes: 1 addition & 1 deletion src/audio/google/google_rtc_audio_processing.c
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ static int mod_process(struct processing_module *mod, struct sof_source **source
return 0;
}

static struct module_interface google_rtc_audio_processing_interface = {
static const struct module_interface google_rtc_audio_processing_interface = {
.init = google_rtc_audio_processing_init,
.free = google_rtc_audio_processing_free,
.process = mod_process,
Expand Down