summaryrefslogtreecommitdiffstats
path: root/audio/out
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2023-02-03 04:09:51 +0000
committerPhilip Langdale <github.philipl@overt.org>2023-02-03 09:18:37 -0800
commitc2c36c0d57a531bba192719afa55a7e289c66eff (patch)
treeba88697a5914e05d8d28a6890f75c646db385920 /audio/out
parent469f7af2105e0512c809e7380ff2d29d266dd75d (diff)
downloadmpv-c2c36c0d57a531bba192719afa55a7e289c66eff.tar.bz2
mpv-c2c36c0d57a531bba192719afa55a7e289c66eff.tar.xz
ao_pipewire: reduce message level of unsuccessful connection
As ao_pipewire is probed first if a user does not have PipeWire running they will see a scary warning message even if another AO afterwards is probed fine. Tone down the error message so as not to confuse users.
Diffstat (limited to 'audio/out')
-rw-r--r--audio/out/ao_pipewire.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/out/ao_pipewire.c b/audio/out/ao_pipewire.c
index 3ef77e9481..0aa196c25f 100644
--- a/audio/out/ao_pipewire.c
+++ b/audio/out/ao_pipewire.c
@@ -461,8 +461,8 @@ static int pipewire_init_boilerplate(struct ao *ao)
pw_properties_new(PW_KEY_REMOTE_NAME, p->options.remote, NULL),
0);
if (!p->core) {
- MP_WARN(ao, "Could not connect to context '%s': %s\n",
- p->options.remote, strerror(errno));
+ MP_VERBOSE(ao, "Could not connect to context '%s': %s\n",
+ p->options.remote, strerror(errno));
pw_context_destroy(context);
goto error;
}