mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-07-05 00:06:16 -04:00
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:
commit
6116b9da32
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue