summaryrefslogtreecommitdiffstats
path: root/player/scripting.c
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2023-10-22 21:00:13 +0200
committerDudemanguy <random342@airmail.cc>2023-10-27 23:18:56 +0000
commit6bb3e05d49f8b579cc72bcd9c44c33f7aab5e53c (patch)
tree5c173c69d78aa05ea9a557bcdd396735e1c7762b /player/scripting.c
parentcb829879af8f2c93fd77c47f12c162d4ce580e30 (diff)
downloadmpv-6bb3e05d49f8b579cc72bcd9c44c33f7aab5e53c.tar.bz2
mpv-6bb3e05d49f8b579cc72bcd9c44c33f7aab5e53c.tar.xz
scripting: rename backend names for concise naming
Diffstat (limited to 'player/scripting.c')
-rw-r--r--player/scripting.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/player/scripting.c b/player/scripting.c
index 15f3533738..ff7841bad4 100644
--- a/player/scripting.c
+++ b/player/scripting.c
@@ -396,11 +396,10 @@ error: ;
}
const struct mp_scripting mp_scripting_cplugin = {
+ .name = "cplugin",
#if HAVE_WIN32
- .name = "DLL plugin",
.file_ext = "dll",
#else
- .name = "SO plugin",
.file_ext = "so",
#endif
.load = load_cplugin,
@@ -458,7 +457,7 @@ static int load_run(struct mp_script_args *args)
}
const struct mp_scripting mp_scripting_run = {
- .name = "spawned IPC process",
+ .name = "ipc",
.file_ext = "run",
.no_thread = true,
.load = load_run,