summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2024-02-25 20:42:36 -0600
committersfan5 <sfan5@live.de>2024-02-26 09:35:58 +0100
commit63870ec22503f8366e0efe2faf6adcd3cbb464de (patch)
treef678035ac426908d294e458c1c526e1b66a59d51 /player
parent4f305e022f81f6e9e04d0df74035ce1a6f4f2200 (diff)
downloadmpv-63870ec22503f8366e0efe2faf6adcd3cbb464de.tar.bz2
mpv-63870ec22503f8366e0efe2faf6adcd3cbb464de.tar.xz
player/main: don't set the main thread name
98a27b3cd1e6af743af67699318df1946ce5bf8f changed this to mpv but that's kind of pointless since the binary is already named mpv so that will be the default thread name. Evidently, people rename/symlink the binary to something else so might as well make them happier. Fixes #13469.
Diffstat (limited to 'player')
-rw-r--r--player/main.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/player/main.c b/player/main.c
index 27cf9b4449..25c2ff087c 100644
--- a/player/main.c
+++ b/player/main.c
@@ -419,7 +419,6 @@ int mp_initialize(struct MPContext *mpctx, char **options)
int mpv_main(int argc, char *argv[])
{
- mp_thread_set_name("mpv");
struct MPContext *mpctx = mp_create();
if (!mpctx)
return 1;