Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Libraries
PulseAudio-Qt
Commits
59107018
Commit
59107018
authored
Nov 09, 2021
by
Nicolas Fella
Browse files
Ignore streams from plasma-pa
parent
ee75fcec
Pipeline
#95875
passed with stage
in 34 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/context.cpp
View file @
59107018
...
...
@@ -119,7 +119,10 @@ static void source_output_cb(pa_context *context, const pa_source_output_info *i
return
;
// FIXME: This forces excluding these apps
if
(
const
char
*
app
=
pa_proplist_gets
(
info
->
proplist
,
PA_PROP_APPLICATION_ID
))
{
if
(
strcmp
(
app
,
"org.PulseAudio.pavucontrol"
)
==
0
||
strcmp
(
app
,
"org.gnome.VolumeControl"
)
==
0
||
strcmp
(
app
,
"org.kde.kmixd"
)
==
0
)
if
(
strcmp
(
app
,
"org.PulseAudio.pavucontrol"
)
==
0
//
||
strcmp
(
app
,
"org.gnome.VolumeControl"
)
==
0
//
||
strcmp
(
app
,
"org.kde.kmixd"
)
==
0
//
||
strcmp
(
app
,
"org.kde.plasma-pa"
)
==
0
)
//
return
;
}
Q_ASSERT
(
context
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment