Merge branch 'fix-aec-comma-operator' into 'master'

Please replace the comma operator with the correct semicolon when setting...

See merge request pipewire/pipewire!2870
This commit is contained in:
lhhy 2026-06-22 09:45:59 +00:00
commit 6116b9da32

View file

@ -448,9 +448,9 @@ impl_init(const struct spa_handle_factory *factory,
SPA_TYPE_INTERFACE_AUDIO_AEC,
SPA_VERSION_AUDIO_AEC,
&impl_aec, impl);
impl->aec.name = "webrtc",
impl->aec.name = "webrtc";
impl->aec.info = NULL;
impl->aec.latency = "480/48000",
impl->aec.latency = "480/48000";
impl->log = static_cast<struct spa_log *>(spa_support_find(support, n_support, SPA_TYPE_INTERFACE_Log));
spa_log_topic_init(impl->log, &log_topic);