mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-06-29 13:14:14 -04:00
Please replace the comma operator with the correct semicolon when setting aec.name and aec.latency. This will help avoid syntax errors and improve readability.
Signed-off-by: liujiahe <liujiahe@uniontech.com>
This commit is contained in:
parent
db569ab566
commit
51ea8aab2f
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