Skip to content

Commit 733a881

Browse files
committed
Audio: Phase Vocoder: Some fixup
WIP Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
1 parent 2496c3a commit 733a881

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/audio/phase_vocoder/phase_vocoder-ipc4.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ __cold int phase_vocoder_set_config(struct processing_module *mod, uint32_t para
3333
}
3434

3535
cd->enable = ctl->chanv[0].value;
36-
comp_info(dev, "enable = %d.", cd->enable);
36+
comp_info(dev, "enable = %d", cd->enable);
3737
return 0;
3838

3939
case SOF_IPC4_ENUM_CONTROL_PARAM_ID:

src/audio/phase_vocoder/phase_vocoder_setup.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ int phase_vocoder_setup(struct processing_module *mod, int sample_rate, int chan
8888
}
8989

9090
if (config->sample_frequency != sample_rate) {
91-
comp_err(dev, "Config sample_frequency does not match stream");
92-
return -EINVAL;
91+
comp_warn(dev, "Config sample_frequency does not match stream");
9392
}
9493

9594
state->sample_rate = sample_rate;

0 commit comments

Comments
 (0)