2010-01-30 23:24:23 +00:00
|
|
|
/*
|
2015-04-13 07:36:54 +00:00
|
|
|
* This file is part of mpv.
|
2010-01-30 23:24:23 +00:00
|
|
|
*
|
options: change license of most files to LGPL (except options.c/.h)
All authors of the current code have agreed (as far as this commit
requires).
options.c/options.h will take more effort, because it contains all the
option declarations, and thus is touched extremely often.
m_option.c is technically still GPL, because of commit 2c82d5a1d85378dd0
(michael has agreed to LGPL, but only once the core of mpv is LGPL).
The geometry parsing code in m_option.c was originally by someone who
could not be reached. However, it was heavily rewritten anyway, and only
the syntax remains (i.e. not copyright-relevant).
parse_commandline.c contains a change by "adland" (commit 1d0ac71ae8ba),
who could not be reached - this this specific part is GPL only.
Fortunately, it matters only for DVD (and even then is more like a hack,
but whatever).
There are some other relevant changes, but they have all been reverted,
moved somewhere else, deleted, or replaced.
2017-06-12 18:55:17 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2010-01-30 23:24:23 +00:00
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* mpv is distributed in the hope that it will be useful,
|
2010-01-30 23:24:23 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
options: change license of most files to LGPL (except options.c/.h)
All authors of the current code have agreed (as far as this commit
requires).
options.c/options.h will take more effort, because it contains all the
option declarations, and thus is touched extremely often.
m_option.c is technically still GPL, because of commit 2c82d5a1d85378dd0
(michael has agreed to LGPL, but only once the core of mpv is LGPL).
The geometry parsing code in m_option.c was originally by someone who
could not be reached. However, it was heavily rewritten anyway, and only
the syntax remains (i.e. not copyright-relevant).
parse_commandline.c contains a change by "adland" (commit 1d0ac71ae8ba),
who could not be reached - this this specific part is GPL only.
Fortunately, it matters only for DVD (and even then is more like a hack,
but whatever).
There are some other relevant changes, but they have all been reverted,
moved somewhere else, deleted, or replaced.
2017-06-12 18:55:17 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2010-01-30 23:24:23 +00:00
|
|
|
*
|
options: change license of most files to LGPL (except options.c/.h)
All authors of the current code have agreed (as far as this commit
requires).
options.c/options.h will take more effort, because it contains all the
option declarations, and thus is touched extremely often.
m_option.c is technically still GPL, because of commit 2c82d5a1d85378dd0
(michael has agreed to LGPL, but only once the core of mpv is LGPL).
The geometry parsing code in m_option.c was originally by someone who
could not be reached. However, it was heavily rewritten anyway, and only
the syntax remains (i.e. not copyright-relevant).
parse_commandline.c contains a change by "adland" (commit 1d0ac71ae8ba),
who could not be reached - this this specific part is GPL only.
Fortunately, it matters only for DVD (and even then is more like a hack,
but whatever).
There are some other relevant changes, but they have all been reverted,
moved somewhere else, deleted, or replaced.
2017-06-12 18:55:17 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2010-01-30 23:24:23 +00:00
|
|
|
*/
|
2006-04-24 19:20:04 +00:00
|
|
|
|
2023-10-19 14:26:26 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
2020-03-13 15:49:39 +00:00
|
|
|
#include <float.h>
|
2023-10-19 14:26:26 +00:00
|
|
|
#include <stdatomic.h>
|
|
|
|
#include <stdbool.h>
|
2002-11-12 01:56:42 +00:00
|
|
|
#include <stdio.h>
|
2023-10-19 14:26:26 +00:00
|
|
|
#include <stdlib.h>
|
2002-11-12 01:56:42 +00:00
|
|
|
#include <string.h>
|
2014-07-10 06:28:03 +00:00
|
|
|
#include <strings.h>
|
2011-07-27 17:59:44 +00:00
|
|
|
|
2014-02-24 19:39:51 +00:00
|
|
|
#include "libmpv/client.h"
|
|
|
|
|
2016-11-25 20:00:39 +00:00
|
|
|
#include "common/common.h"
|
2016-09-02 13:45:22 +00:00
|
|
|
#include "common/global.h"
|
2015-11-04 14:44:37 +00:00
|
|
|
#include "common/msg_control.h"
|
2023-10-21 02:55:41 +00:00
|
|
|
#include "common/msg.h"
|
|
|
|
#include "m_config_frontend.h"
|
|
|
|
#include "m_config.h"
|
options: add a thread-safe way to notify option updates
So far, we had a thread-safe way to read options, but no option update
notification mechanism. Everything was funneled though the main thread's
central mp_option_change_callback() function. For example, if the
panscan options were changed, the function called vo_control() with
VOCTRL_SET_PANSCAN to manually notify the VO thread of updates. This
worked, but's pretty inconvenient. Most of these problems come from the
fact that MPlayer was written as a single-threaded program.
This commit works towards a more flexible mechanism. It adds an update
callback to m_config_cache (the thing that is already used for
thread-safe access of global options).
This alone would still be rather inconvenient, at least in context of
VOs. Add another mechanism on top of it that uses mp_dispatch_queue, and
takes care of some annoying synchronization issues. We extend
mp_dispatch_queue itself to make this easier and slightly more
efficient.
As a first application, use this to reimplement certain VO scaling and
renderer options. The update_opts() function translates these to the
"old" VOCTRLs, though.
An annoyingly subtle issue is that m_config_cache's destructor now
releases pending notifications, and must be released before the
associated dispatch queue. Otherwise, it could happen that option
updates during e.g. VO destruction queue or run stale entries, which is
not expected.
Rather untested. The singly-linked list code in dispatch.c is probably
buggy, and I bet some aspects about synchronization are not entirely
sane.
2017-08-22 13:50:33 +00:00
|
|
|
#include "misc/dispatch.h"
|
2016-08-28 17:42:03 +00:00
|
|
|
#include "misc/node.h"
|
2023-10-21 02:55:41 +00:00
|
|
|
#include "options/m_option.h"
|
|
|
|
#include "osdep/threads.h"
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2016-09-10 14:29:24 +00:00
|
|
|
extern const char mp_help_text[];
|
|
|
|
|
2013-07-31 18:43:31 +00:00
|
|
|
// Profiles allow to predefine some sets of options that can then
|
|
|
|
// be applied later on with the internal -profile option.
|
2006-01-24 11:16:13 +00:00
|
|
|
#define MAX_PROFILE_DEPTH 20
|
2015-04-03 22:02:34 +00:00
|
|
|
// Maximal include depth.
|
|
|
|
#define MAX_RECURSION_DEPTH 8
|
2006-01-24 11:16:13 +00:00
|
|
|
|
2013-07-31 18:43:31 +00:00
|
|
|
struct m_profile {
|
|
|
|
struct m_profile *next;
|
|
|
|
char *name;
|
|
|
|
char *desc;
|
2020-08-05 20:37:47 +00:00
|
|
|
char *cond;
|
2020-08-07 17:39:46 +00:00
|
|
|
int restore_mode;
|
2013-07-31 18:43:31 +00:00
|
|
|
int num_opts;
|
|
|
|
// Option/value pair array.
|
2020-08-05 20:37:47 +00:00
|
|
|
// name,value = opts[n*2+0],opts[n*2+1]
|
2013-07-31 18:43:31 +00:00
|
|
|
char **opts;
|
2020-08-07 17:39:46 +00:00
|
|
|
// For profile restoring.
|
|
|
|
struct m_opt_backup *backups;
|
2013-07-31 18:43:31 +00:00
|
|
|
};
|
|
|
|
|
2013-07-31 18:44:16 +00:00
|
|
|
// In the file local case, this contains the old global value.
|
2020-08-07 17:39:46 +00:00
|
|
|
// It's also used for profile restoring.
|
2013-07-31 18:44:16 +00:00
|
|
|
struct m_opt_backup {
|
|
|
|
struct m_opt_backup *next;
|
|
|
|
struct m_config_option *co;
|
2020-08-07 17:39:46 +00:00
|
|
|
int flags;
|
|
|
|
void *backup, *nval;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct m_option profile_restore_mode_opt = {
|
|
|
|
.name = "profile-restore",
|
|
|
|
.type = &m_option_type_choice,
|
|
|
|
M_CHOICES({"default", 0}, {"copy", 1}, {"copy-equal", 2}),
|
2013-07-31 18:44:16 +00:00
|
|
|
};
|
|
|
|
|
2019-10-31 16:32:57 +00:00
|
|
|
static void list_profiles(struct m_config *config)
|
|
|
|
{
|
|
|
|
MP_INFO(config, "Available profiles:\n");
|
|
|
|
for (struct m_profile *p = config->profiles; p; p = p->next)
|
|
|
|
MP_INFO(config, "\t%s\t%s\n", p->name, p->desc ? p->desc : "");
|
|
|
|
MP_INFO(config, "\n");
|
|
|
|
}
|
|
|
|
|
2013-07-27 19:26:00 +00:00
|
|
|
static int show_profile(struct m_config *config, bstr param)
|
2010-09-27 12:10:59 +00:00
|
|
|
{
|
2011-07-05 19:31:44 +00:00
|
|
|
struct m_profile *p;
|
2019-10-31 16:32:57 +00:00
|
|
|
if (!param.len) {
|
|
|
|
list_profiles(config);
|
|
|
|
return M_OPT_EXIT;
|
|
|
|
}
|
2010-09-27 12:10:59 +00:00
|
|
|
if (!(p = m_config_get_profile(config, param))) {
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_ERR(config, "Unknown profile '%.*s'.\n", BSTR_P(param));
|
2016-09-17 16:07:40 +00:00
|
|
|
return M_OPT_EXIT;
|
2010-09-27 12:10:59 +00:00
|
|
|
}
|
|
|
|
if (!config->profile_depth)
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, "Profile %s: %s\n", p->name,
|
2010-09-27 12:10:59 +00:00
|
|
|
p->desc ? p->desc : "");
|
|
|
|
config->profile_depth++;
|
2020-08-05 20:37:47 +00:00
|
|
|
if (p->cond) {
|
|
|
|
MP_INFO(config, "%*sprofile-cond=%s\n", config->profile_depth, "",
|
|
|
|
p->cond);
|
|
|
|
}
|
2015-11-06 20:12:20 +00:00
|
|
|
for (int i = 0; i < p->num_opts; i++) {
|
|
|
|
MP_INFO(config, "%*s%s=%s\n", config->profile_depth, "",
|
|
|
|
p->opts[2 * i], p->opts[2 * i + 1]);
|
2010-09-27 12:10:59 +00:00
|
|
|
|
|
|
|
if (config->profile_depth < MAX_PROFILE_DEPTH
|
|
|
|
&& !strcmp(p->opts[2*i], "profile")) {
|
|
|
|
char *e, *list = p->opts[2 * i + 1];
|
|
|
|
while ((e = strchr(list, ','))) {
|
2011-07-05 19:31:44 +00:00
|
|
|
int l = e - list;
|
2010-09-27 12:10:59 +00:00
|
|
|
if (!l)
|
|
|
|
continue;
|
2015-11-06 20:12:20 +00:00
|
|
|
show_profile(config, (bstr){list, e - list});
|
2011-07-05 19:31:44 +00:00
|
|
|
list = e + 1;
|
2010-09-27 12:10:59 +00:00
|
|
|
}
|
|
|
|
if (list[0] != '\0')
|
2013-07-27 19:26:00 +00:00
|
|
|
show_profile(config, bstr0(list));
|
2010-09-27 12:10:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
config->profile_depth--;
|
|
|
|
if (!config->profile_depth)
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, "\n");
|
2016-09-17 16:07:40 +00:00
|
|
|
return M_OPT_EXIT;
|
2010-09-27 12:10:59 +00:00
|
|
|
}
|
2006-01-24 11:16:13 +00:00
|
|
|
|
2018-01-12 03:02:55 +00:00
|
|
|
static struct m_config *m_config_from_obj_desc(void *talloc_ctx,
|
|
|
|
struct mp_log *log,
|
|
|
|
struct mpv_global *global,
|
|
|
|
struct m_obj_desc *desc)
|
options: use m_config for options instead of m_struct
For some reason, both m_config and m_struct are somewhat similar, except
that m_config is much more powerful. m_config is used for VOs and some
other things, so to unify them. We plan to kick out m_struct and use
m_config for everything. (Unfortunately, m_config is also a bit more
bloated, so this commit isn't all that great, but it will allow to
reduce the option parser mess somewhat.)
This commit also switches all video filters to use the option macros.
One reason is that m_struct and m_config, even though they both use
m_option, store the offsets of the option fields differently (sigh...),
meaning the options defined for either are incompatible. It's easier to
switch everything in one go.
This commit will allow using the -vf option parser for other things,
like VOs and AOs.
2013-07-21 17:33:08 +00:00
|
|
|
{
|
2019-11-28 23:16:52 +00:00
|
|
|
struct m_sub_options *root = talloc_ptrtype(NULL, root);
|
|
|
|
*root = (struct m_sub_options){
|
|
|
|
.opts = desc->options,
|
|
|
|
// (global == NULL got repurposed to mean "no alloc")
|
|
|
|
.size = global ? desc->priv_size : 0,
|
|
|
|
.defaults = desc->priv_defaults,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct m_config *c = m_config_new(talloc_ctx, log, root);
|
|
|
|
talloc_steal(c, root);
|
2018-01-12 03:02:55 +00:00
|
|
|
c->global = global;
|
|
|
|
return c;
|
options: use m_config for options instead of m_struct
For some reason, both m_config and m_struct are somewhat similar, except
that m_config is much more powerful. m_config is used for VOs and some
other things, so to unify them. We plan to kick out m_struct and use
m_config for everything. (Unfortunately, m_config is also a bit more
bloated, so this commit isn't all that great, but it will allow to
reduce the option parser mess somewhat.)
This commit also switches all video filters to use the option macros.
One reason is that m_struct and m_config, even though they both use
m_option, store the offsets of the option fields differently (sigh...),
meaning the options defined for either are incompatible. It's easier to
switch everything in one go.
This commit will allow using the -vf option parser for other things,
like VOs and AOs.
2013-07-21 17:33:08 +00:00
|
|
|
}
|
|
|
|
|
2013-11-01 16:33:11 +00:00
|
|
|
struct m_config *m_config_from_obj_desc_noalloc(void *talloc_ctx,
|
2013-12-21 18:45:42 +00:00
|
|
|
struct mp_log *log,
|
2013-10-25 13:31:47 +00:00
|
|
|
struct m_obj_desc *desc)
|
|
|
|
{
|
2019-11-28 23:16:52 +00:00
|
|
|
return m_config_from_obj_desc(talloc_ctx, log, NULL, desc);
|
2013-10-25 13:31:47 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 13:59:40 +00:00
|
|
|
static int m_config_set_obj_params(struct m_config *config, struct mp_log *log,
|
2016-09-05 19:05:47 +00:00
|
|
|
struct mpv_global *global,
|
|
|
|
struct m_obj_desc *desc, char **args)
|
options: use m_config for options instead of m_struct
For some reason, both m_config and m_struct are somewhat similar, except
that m_config is much more powerful. m_config is used for VOs and some
other things, so to unify them. We plan to kick out m_struct and use
m_config for everything. (Unfortunately, m_config is also a bit more
bloated, so this commit isn't all that great, but it will allow to
reduce the option parser mess somewhat.)
This commit also switches all video filters to use the option macros.
One reason is that m_struct and m_config, even though they both use
m_option, store the offsets of the option fields differently (sigh...),
meaning the options defined for either are incompatible. It's easier to
switch everything in one go.
This commit will allow using the -vf option parser for other things,
like VOs and AOs.
2013-07-21 17:33:08 +00:00
|
|
|
{
|
|
|
|
for (int n = 0; args && args[n * 2 + 0]; n++) {
|
2016-10-21 17:09:15 +00:00
|
|
|
bstr opt = bstr0(args[n * 2 + 0]);
|
2016-11-25 20:00:39 +00:00
|
|
|
bstr val = bstr0(args[n * 2 + 1]);
|
2017-07-02 11:00:22 +00:00
|
|
|
if (m_config_set_option_cli(config, opt, val, 0) < 0)
|
2016-09-02 13:59:40 +00:00
|
|
|
return -1;
|
options: use m_config for options instead of m_struct
For some reason, both m_config and m_struct are somewhat similar, except
that m_config is much more powerful. m_config is used for VOs and some
other things, so to unify them. We plan to kick out m_struct and use
m_config for everything. (Unfortunately, m_config is also a bit more
bloated, so this commit isn't all that great, but it will allow to
reduce the option parser mess somewhat.)
This commit also switches all video filters to use the option macros.
One reason is that m_struct and m_config, even though they both use
m_option, store the offsets of the option fields differently (sigh...),
meaning the options defined for either are incompatible. It's easier to
switch everything in one go.
This commit will allow using the -vf option parser for other things,
like VOs and AOs.
2013-07-21 17:33:08 +00:00
|
|
|
}
|
2016-09-02 13:59:40 +00:00
|
|
|
|
options: use m_config for options instead of m_struct
For some reason, both m_config and m_struct are somewhat similar, except
that m_config is much more powerful. m_config is used for VOs and some
other things, so to unify them. We plan to kick out m_struct and use
m_config for everything. (Unfortunately, m_config is also a bit more
bloated, so this commit isn't all that great, but it will allow to
reduce the option parser mess somewhat.)
This commit also switches all video filters to use the option macros.
One reason is that m_struct and m_config, even though they both use
m_option, store the offsets of the option fields differently (sigh...),
meaning the options defined for either are incompatible. It's easier to
switch everything in one go.
This commit will allow using the -vf option parser for other things,
like VOs and AOs.
2013-07-21 17:33:08 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-02 13:59:40 +00:00
|
|
|
struct m_config *m_config_from_obj_desc_and_args(void *ta_parent,
|
|
|
|
struct mp_log *log, struct mpv_global *global, struct m_obj_desc *desc,
|
2023-09-20 04:51:51 +00:00
|
|
|
char **args)
|
2013-11-30 23:12:10 +00:00
|
|
|
{
|
2018-01-12 03:02:55 +00:00
|
|
|
struct m_config *config = m_config_from_obj_desc(ta_parent, log, global, desc);
|
2016-09-05 19:05:47 +00:00
|
|
|
if (m_config_set_obj_params(config, log, global, desc, args) < 0)
|
2016-09-02 12:49:34 +00:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
return config;
|
|
|
|
error:
|
|
|
|
talloc_free(config);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-08-07 17:39:46 +00:00
|
|
|
static void backup_dtor(void *p)
|
|
|
|
{
|
|
|
|
struct m_opt_backup *bc = p;
|
|
|
|
m_option_free(bc->co->opt, bc->backup);
|
|
|
|
if (bc->nval)
|
|
|
|
m_option_free(bc->co->opt, bc->nval);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define BACKUP_LOCAL 1
|
|
|
|
#define BACKUP_NVAL 2
|
|
|
|
static void ensure_backup(struct m_opt_backup **list, int flags,
|
|
|
|
struct m_config_option *co)
|
2012-05-17 00:31:11 +00:00
|
|
|
{
|
2013-07-31 18:44:16 +00:00
|
|
|
if (!co->data)
|
mplayer: turn playtree into a list, and change per-file option handling
Summary:
- There is no playtree anymore. It's reduced to a simple list.
- Options are now always global. You can still have per-file options,
but these are optional and require special syntax.
- The slave command pt_step has been removed, and playlist_next
and playlist_prev added. (See etc/input.conf changes.)
This is a user visible incompatible change, and will break slave-mode
applications.
- The pt_clear slave command is renamed to playlist_clear.
- Playtree entries could have multiple files. This is not the case
anymore, and playlist entries have always exactly one entry. Whenever
something adds more than one file (like ASX playlists or dvd:// or
dvdnav:// on the command line), all files are added as separate
playlist entries.
Note that some of the changes are quite deep and violent. Expect
regressions.
The playlist parsing code in particular is of low quality. I didn't try
to improve it, and merely spent to least effort necessary to keep it
somehow working. (Especially ASX playlist handling.)
The playtree code was complicated and bloated. It was also barely used.
Most users don't even know that mplayer manages the playlist as tree,
or how to use it. The most obscure features was probably specifying a
tree on command line (with '{' and '}' to create/close tree nodes). It
filled the player code with complexity and confused users with weird
slave commands like pt_up.
Replace the playtree with a simple flat playlist. Playlist parsers that
actually return trees are changed to append all files to the playlist
pre-order.
It used to be the responsibility of the playtree code to change per-file
config options. Now this is done by the player core, and the playlist
code is free of such details.
Options are not per-file by default anymore. This was a very obscure and
complicated feature that confused even experienced users. Consider the
following command line:
mplayer file1.mkv file2.mkv --no-audio file3.mkv
This will disable the audio for file2.mkv only, because options are
per-file by default. To make the option affect all files, you're
supposed to put it before the first file.
This is bad, because normally you don't need per-file options. They are
very rarely needed, and the only reasonable use cases I can imagine are
use of the encode backend (mplayer encode branch), or for debugging. The
normal use case is made harder, and the feature is perceived as bug.
Even worse, correct usage is hard to explain for users.
Make all options global by default. The position of an option isn't
significant anymore (except for options that compensate each other,
consider --shuffle --no-shuffle).
One other important change is that no options are reset anymore if a
new file is started. If you change settings with slave mode commands,
they will not be changed by playing a new file. (Exceptions include
settings that are too file specific, like audio/subtitle stream
selection.)
There is still some need for per-file options. Debugging and encoding
are use cases that profit from per-file options. Per-file profiles (as
well as per-protocol and per-VO/AO options) need the implementation
related mechanisms to backup and restore options when the playback file
changes.
Simplify the save-slot stuff, which is possible because there is no
hierarchical play tree anymore. Now there's a simple backup field.
Add a way to specify per-file options on command line. Example:
mplayer f1.mkv -o0 --{ -o1 f2.mkv -o2 f3.mkv --} f4.mkv -o3
will have the following options per file set:
f1.mkv, f4.mkv: -o0 -o3
f2.mkv, f3.mkv: -o0 -o3 -o1 -o2
The options --{ and --} start and end per-file options. All files inside
the { } will be affected by the options equally (similar to how global
options and multiple files are handled). When playback of a file starts,
the per-file options are set according to the command line. When
playback ends, the per-file options are restored to the values when
playback started.
2012-07-31 19:33:26 +00:00
|
|
|
return;
|
2020-08-07 17:39:46 +00:00
|
|
|
for (struct m_opt_backup *cur = *list; cur; cur = cur->next) {
|
2013-07-31 18:44:16 +00:00
|
|
|
if (cur->co->data == co->data) // comparing data ptr catches aliases
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct m_opt_backup *bc = talloc_ptrtype(NULL, bc);
|
2020-08-07 17:39:46 +00:00
|
|
|
talloc_set_destructor(bc, backup_dtor);
|
2013-07-31 18:44:16 +00:00
|
|
|
*bc = (struct m_opt_backup) {
|
|
|
|
.co = co,
|
|
|
|
.backup = talloc_zero_size(bc, co->opt->type->size),
|
2020-08-07 17:39:46 +00:00
|
|
|
.nval = flags & BACKUP_NVAL
|
|
|
|
? talloc_zero_size(bc, co->opt->type->size) : NULL,
|
|
|
|
.flags = flags,
|
2013-07-31 18:44:16 +00:00
|
|
|
};
|
|
|
|
m_option_copy(co->opt, bc->backup, co->data);
|
2020-08-07 17:39:46 +00:00
|
|
|
bc->next = *list;
|
|
|
|
*list = bc;
|
|
|
|
if (bc->flags & BACKUP_LOCAL)
|
|
|
|
co->is_set_locally = true;
|
2012-05-17 00:31:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-07 17:39:46 +00:00
|
|
|
static void restore_backups(struct m_opt_backup **list, struct m_config *config)
|
2011-07-05 19:31:44 +00:00
|
|
|
{
|
2020-08-07 17:39:46 +00:00
|
|
|
while (*list) {
|
|
|
|
struct m_opt_backup *bc = *list;
|
|
|
|
*list = bc->next;
|
2013-07-31 18:44:16 +00:00
|
|
|
|
2020-08-07 17:39:46 +00:00
|
|
|
if (!bc->nval || m_option_equal(bc->co->opt, bc->co->data, bc->nval))
|
|
|
|
m_config_set_option_raw(config, bc->co, bc->backup, 0);
|
2016-09-17 15:47:22 +00:00
|
|
|
|
2020-08-07 17:39:46 +00:00
|
|
|
if (bc->flags & BACKUP_LOCAL)
|
|
|
|
bc->co->is_set_locally = false;
|
2013-07-31 18:44:16 +00:00
|
|
|
talloc_free(bc);
|
2002-11-12 01:56:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-07 17:39:46 +00:00
|
|
|
void m_config_restore_backups(struct m_config *config)
|
|
|
|
{
|
|
|
|
restore_backups(&config->backup_opts, config);
|
|
|
|
}
|
|
|
|
|
2021-07-21 09:06:41 +00:00
|
|
|
bool m_config_watch_later_backup_opt_changed(struct m_config *config,
|
|
|
|
char *opt_name)
|
|
|
|
{
|
|
|
|
struct m_config_option *co = m_config_get_co(config, bstr0(opt_name));
|
|
|
|
if (!co) {
|
2021-07-21 16:43:52 +00:00
|
|
|
MP_ERR(config, "Option %s not found.\n", opt_name);
|
2021-07-21 09:06:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (struct m_opt_backup *bc = config->watch_later_backup_opts; bc;
|
|
|
|
bc = bc->next) {
|
|
|
|
if (strcmp(bc->co->name, co->name) == 0) {
|
|
|
|
struct m_config_option *bc_co = (struct m_config_option *)bc->backup;
|
|
|
|
return !m_option_equal(co->opt, co->data, bc_co);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-02 15:59:43 +00:00
|
|
|
void m_config_backup_opt(struct m_config *config, const char *opt)
|
2013-04-10 19:06:00 +00:00
|
|
|
{
|
|
|
|
struct m_config_option *co = m_config_get_co(config, bstr0(opt));
|
|
|
|
if (co) {
|
2020-08-07 17:39:46 +00:00
|
|
|
ensure_backup(&config->backup_opts, BACKUP_LOCAL, co);
|
2013-04-10 19:06:00 +00:00
|
|
|
} else {
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_ERR(config, "Option %s not found.\n", opt);
|
2013-04-10 19:06:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-02 15:59:43 +00:00
|
|
|
void m_config_backup_all_opts(struct m_config *config)
|
2013-04-10 19:06:00 +00:00
|
|
|
{
|
2013-10-24 18:00:00 +00:00
|
|
|
for (int n = 0; n < config->num_opts; n++)
|
2020-08-07 17:39:46 +00:00
|
|
|
ensure_backup(&config->backup_opts, BACKUP_LOCAL, &config->opts[n]);
|
2013-10-24 17:49:39 +00:00
|
|
|
}
|
|
|
|
|
2021-07-21 09:06:41 +00:00
|
|
|
void m_config_backup_watch_later_opts(struct m_config *config)
|
|
|
|
{
|
|
|
|
for (int n = 0; n < config->num_opts; n++)
|
2021-08-03 10:11:10 +00:00
|
|
|
ensure_backup(&config->watch_later_backup_opts, 0, &config->opts[n]);
|
2021-07-21 09:06:41 +00:00
|
|
|
}
|
2019-11-28 20:19:41 +00:00
|
|
|
|
player: more option/property consistency fixes
Some properties had a different type from their equivalent options (such
as mute, volume, deinterlace, edition). This wasn't really sane, as raw
option values should be always within their bounds. On the other hand,
these properties use a different type to reflect runtime limits (such as
range of available editions), or simply to improve the "UI" (you don't
want to cycle throuhg the completely useless "auto" value when cycling
the "mute" property).
Handle this by making them always return the option type, but also
allowing them to provide a "constricted" type, which is used for UI
purposes. All M_PROPERTY_GET_CONSTRICTED_TYPE changes are related to
this.
One consequence is that you can set the volume property to arbitrary
high values just like with the --volume option, but using the "add"
command it still restricts it to the --volume-max range.
Also deprecate --chapter, as it is grossly incompatible to the chapter
property. We pondered renaming it to --chapters, or introducing a more
powerful --range option, but concluded that --start --end is actually
enough.
These changes appear to take care of the last gross property/option
incompatibilities, although there might still be a few lurking.
2016-09-18 14:06:12 +00:00
|
|
|
struct m_config_option *m_config_get_co_raw(const struct m_config *config,
|
|
|
|
struct bstr name)
|
2011-07-05 19:31:44 +00:00
|
|
|
{
|
2015-03-29 11:40:19 +00:00
|
|
|
if (!name.len)
|
|
|
|
return NULL;
|
|
|
|
|
2013-10-24 18:00:00 +00:00
|
|
|
for (int n = 0; n < config->num_opts; n++) {
|
|
|
|
struct m_config_option *co = &config->opts[n];
|
2012-07-28 21:47:42 +00:00
|
|
|
struct bstr coname = bstr0(co->name);
|
2017-06-26 19:07:00 +00:00
|
|
|
if (bstrcmp(coname, name) == 0)
|
2011-07-05 19:31:44 +00:00
|
|
|
return co;
|
|
|
|
}
|
2016-09-05 19:15:56 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
return NULL;
|
2002-11-12 01:56:42 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 09:31:03 +00:00
|
|
|
// Like m_config_get_co_raw(), but resolve aliases.
|
|
|
|
static struct m_config_option *m_config_get_co_any(const struct m_config *config,
|
|
|
|
struct bstr name)
|
2016-09-05 19:15:56 +00:00
|
|
|
{
|
|
|
|
struct m_config_option *co = m_config_get_co_raw(config, name);
|
|
|
|
if (!co)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
const char *prefix = config->is_toplevel ? "--" : "";
|
|
|
|
if (co->opt->type == &m_option_type_alias) {
|
|
|
|
const char *alias = (const char *)co->opt->priv;
|
|
|
|
if (co->opt->deprecation_message && !co->warning_was_printed) {
|
2017-04-10 19:19:13 +00:00
|
|
|
if (co->opt->deprecation_message[0]) {
|
|
|
|
MP_WARN(config, "Warning: option %s%s was replaced with "
|
|
|
|
"%s%s: %s\n", prefix, co->name, prefix, alias,
|
|
|
|
co->opt->deprecation_message);
|
|
|
|
} else {
|
|
|
|
MP_WARN(config, "Warning: option %s%s was replaced with "
|
|
|
|
"%s%s and might be removed in the future.\n",
|
|
|
|
prefix, co->name, prefix, alias);
|
|
|
|
}
|
2016-09-05 19:15:56 +00:00
|
|
|
co->warning_was_printed = true;
|
|
|
|
}
|
2017-09-22 09:31:03 +00:00
|
|
|
return m_config_get_co_any(config, bstr0(alias));
|
2016-09-05 19:15:56 +00:00
|
|
|
} else if (co->opt->type == &m_option_type_removed) {
|
|
|
|
if (!co->warning_was_printed) {
|
|
|
|
char *msg = co->opt->priv;
|
|
|
|
if (msg) {
|
|
|
|
MP_FATAL(config, "Option %s%s was removed: %s\n",
|
|
|
|
prefix, co->name, msg);
|
|
|
|
} else {
|
|
|
|
MP_FATAL(config, "Option %s%s was removed.\n",
|
|
|
|
prefix, co->name);
|
|
|
|
}
|
|
|
|
co->warning_was_printed = true;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
} else if (co->opt->deprecation_message) {
|
|
|
|
if (!co->warning_was_printed) {
|
|
|
|
MP_WARN(config, "Warning: option %s%s is deprecated "
|
|
|
|
"and might be removed in the future (%s).\n",
|
|
|
|
prefix, co->name, co->opt->deprecation_message);
|
|
|
|
co->warning_was_printed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return co;
|
|
|
|
}
|
|
|
|
|
2017-09-22 09:31:03 +00:00
|
|
|
struct m_config_option *m_config_get_co(const struct m_config *config,
|
|
|
|
struct bstr name)
|
|
|
|
{
|
|
|
|
struct m_config_option *co = m_config_get_co_any(config, name);
|
|
|
|
// CLI aliases should not be real options, and are explicitly handled by
|
2018-05-20 10:30:49 +00:00
|
|
|
// m_config_set_option_cli(). So pretend it does not exist.
|
2017-09-22 09:31:03 +00:00
|
|
|
if (co && co->opt->type == &m_option_type_cli_alias)
|
|
|
|
co = NULL;
|
|
|
|
return co;
|
|
|
|
}
|
|
|
|
|
2016-09-01 18:00:43 +00:00
|
|
|
int m_config_get_co_count(struct m_config *config)
|
|
|
|
{
|
|
|
|
return config->num_opts;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct m_config_option *m_config_get_co_index(struct m_config *config, int index)
|
|
|
|
{
|
|
|
|
return &config->opts[index];
|
|
|
|
}
|
|
|
|
|
2018-05-21 11:45:06 +00:00
|
|
|
const void *m_config_get_co_default(const struct m_config *config,
|
|
|
|
struct m_config_option *co)
|
|
|
|
{
|
2020-03-12 23:42:48 +00:00
|
|
|
return m_config_shadow_get_opt_default(config->shadow, co->opt_id);
|
2018-05-21 11:45:06 +00:00
|
|
|
}
|
|
|
|
|
2013-11-01 11:27:04 +00:00
|
|
|
const char *m_config_get_positional_option(const struct m_config *config, int p)
|
options: use m_config for options instead of m_struct
For some reason, both m_config and m_struct are somewhat similar, except
that m_config is much more powerful. m_config is used for VOs and some
other things, so to unify them. We plan to kick out m_struct and use
m_config for everything. (Unfortunately, m_config is also a bit more
bloated, so this commit isn't all that great, but it will allow to
reduce the option parser mess somewhat.)
This commit also switches all video filters to use the option macros.
One reason is that m_struct and m_config, even though they both use
m_option, store the offsets of the option fields differently (sigh...),
meaning the options defined for either are incompatible. It's easier to
switch everything in one go.
This commit will allow using the -vf option parser for other things,
like VOs and AOs.
2013-07-21 17:33:08 +00:00
|
|
|
{
|
2013-07-27 19:30:00 +00:00
|
|
|
int pos = 0;
|
2013-10-24 18:00:00 +00:00
|
|
|
for (int n = 0; n < config->num_opts; n++) {
|
|
|
|
struct m_config_option *co = &config->opts[n];
|
2020-02-04 19:10:38 +00:00
|
|
|
if (!co->opt->deprecation_message) {
|
2013-11-01 11:27:04 +00:00
|
|
|
if (pos == p)
|
2013-07-27 19:30:00 +00:00
|
|
|
return co->name;
|
|
|
|
pos++;
|
|
|
|
}
|
options: use m_config for options instead of m_struct
For some reason, both m_config and m_struct are somewhat similar, except
that m_config is much more powerful. m_config is used for VOs and some
other things, so to unify them. We plan to kick out m_struct and use
m_config for everything. (Unfortunately, m_config is also a bit more
bloated, so this commit isn't all that great, but it will allow to
reduce the option parser mess somewhat.)
This commit also switches all video filters to use the option macros.
One reason is that m_struct and m_config, even though they both use
m_option, store the offsets of the option fields differently (sigh...),
meaning the options defined for either are incompatible. It's easier to
switch everything in one go.
This commit will allow using the -vf option parser for other things,
like VOs and AOs.
2013-07-21 17:33:08 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-05-18 16:57:02 +00:00
|
|
|
// return: <0: M_OPT_ error, 0: skip, 1: check, 2: set
|
|
|
|
static int handle_set_opt_flags(struct m_config *config,
|
|
|
|
struct m_config_option *co, int flags)
|
|
|
|
{
|
|
|
|
int optflags = co->opt->flags;
|
|
|
|
bool set = !(flags & M_SETOPT_CHECK_ONLY);
|
|
|
|
|
|
|
|
if ((flags & M_SETOPT_PRE_PARSE_ONLY) && !(optflags & M_OPT_PRE_PARSE))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ((flags & M_SETOPT_PRESERVE_CMDLINE) && co->is_set_from_cmdline)
|
|
|
|
set = false;
|
|
|
|
|
2016-09-23 19:24:50 +00:00
|
|
|
if ((flags & M_SETOPT_NO_OVERWRITE) &&
|
|
|
|
(co->is_set_from_cmdline || co->is_set_from_config))
|
|
|
|
set = false;
|
|
|
|
|
2014-05-18 16:57:02 +00:00
|
|
|
if ((flags & M_SETOPT_NO_PRE_PARSE) && (optflags & M_OPT_PRE_PARSE))
|
|
|
|
return M_OPT_INVALID;
|
|
|
|
|
|
|
|
// Check if this option isn't forbidden in the current mode
|
|
|
|
if ((flags & M_SETOPT_FROM_CONFIG_FILE) && (optflags & M_OPT_NOCFG)) {
|
|
|
|
MP_ERR(config, "The %s option can't be used in a config file.\n",
|
|
|
|
co->name);
|
|
|
|
return M_OPT_INVALID;
|
|
|
|
}
|
2016-09-17 15:04:13 +00:00
|
|
|
if ((flags & M_SETOPT_BACKUP) && set)
|
2020-08-07 17:39:46 +00:00
|
|
|
ensure_backup(&config->backup_opts, BACKUP_LOCAL, co);
|
2014-05-18 16:57:02 +00:00
|
|
|
|
|
|
|
return set ? 2 : 1;
|
|
|
|
}
|
|
|
|
|
2016-09-23 19:04:20 +00:00
|
|
|
void m_config_mark_co_flags(struct m_config_option *co, int flags)
|
|
|
|
{
|
|
|
|
if (flags & M_SETOPT_FROM_CMDLINE)
|
|
|
|
co->is_set_from_cmdline = true;
|
2016-09-23 19:24:50 +00:00
|
|
|
|
|
|
|
if (flags & M_SETOPT_FROM_CONFIG_FILE)
|
|
|
|
co->is_set_from_config = true;
|
2016-09-23 19:04:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-06 00:27:15 +00:00
|
|
|
// Special options that don't really fit into the option handling model. They
|
options: make mess to allow setting profile option with libmpv
Certain options, such as --profile, --help, and many others require
special-handling, because they don't fit conceptually into the option
and property model. They don't store data, but perform actions.
This caused the situation that profiles could not be set when using
libmpv in encoding mode (although you should probably not used libmpv in
encoding mode). Using libmpv always ends up in calling
m_config_set_option_raw_direct(), while --profile was handled in
m_config_parse_option().
Solve this by moving the handling of this from m_config_parse_option()
to m_config_set_option_raw_direct(). Actually we just stuff most of this
into m_config_handle_special_options(), which is only called by the
aforementioned function.
Strangely this also means that the --h/--help option declarations need
to be changed, because they used OPT_PRINT, and now the option "parser"
is always invoked before the special code. Thus, make them a string.
Them being OPT_PRINT was apparently always redundant. (The other option
declarations are moved for cosmetic purposes only.)
The most weird change is how co->data==NULL is handled. We now allow
passing down involved options to m_config_set_option_raw_direct(). The
thing is that we don't want them to error if the command line parser is
using them (with special handling done there), while all other code
paths should raise an error. We try using M_SETOPT_FROM_CMDLINE to
distinguish these cases.
Note that normal libmpv users are supposed to use the "apply-profile"
command instead.
This probably contains a bunch of bugs, which you should report.
2017-06-15 13:15:05 +00:00
|
|
|
// usually store no data, but trigger actions. Caller is assumed to have called
|
|
|
|
// handle_set_opt_flags() to make sure the option can be set.
|
|
|
|
// Returns M_OPT_UNKNOWN if the option is not a special option.
|
|
|
|
static int m_config_handle_special_options(struct m_config *config,
|
|
|
|
struct m_config_option *co,
|
|
|
|
void *data, int flags)
|
|
|
|
{
|
|
|
|
if (config->use_profiles && strcmp(co->name, "profile") == 0) {
|
|
|
|
char **list = *(char ***)data;
|
|
|
|
|
|
|
|
if (list && list[0] && !list[1] && strcmp(list[0], "help") == 0) {
|
|
|
|
if (!config->profiles) {
|
|
|
|
MP_INFO(config, "No profiles have been defined.\n");
|
|
|
|
return M_OPT_EXIT;
|
|
|
|
}
|
2019-10-31 16:32:57 +00:00
|
|
|
list_profiles(config);
|
options: make mess to allow setting profile option with libmpv
Certain options, such as --profile, --help, and many others require
special-handling, because they don't fit conceptually into the option
and property model. They don't store data, but perform actions.
This caused the situation that profiles could not be set when using
libmpv in encoding mode (although you should probably not used libmpv in
encoding mode). Using libmpv always ends up in calling
m_config_set_option_raw_direct(), while --profile was handled in
m_config_parse_option().
Solve this by moving the handling of this from m_config_parse_option()
to m_config_set_option_raw_direct(). Actually we just stuff most of this
into m_config_handle_special_options(), which is only called by the
aforementioned function.
Strangely this also means that the --h/--help option declarations need
to be changed, because they used OPT_PRINT, and now the option "parser"
is always invoked before the special code. Thus, make them a string.
Them being OPT_PRINT was apparently always redundant. (The other option
declarations are moved for cosmetic purposes only.)
The most weird change is how co->data==NULL is handled. We now allow
passing down involved options to m_config_set_option_raw_direct(). The
thing is that we don't want them to error if the command line parser is
using them (with special handling done there), while all other code
paths should raise an error. We try using M_SETOPT_FROM_CMDLINE to
distinguish these cases.
Note that normal libmpv users are supposed to use the "apply-profile"
command instead.
This probably contains a bunch of bugs, which you should report.
2017-06-15 13:15:05 +00:00
|
|
|
return M_OPT_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int n = 0; list && list[n]; n++) {
|
|
|
|
int r = m_config_set_profile(config, list[n], flags);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->includefunc && strcmp(co->name, "include") == 0) {
|
|
|
|
char *param = *(char **)data;
|
|
|
|
if (!param || !param[0])
|
|
|
|
return M_OPT_MISSING_PARAM;
|
|
|
|
if (config->recursion_depth >= MAX_RECURSION_DEPTH) {
|
|
|
|
MP_ERR(config, "Maximum 'include' nesting depth exceeded.\n");
|
|
|
|
return M_OPT_INVALID;
|
|
|
|
}
|
|
|
|
config->recursion_depth += 1;
|
|
|
|
config->includefunc(config->includefunc_ctx, param, flags);
|
|
|
|
config->recursion_depth -= 1;
|
2017-08-08 13:54:51 +00:00
|
|
|
if (config->recursion_depth == 0 && config->profile_depth == 0)
|
|
|
|
m_config_finish_default_profile(config, flags);
|
options: make mess to allow setting profile option with libmpv
Certain options, such as --profile, --help, and many others require
special-handling, because they don't fit conceptually into the option
and property model. They don't store data, but perform actions.
This caused the situation that profiles could not be set when using
libmpv in encoding mode (although you should probably not used libmpv in
encoding mode). Using libmpv always ends up in calling
m_config_set_option_raw_direct(), while --profile was handled in
m_config_parse_option().
Solve this by moving the handling of this from m_config_parse_option()
to m_config_set_option_raw_direct(). Actually we just stuff most of this
into m_config_handle_special_options(), which is only called by the
aforementioned function.
Strangely this also means that the --h/--help option declarations need
to be changed, because they used OPT_PRINT, and now the option "parser"
is always invoked before the special code. Thus, make them a string.
Them being OPT_PRINT was apparently always redundant. (The other option
declarations are moved for cosmetic purposes only.)
The most weird change is how co->data==NULL is handled. We now allow
passing down involved options to m_config_set_option_raw_direct(). The
thing is that we don't want them to error if the command line parser is
using them (with special handling done there), while all other code
paths should raise an error. We try using M_SETOPT_FROM_CMDLINE to
distinguish these cases.
Note that normal libmpv users are supposed to use the "apply-profile"
command instead.
This probably contains a bunch of bugs, which you should report.
2017-06-15 13:15:05 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->use_profiles && strcmp(co->name, "show-profile") == 0)
|
|
|
|
return show_profile(config, bstr0(*(char **)data));
|
|
|
|
|
|
|
|
if (config->is_toplevel && (strcmp(co->name, "h") == 0 ||
|
|
|
|
strcmp(co->name, "help") == 0))
|
|
|
|
{
|
|
|
|
char *h = *(char **)data;
|
|
|
|
mp_info(config->log, "%s", mp_help_text);
|
|
|
|
if (h && h[0])
|
|
|
|
m_config_print_option_list(config, h);
|
|
|
|
return M_OPT_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(co->name, "list-options") == 0) {
|
|
|
|
m_config_print_option_list(config, "*");
|
|
|
|
return M_OPT_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return M_OPT_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
player: change m_config to use new option handling mechanisms
Instead of making m_config a special-case, it more or less uses the
underlying m_config_cache/m_config_shadow APIs properly. This makes the
player core a (relatively) equivalent user of the core option API. In
particular, this means that other threads can change core options with
m_config_cache_write_opt() calls (before this commit, this merely led to
diverging option values).
An important change is that before this commit, mpctx->opts contained
the "master copy" of all option data. Now it's just another copy of the
option data, and the shadow copy is considered the master. This is why
whenever mpctx->opts is written, the change needs to be copied to the
master (thus why this commits add a bunch of m_config_notify... calls).
If another thread (e.g. a VO) changes an option, async_change_cb is now
invoked, which funnels the change notification through the player's
layers.
The new self_notification parameter on mp_option_change_callback is so
that m_config_notify... doesn't trigger recursion, and it's used in
cases where the change was already "processed". It's still needed to
trigger libmpv property updates. (I considered using an extra
m_config_cache for that, but it'd only cause problems with no
advantages.)
I think the recent changes actually forgot to send libmpv property
updates in some cases. This should fix this anyway. In some cases,
property updates are reworked, and the potential for bugs should be
lower (probably).
The primary point of this change is to allow external updates, for
example by a VO writing the fullscreen option if the window state is
changed by the window manager (rather than mpv changing it). This is not
used yet, but the following commits will.
2019-11-29 11:49:15 +00:00
|
|
|
// This notification happens when anyone other than m_config->cache (i.e. not
|
|
|
|
// through m_config_set_option_raw() or related) changes any options.
|
|
|
|
static void async_change_cb(void *p)
|
|
|
|
{
|
|
|
|
struct m_config *config = p;
|
|
|
|
|
|
|
|
void *ptr;
|
|
|
|
while (m_config_cache_get_next_changed(config->cache, &ptr)) {
|
|
|
|
// Regrettable linear search, might degenerate to quadratic.
|
|
|
|
for (int n = 0; n < config->num_opts; n++) {
|
|
|
|
struct m_config_option *co = &config->opts[n];
|
|
|
|
if (co->data == ptr) {
|
|
|
|
if (config->option_change_callback) {
|
|
|
|
config->option_change_callback(
|
|
|
|
config->option_change_callback_ctx, co,
|
|
|
|
config->cache->change_flags, false);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
config->cache->change_flags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void m_config_set_update_dispatch_queue(struct m_config *config,
|
|
|
|
struct mp_dispatch_queue *dispatch)
|
|
|
|
{
|
|
|
|
m_config_cache_set_dispatch_change_cb(config->cache, dispatch,
|
|
|
|
async_change_cb, config);
|
|
|
|
}
|
|
|
|
|
2020-03-12 23:42:48 +00:00
|
|
|
static void config_destroy(void *p)
|
|
|
|
{
|
|
|
|
struct m_config *config = p;
|
|
|
|
config->option_change_callback = NULL;
|
|
|
|
m_config_restore_backups(config);
|
|
|
|
|
2021-07-21 09:06:41 +00:00
|
|
|
struct m_opt_backup **list = &config->watch_later_backup_opts;
|
|
|
|
while (*list) {
|
|
|
|
struct m_opt_backup *bc = *list;
|
|
|
|
*list = bc->next;
|
|
|
|
talloc_free(bc);
|
|
|
|
}
|
|
|
|
|
2020-03-12 23:42:48 +00:00
|
|
|
talloc_free(config->cache);
|
|
|
|
talloc_free(config->shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct m_config *m_config_new(void *talloc_ctx, struct mp_log *log,
|
|
|
|
const struct m_sub_options *root)
|
|
|
|
{
|
|
|
|
struct m_config *config = talloc(talloc_ctx, struct m_config);
|
|
|
|
talloc_set_destructor(config, config_destroy);
|
|
|
|
*config = (struct m_config){.log = log,};
|
|
|
|
|
|
|
|
config->shadow = m_config_shadow_new(root);
|
|
|
|
|
|
|
|
if (root->size) {
|
|
|
|
config->cache = m_config_cache_from_shadow(config, config->shadow, root);
|
|
|
|
config->optstruct = config->cache->opts;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t optid = -1;
|
|
|
|
while (m_config_shadow_get_next_opt(config->shadow, &optid)) {
|
|
|
|
char buf[M_CONFIG_MAX_OPT_NAME_LEN];
|
|
|
|
const char *opt_name =
|
|
|
|
m_config_shadow_get_opt_name(config->shadow, optid, buf, sizeof(buf));
|
|
|
|
|
|
|
|
struct m_config_option co = {
|
|
|
|
.name = talloc_strdup(config, opt_name),
|
|
|
|
.opt = m_config_shadow_get_opt(config->shadow, optid),
|
|
|
|
.opt_id = optid,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (config->cache)
|
|
|
|
co.data = m_config_cache_get_opt_data(config->cache, optid);
|
|
|
|
|
|
|
|
MP_TARRAY_APPEND(config, config->opts, config->num_opts, co);
|
|
|
|
}
|
|
|
|
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
player: change m_config to use new option handling mechanisms
Instead of making m_config a special-case, it more or less uses the
underlying m_config_cache/m_config_shadow APIs properly. This makes the
player core a (relatively) equivalent user of the core option API. In
particular, this means that other threads can change core options with
m_config_cache_write_opt() calls (before this commit, this merely led to
diverging option values).
An important change is that before this commit, mpctx->opts contained
the "master copy" of all option data. Now it's just another copy of the
option data, and the shadow copy is considered the master. This is why
whenever mpctx->opts is written, the change needs to be copied to the
master (thus why this commits add a bunch of m_config_notify... calls).
If another thread (e.g. a VO) changes an option, async_change_cb is now
invoked, which funnels the change notification through the player's
layers.
The new self_notification parameter on mp_option_change_callback is so
that m_config_notify... doesn't trigger recursion, and it's used in
cases where the change was already "processed". It's still needed to
trigger libmpv property updates. (I considered using an extra
m_config_cache for that, but it'd only cause problems with no
advantages.)
I think the recent changes actually forgot to send libmpv property
updates in some cases. This should fix this anyway. In some cases,
property updates are reworked, and the potential for bugs should be
lower (probably).
The primary point of this change is to allow external updates, for
example by a VO writing the fullscreen option if the window state is
changed by the window manager (rather than mpv changing it). This is not
used yet, but the following commits will.
2019-11-29 11:49:15 +00:00
|
|
|
// Normally m_config_cache will not send notifications when _we_ change our
|
|
|
|
// own stuff. For whatever funny reasons, we need that, though.
|
|
|
|
static void force_self_notify_change_opt(struct m_config *config,
|
|
|
|
struct m_config_option *co,
|
|
|
|
bool self_notification)
|
|
|
|
{
|
|
|
|
int changed =
|
2020-03-12 23:42:48 +00:00
|
|
|
m_config_cache_get_option_change_mask(config->cache, co->opt_id);
|
player: change m_config to use new option handling mechanisms
Instead of making m_config a special-case, it more or less uses the
underlying m_config_cache/m_config_shadow APIs properly. This makes the
player core a (relatively) equivalent user of the core option API. In
particular, this means that other threads can change core options with
m_config_cache_write_opt() calls (before this commit, this merely led to
diverging option values).
An important change is that before this commit, mpctx->opts contained
the "master copy" of all option data. Now it's just another copy of the
option data, and the shadow copy is considered the master. This is why
whenever mpctx->opts is written, the change needs to be copied to the
master (thus why this commits add a bunch of m_config_notify... calls).
If another thread (e.g. a VO) changes an option, async_change_cb is now
invoked, which funnels the change notification through the player's
layers.
The new self_notification parameter on mp_option_change_callback is so
that m_config_notify... doesn't trigger recursion, and it's used in
cases where the change was already "processed". It's still needed to
trigger libmpv property updates. (I considered using an extra
m_config_cache for that, but it'd only cause problems with no
advantages.)
I think the recent changes actually forgot to send libmpv property
updates in some cases. This should fix this anyway. In some cases,
property updates are reworked, and the potential for bugs should be
lower (probably).
The primary point of this change is to allow external updates, for
example by a VO writing the fullscreen option if the window state is
changed by the window manager (rather than mpv changing it). This is not
used yet, but the following commits will.
2019-11-29 11:49:15 +00:00
|
|
|
|
|
|
|
if (config->option_change_callback) {
|
|
|
|
config->option_change_callback(config->option_change_callback_ctx, co,
|
|
|
|
changed, self_notification);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-04 20:12:29 +00:00
|
|
|
static void notify_opt(struct m_config *config, void *ptr, bool self_notification)
|
player: change m_config to use new option handling mechanisms
Instead of making m_config a special-case, it more or less uses the
underlying m_config_cache/m_config_shadow APIs properly. This makes the
player core a (relatively) equivalent user of the core option API. In
particular, this means that other threads can change core options with
m_config_cache_write_opt() calls (before this commit, this merely led to
diverging option values).
An important change is that before this commit, mpctx->opts contained
the "master copy" of all option data. Now it's just another copy of the
option data, and the shadow copy is considered the master. This is why
whenever mpctx->opts is written, the change needs to be copied to the
master (thus why this commits add a bunch of m_config_notify... calls).
If another thread (e.g. a VO) changes an option, async_change_cb is now
invoked, which funnels the change notification through the player's
layers.
The new self_notification parameter on mp_option_change_callback is so
that m_config_notify... doesn't trigger recursion, and it's used in
cases where the change was already "processed". It's still needed to
trigger libmpv property updates. (I considered using an extra
m_config_cache for that, but it'd only cause problems with no
advantages.)
I think the recent changes actually forgot to send libmpv property
updates in some cases. This should fix this anyway. In some cases,
property updates are reworked, and the potential for bugs should be
lower (probably).
The primary point of this change is to allow external updates, for
example by a VO writing the fullscreen option if the window state is
changed by the window manager (rather than mpv changing it). This is not
used yet, but the following commits will.
2019-11-29 11:49:15 +00:00
|
|
|
{
|
|
|
|
for (int n = 0; n < config->num_opts; n++) {
|
|
|
|
struct m_config_option *co = &config->opts[n];
|
|
|
|
if (co->data == ptr) {
|
|
|
|
if (m_config_cache_write_opt(config->cache, co->data))
|
2020-01-04 20:12:29 +00:00
|
|
|
force_self_notify_change_opt(config, co, self_notification);
|
player: change m_config to use new option handling mechanisms
Instead of making m_config a special-case, it more or less uses the
underlying m_config_cache/m_config_shadow APIs properly. This makes the
player core a (relatively) equivalent user of the core option API. In
particular, this means that other threads can change core options with
m_config_cache_write_opt() calls (before this commit, this merely led to
diverging option values).
An important change is that before this commit, mpctx->opts contained
the "master copy" of all option data. Now it's just another copy of the
option data, and the shadow copy is considered the master. This is why
whenever mpctx->opts is written, the change needs to be copied to the
master (thus why this commits add a bunch of m_config_notify... calls).
If another thread (e.g. a VO) changes an option, async_change_cb is now
invoked, which funnels the change notification through the player's
layers.
The new self_notification parameter on mp_option_change_callback is so
that m_config_notify... doesn't trigger recursion, and it's used in
cases where the change was already "processed". It's still needed to
trigger libmpv property updates. (I considered using an extra
m_config_cache for that, but it'd only cause problems with no
advantages.)
I think the recent changes actually forgot to send libmpv property
updates in some cases. This should fix this anyway. In some cases,
property updates are reworked, and the potential for bugs should be
lower (probably).
The primary point of this change is to allow external updates, for
example by a VO writing the fullscreen option if the window state is
changed by the window manager (rather than mpv changing it). This is not
used yet, but the following commits will.
2019-11-29 11:49:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ptr doesn't point to any config->optstruct field declared in the
|
|
|
|
// option list?
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
|
2020-01-04 20:12:29 +00:00
|
|
|
void m_config_notify_change_opt_ptr(struct m_config *config, void *ptr)
|
|
|
|
{
|
|
|
|
notify_opt(config, ptr, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void m_config_notify_change_opt_ptr_notify(struct m_config *config, void *ptr)
|
|
|
|
{
|
|
|
|
// (the notify bool is inverted: by not marking it as self-notification,
|
|
|
|
// the mpctx option change handler actually applies it)
|
|
|
|
notify_opt(config, ptr, false);
|
|
|
|
}
|
|
|
|
|
2019-11-25 19:25:20 +00:00
|
|
|
int m_config_set_option_raw(struct m_config *config,
|
|
|
|
struct m_config_option *co,
|
|
|
|
void *data, int flags)
|
2014-05-18 16:57:02 +00:00
|
|
|
{
|
|
|
|
if (!co)
|
|
|
|
return M_OPT_UNKNOWN;
|
|
|
|
|
|
|
|
int r = handle_set_opt_flags(config, co, flags);
|
|
|
|
if (r <= 1)
|
|
|
|
return r;
|
|
|
|
|
options: make mess to allow setting profile option with libmpv
Certain options, such as --profile, --help, and many others require
special-handling, because they don't fit conceptually into the option
and property model. They don't store data, but perform actions.
This caused the situation that profiles could not be set when using
libmpv in encoding mode (although you should probably not used libmpv in
encoding mode). Using libmpv always ends up in calling
m_config_set_option_raw_direct(), while --profile was handled in
m_config_parse_option().
Solve this by moving the handling of this from m_config_parse_option()
to m_config_set_option_raw_direct(). Actually we just stuff most of this
into m_config_handle_special_options(), which is only called by the
aforementioned function.
Strangely this also means that the --h/--help option declarations need
to be changed, because they used OPT_PRINT, and now the option "parser"
is always invoked before the special code. Thus, make them a string.
Them being OPT_PRINT was apparently always redundant. (The other option
declarations are moved for cosmetic purposes only.)
The most weird change is how co->data==NULL is handled. We now allow
passing down involved options to m_config_set_option_raw_direct(). The
thing is that we don't want them to error if the command line parser is
using them (with special handling done there), while all other code
paths should raise an error. We try using M_SETOPT_FROM_CMDLINE to
distinguish these cases.
Note that normal libmpv users are supposed to use the "apply-profile"
command instead.
This probably contains a bunch of bugs, which you should report.
2017-06-15 13:15:05 +00:00
|
|
|
r = m_config_handle_special_options(config, co, data, flags);
|
|
|
|
if (r != M_OPT_UNKNOWN)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
// This affects some special options like "playlist", "v". Maybe these
|
|
|
|
// should work, or maybe not. For now they would require special code.
|
|
|
|
if (!co->data)
|
|
|
|
return flags & M_SETOPT_FROM_CMDLINE ? 0 : M_OPT_UNKNOWN;
|
|
|
|
|
2020-08-07 17:39:46 +00:00
|
|
|
if (config->profile_backup_tmp)
|
|
|
|
ensure_backup(config->profile_backup_tmp, config->profile_backup_flags, co);
|
|
|
|
|
2016-09-23 19:04:20 +00:00
|
|
|
m_config_mark_co_flags(co, flags);
|
player: change m_config to use new option handling mechanisms
Instead of making m_config a special-case, it more or less uses the
underlying m_config_cache/m_config_shadow APIs properly. This makes the
player core a (relatively) equivalent user of the core option API. In
particular, this means that other threads can change core options with
m_config_cache_write_opt() calls (before this commit, this merely led to
diverging option values).
An important change is that before this commit, mpctx->opts contained
the "master copy" of all option data. Now it's just another copy of the
option data, and the shadow copy is considered the master. This is why
whenever mpctx->opts is written, the change needs to be copied to the
master (thus why this commits add a bunch of m_config_notify... calls).
If another thread (e.g. a VO) changes an option, async_change_cb is now
invoked, which funnels the change notification through the player's
layers.
The new self_notification parameter on mp_option_change_callback is so
that m_config_notify... doesn't trigger recursion, and it's used in
cases where the change was already "processed". It's still needed to
trigger libmpv property updates. (I considered using an extra
m_config_cache for that, but it'd only cause problems with no
advantages.)
I think the recent changes actually forgot to send libmpv property
updates in some cases. This should fix this anyway. In some cases,
property updates are reworked, and the potential for bugs should be
lower (probably).
The primary point of this change is to allow external updates, for
example by a VO writing the fullscreen option if the window state is
changed by the window manager (rather than mpv changing it). This is not
used yet, but the following commits will.
2019-11-29 11:49:15 +00:00
|
|
|
|
|
|
|
m_option_copy(co->opt, co->data, data);
|
|
|
|
if (m_config_cache_write_opt(config->cache, co->data))
|
|
|
|
force_self_notify_change_opt(config, co, false);
|
2016-09-17 15:47:22 +00:00
|
|
|
|
2014-05-18 16:57:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-26 19:07:00 +00:00
|
|
|
// Handle CLI exceptions to option handling.
|
2016-08-31 14:45:58 +00:00
|
|
|
// Used to turn "--no-foo" into "--foo=no".
|
2017-06-26 19:07:00 +00:00
|
|
|
// It also handles looking up "--vf-add" as "--vf".
|
|
|
|
static struct m_config_option *m_config_mogrify_cli_opt(struct m_config *config,
|
|
|
|
struct bstr *name,
|
|
|
|
bool *out_negate,
|
|
|
|
int *out_add_flags)
|
2016-08-31 14:45:58 +00:00
|
|
|
{
|
2017-06-26 19:07:00 +00:00
|
|
|
*out_negate = false;
|
|
|
|
*out_add_flags = 0;
|
2016-08-31 14:45:58 +00:00
|
|
|
|
|
|
|
struct m_config_option *co = m_config_get_co(config, *name);
|
2017-06-26 19:07:00 +00:00
|
|
|
if (co)
|
|
|
|
return co;
|
2016-08-31 14:45:58 +00:00
|
|
|
|
2017-06-26 19:07:00 +00:00
|
|
|
// Turn "--no-foo" into "foo" + set *out_negate.
|
2018-02-13 02:16:29 +00:00
|
|
|
bstr no_name = *name;
|
|
|
|
if (!co && bstr_eatstart0(&no_name, "no-")) {
|
|
|
|
co = m_config_get_co(config, no_name);
|
2016-08-31 14:45:58 +00:00
|
|
|
|
2017-06-26 19:07:00 +00:00
|
|
|
// Not all choice types have this value - if they don't, then parsing
|
|
|
|
// them will simply result in an error. Good enough.
|
2018-02-13 02:16:29 +00:00
|
|
|
if (!co || !(co->opt->type->flags & M_OPT_TYPE_CHOICE))
|
2017-06-26 19:07:00 +00:00
|
|
|
return NULL;
|
|
|
|
|
2018-02-13 02:16:29 +00:00
|
|
|
*name = no_name;
|
2017-06-26 19:07:00 +00:00
|
|
|
*out_negate = true;
|
|
|
|
return co;
|
|
|
|
}
|
|
|
|
|
2017-07-02 14:26:41 +00:00
|
|
|
// Resolve CLI alias. (We don't allow you to combine them with "--no-".)
|
2017-09-22 09:31:03 +00:00
|
|
|
co = m_config_get_co_any(config, *name);
|
2017-07-02 14:26:41 +00:00
|
|
|
if (co && co->opt->type == &m_option_type_cli_alias)
|
|
|
|
*name = bstr0((char *)co->opt->priv);
|
|
|
|
|
2017-06-26 19:07:00 +00:00
|
|
|
// Might be a suffix "action", like "--vf-add". Expensively check for
|
2017-07-02 14:26:41 +00:00
|
|
|
// matches. (We don't allow you to combine them with "--no-".)
|
2017-06-26 19:07:00 +00:00
|
|
|
for (int n = 0; n < config->num_opts; n++) {
|
|
|
|
co = &config->opts[n];
|
2017-09-22 09:31:23 +00:00
|
|
|
struct bstr basename = bstr0(co->name);
|
2017-06-26 19:07:00 +00:00
|
|
|
|
2017-09-22 09:31:23 +00:00
|
|
|
if (!bstr_startswith(*name, basename))
|
2017-06-26 19:07:00 +00:00
|
|
|
continue;
|
|
|
|
|
2017-09-22 09:31:03 +00:00
|
|
|
// Aliased option + a suffix action, e.g. --opengl-shaders-append
|
|
|
|
if (co->opt->type == &m_option_type_alias)
|
2017-09-22 09:31:23 +00:00
|
|
|
co = m_config_get_co_any(config, basename);
|
2017-09-22 09:31:03 +00:00
|
|
|
if (!co)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const struct m_option_type *type = co->opt->type;
|
2017-06-26 19:07:00 +00:00
|
|
|
for (int i = 0; type->actions && type->actions[i].name; i++) {
|
|
|
|
const struct m_option_action *action = &type->actions[i];
|
|
|
|
bstr suffix = bstr0(action->name);
|
|
|
|
|
|
|
|
if (bstr_endswith(*name, suffix) &&
|
2017-09-22 09:31:23 +00:00
|
|
|
(name->len == basename.len + 1 + suffix.len) &&
|
|
|
|
name->start[basename.len] == '-')
|
2017-06-26 19:07:00 +00:00
|
|
|
{
|
|
|
|
*out_add_flags = action->flags;
|
|
|
|
return co;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2016-08-31 14:45:58 +00:00
|
|
|
}
|
|
|
|
|
2017-07-02 11:00:22 +00:00
|
|
|
int m_config_set_option_cli(struct m_config *config, struct bstr name,
|
|
|
|
struct bstr param, int flags)
|
2011-07-05 19:31:44 +00:00
|
|
|
{
|
2017-07-02 11:00:22 +00:00
|
|
|
int r;
|
2011-07-05 19:31:44 +00:00
|
|
|
assert(config != NULL);
|
|
|
|
|
2017-06-26 19:07:00 +00:00
|
|
|
bool negate;
|
|
|
|
struct m_config_option *co =
|
|
|
|
m_config_mogrify_cli_opt(config, &name, &negate, &(int){0});
|
|
|
|
|
2017-07-02 11:00:22 +00:00
|
|
|
if (!co) {
|
|
|
|
r = M_OPT_UNKNOWN;
|
|
|
|
goto done;
|
|
|
|
}
|
2016-08-31 14:45:58 +00:00
|
|
|
|
2017-06-26 19:07:00 +00:00
|
|
|
if (negate) {
|
2017-07-02 11:00:22 +00:00
|
|
|
if (param.len) {
|
|
|
|
r = M_OPT_DISALLOW_PARAM;
|
|
|
|
goto done;
|
|
|
|
}
|
2016-08-31 14:45:58 +00:00
|
|
|
|
|
|
|
param = bstr0("no");
|
|
|
|
}
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
// This is the only mandatory function
|
|
|
|
assert(co->opt->type->parse);
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2017-07-02 11:00:22 +00:00
|
|
|
r = handle_set_opt_flags(config, co, flags);
|
2014-05-18 16:57:02 +00:00
|
|
|
if (r <= 0)
|
2017-07-02 11:00:22 +00:00
|
|
|
goto done;
|
2013-10-25 20:52:54 +00:00
|
|
|
|
2017-07-02 11:00:22 +00:00
|
|
|
if (r == 2) {
|
2019-11-01 00:29:30 +00:00
|
|
|
MP_VERBOSE(config, "Setting option '%.*s' = '%.*s' (flags = %d)\n",
|
|
|
|
BSTR_P(name), BSTR_P(param), flags);
|
2013-12-23 16:30:19 +00:00
|
|
|
}
|
|
|
|
|
2023-10-22 17:38:58 +00:00
|
|
|
union m_option_value val = m_option_value_default;
|
2016-09-17 15:47:22 +00:00
|
|
|
|
2016-11-29 14:18:40 +00:00
|
|
|
// Some option types are "impure" and work on the existing data.
|
2016-09-17 15:47:22 +00:00
|
|
|
// (Prime examples: --vf-add, --sub-file)
|
|
|
|
if (co->data)
|
|
|
|
m_option_copy(co->opt, &val, co->data);
|
|
|
|
|
|
|
|
r = m_option_parse(config->log, co->opt, name, param, &val);
|
|
|
|
|
options: make mess to allow setting profile option with libmpv
Certain options, such as --profile, --help, and many others require
special-handling, because they don't fit conceptually into the option
and property model. They don't store data, but perform actions.
This caused the situation that profiles could not be set when using
libmpv in encoding mode (although you should probably not used libmpv in
encoding mode). Using libmpv always ends up in calling
m_config_set_option_raw_direct(), while --profile was handled in
m_config_parse_option().
Solve this by moving the handling of this from m_config_parse_option()
to m_config_set_option_raw_direct(). Actually we just stuff most of this
into m_config_handle_special_options(), which is only called by the
aforementioned function.
Strangely this also means that the --h/--help option declarations need
to be changed, because they used OPT_PRINT, and now the option "parser"
is always invoked before the special code. Thus, make them a string.
Them being OPT_PRINT was apparently always redundant. (The other option
declarations are moved for cosmetic purposes only.)
The most weird change is how co->data==NULL is handled. We now allow
passing down involved options to m_config_set_option_raw_direct(). The
thing is that we don't want them to error if the command line parser is
using them (with special handling done there), while all other code
paths should raise an error. We try using M_SETOPT_FROM_CMDLINE to
distinguish these cases.
Note that normal libmpv users are supposed to use the "apply-profile"
command instead.
This probably contains a bunch of bugs, which you should report.
2017-06-15 13:15:05 +00:00
|
|
|
if (r >= 0)
|
2016-09-17 15:47:22 +00:00
|
|
|
r = m_config_set_option_raw(config, co, &val, flags);
|
2014-05-18 16:57:02 +00:00
|
|
|
|
2016-09-17 15:47:22 +00:00
|
|
|
m_option_free(co->opt, &val);
|
2013-10-25 20:52:54 +00:00
|
|
|
|
2017-07-02 11:00:22 +00:00
|
|
|
done:
|
2016-09-17 16:07:40 +00:00
|
|
|
if (r < 0 && r != M_OPT_EXIT) {
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_ERR(config, "Error parsing option %.*s (%s)\n",
|
|
|
|
BSTR_P(name), m_option_strerror(r));
|
2012-09-21 07:22:25 +00:00
|
|
|
r = M_OPT_INVALID;
|
2011-07-05 19:31:44 +00:00
|
|
|
}
|
|
|
|
return r;
|
2002-11-12 01:56:42 +00:00
|
|
|
}
|
|
|
|
|
2014-02-24 19:39:51 +00:00
|
|
|
int m_config_set_option_node(struct m_config *config, bstr name,
|
2014-05-18 16:57:02 +00:00
|
|
|
struct mpv_node *data, int flags)
|
2014-02-24 19:39:51 +00:00
|
|
|
{
|
|
|
|
int r;
|
client API: make mpv_set_option set options natively
This should fix some issues, such as not being able to set the
"no-video" option with MPV_FORMAT_FLAG.
Note that this changes semantics a bit. Now setting an option strictly
overwrite it, even if the corresponding command line option does not.
For example, if we change --sub to append by default, then setting the
"sub" option via the client API would still never append. (Oddly, this
also applies to --vf-add, which will overwrite the old value when using
the client API.)
I'm doing this because there's no proper separation between the command
line parser and setting an option using the MPV_FORMAT_STRING format.
Maybe the solution to this mess would be adding format aware code (i.e.
m_option_set_node) to every option type, and falling back to strings
only if needed - but this would mean that you couldn't set e.g. an
integer option using MPV_FORMAT_STRING, which doesn't seem to be ideal
either.
In conclusion, the current approach seems to be most robust, but I'm
open to suggestions should someone find that these semantics are a
problem.
2014-04-21 21:52:14 +00:00
|
|
|
|
2016-08-31 14:45:58 +00:00
|
|
|
struct m_config_option *co = m_config_get_co(config, name);
|
2017-07-21 18:09:22 +00:00
|
|
|
if (!co)
|
|
|
|
return M_OPT_UNKNOWN;
|
2016-08-31 14:45:58 +00:00
|
|
|
|
client API: make mpv_set_option set options natively
This should fix some issues, such as not being able to set the
"no-video" option with MPV_FORMAT_FLAG.
Note that this changes semantics a bit. Now setting an option strictly
overwrite it, even if the corresponding command line option does not.
For example, if we change --sub to append by default, then setting the
"sub" option via the client API would still never append. (Oddly, this
also applies to --vf-add, which will overwrite the old value when using
the client API.)
I'm doing this because there's no proper separation between the command
line parser and setting an option using the MPV_FORMAT_STRING format.
Maybe the solution to this mess would be adding format aware code (i.e.
m_option_set_node) to every option type, and falling back to strings
only if needed - but this would mean that you couldn't set e.g. an
integer option using MPV_FORMAT_STRING, which doesn't seem to be ideal
either.
In conclusion, the current approach seems to be most robust, but I'm
open to suggestions should someone find that these semantics are a
problem.
2014-04-21 21:52:14 +00:00
|
|
|
// Do this on an "empty" type to make setting the option strictly overwrite
|
|
|
|
// the old value, as opposed to e.g. appending to lists.
|
2023-10-22 17:38:58 +00:00
|
|
|
union m_option_value val = m_option_value_default;
|
client API: make mpv_set_option set options natively
This should fix some issues, such as not being able to set the
"no-video" option with MPV_FORMAT_FLAG.
Note that this changes semantics a bit. Now setting an option strictly
overwrite it, even if the corresponding command line option does not.
For example, if we change --sub to append by default, then setting the
"sub" option via the client API would still never append. (Oddly, this
also applies to --vf-add, which will overwrite the old value when using
the client API.)
I'm doing this because there's no proper separation between the command
line parser and setting an option using the MPV_FORMAT_STRING format.
Maybe the solution to this mess would be adding format aware code (i.e.
m_option_set_node) to every option type, and falling back to strings
only if needed - but this would mean that you couldn't set e.g. an
integer option using MPV_FORMAT_STRING, which doesn't seem to be ideal
either.
In conclusion, the current approach seems to be most robust, but I'm
open to suggestions should someone find that these semantics are a
problem.
2014-04-21 21:52:14 +00:00
|
|
|
|
|
|
|
if (data->format == MPV_FORMAT_STRING) {
|
|
|
|
bstr param = bstr0(data->u.string);
|
|
|
|
r = m_option_parse(mp_null_log, co->opt, name, param, &val);
|
2014-02-24 19:39:51 +00:00
|
|
|
} else {
|
client API: make mpv_set_option set options natively
This should fix some issues, such as not being able to set the
"no-video" option with MPV_FORMAT_FLAG.
Note that this changes semantics a bit. Now setting an option strictly
overwrite it, even if the corresponding command line option does not.
For example, if we change --sub to append by default, then setting the
"sub" option via the client API would still never append. (Oddly, this
also applies to --vf-add, which will overwrite the old value when using
the client API.)
I'm doing this because there's no proper separation between the command
line parser and setting an option using the MPV_FORMAT_STRING format.
Maybe the solution to this mess would be adding format aware code (i.e.
m_option_set_node) to every option type, and falling back to strings
only if needed - but this would mean that you couldn't set e.g. an
integer option using MPV_FORMAT_STRING, which doesn't seem to be ideal
either.
In conclusion, the current approach seems to be most robust, but I'm
open to suggestions should someone find that these semantics are a
problem.
2014-04-21 21:52:14 +00:00
|
|
|
r = m_option_set_node(co->opt, &val, data);
|
2014-02-24 19:39:51 +00:00
|
|
|
}
|
client API: make mpv_set_option set options natively
This should fix some issues, such as not being able to set the
"no-video" option with MPV_FORMAT_FLAG.
Note that this changes semantics a bit. Now setting an option strictly
overwrite it, even if the corresponding command line option does not.
For example, if we change --sub to append by default, then setting the
"sub" option via the client API would still never append. (Oddly, this
also applies to --vf-add, which will overwrite the old value when using
the client API.)
I'm doing this because there's no proper separation between the command
line parser and setting an option using the MPV_FORMAT_STRING format.
Maybe the solution to this mess would be adding format aware code (i.e.
m_option_set_node) to every option type, and falling back to strings
only if needed - but this would mean that you couldn't set e.g. an
integer option using MPV_FORMAT_STRING, which doesn't seem to be ideal
either.
In conclusion, the current approach seems to be most robust, but I'm
open to suggestions should someone find that these semantics are a
problem.
2014-04-21 21:52:14 +00:00
|
|
|
|
|
|
|
if (r >= 0)
|
2014-05-18 16:57:02 +00:00
|
|
|
r = m_config_set_option_raw(config, co, &val, flags);
|
client API: make mpv_set_option set options natively
This should fix some issues, such as not being able to set the
"no-video" option with MPV_FORMAT_FLAG.
Note that this changes semantics a bit. Now setting an option strictly
overwrite it, even if the corresponding command line option does not.
For example, if we change --sub to append by default, then setting the
"sub" option via the client API would still never append. (Oddly, this
also applies to --vf-add, which will overwrite the old value when using
the client API.)
I'm doing this because there's no proper separation between the command
line parser and setting an option using the MPV_FORMAT_STRING format.
Maybe the solution to this mess would be adding format aware code (i.e.
m_option_set_node) to every option type, and falling back to strings
only if needed - but this would mean that you couldn't set e.g. an
integer option using MPV_FORMAT_STRING, which doesn't seem to be ideal
either.
In conclusion, the current approach seems to be most robust, but I'm
open to suggestions should someone find that these semantics are a
problem.
2014-04-21 21:52:14 +00:00
|
|
|
|
2015-02-16 19:04:31 +00:00
|
|
|
if (mp_msg_test(config->log, MSGL_V)) {
|
|
|
|
char *s = m_option_type_node.print(NULL, data);
|
2017-09-28 09:53:57 +00:00
|
|
|
MP_DBG(config, "Setting option '%.*s' = %s (flags = %d) -> %d\n",
|
|
|
|
BSTR_P(name), s ? s : "?", flags, r);
|
2015-02-16 19:04:31 +00:00
|
|
|
talloc_free(s);
|
|
|
|
}
|
|
|
|
|
client API: make mpv_set_option set options natively
This should fix some issues, such as not being able to set the
"no-video" option with MPV_FORMAT_FLAG.
Note that this changes semantics a bit. Now setting an option strictly
overwrite it, even if the corresponding command line option does not.
For example, if we change --sub to append by default, then setting the
"sub" option via the client API would still never append. (Oddly, this
also applies to --vf-add, which will overwrite the old value when using
the client API.)
I'm doing this because there's no proper separation between the command
line parser and setting an option using the MPV_FORMAT_STRING format.
Maybe the solution to this mess would be adding format aware code (i.e.
m_option_set_node) to every option type, and falling back to strings
only if needed - but this would mean that you couldn't set e.g. an
integer option using MPV_FORMAT_STRING, which doesn't seem to be ideal
either.
In conclusion, the current approach seems to be most robust, but I'm
open to suggestions should someone find that these semantics are a
problem.
2014-04-21 21:52:14 +00:00
|
|
|
m_option_free(co->opt, &val);
|
2014-02-24 19:39:51 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
options: change handling of "no-" options yet again
Commit 4a40eed "options: change handling of "no-" options" generally
improved the handling of automatically added negation options
(recognizing "--no-opt", even though only "--opt" is declared in the
option list).
Unfortunately, one corner case was missed, which broke the option
"--input=no-default-bindings" (other suboptions, e.g. VO suboptions,
were not affected, and this is the only option where this mattered).
Instead of increasing the complexity further, use a completely different
approach: add the "--no-" options at runtime, and make them behave like
real options. This approach could be considered slightly less elegant,
because the code now has to worry about some option implementation
details rather than leaving it to the parser, but all in all the new
code is simpler and there are less weird corner cases to worry about.
2013-02-16 18:57:57 +00:00
|
|
|
int m_config_option_requires_param(struct m_config *config, bstr name)
|
2012-09-20 01:32:01 +00:00
|
|
|
{
|
2017-06-26 19:07:00 +00:00
|
|
|
bool negate;
|
|
|
|
int flags;
|
|
|
|
struct m_config_option *co =
|
|
|
|
m_config_mogrify_cli_opt(config, &name, &negate, &flags);
|
|
|
|
|
2016-08-31 20:22:02 +00:00
|
|
|
if (!co)
|
2017-06-26 19:07:00 +00:00
|
|
|
return M_OPT_UNKNOWN;
|
|
|
|
|
|
|
|
if (negate || (flags & M_OPT_TYPE_OPTIONAL_PARAM))
|
2016-08-31 20:22:02 +00:00
|
|
|
return 0;
|
2017-06-26 19:07:00 +00:00
|
|
|
|
2016-08-31 20:22:02 +00:00
|
|
|
return m_option_required_params(co->opt);
|
2012-09-20 01:32:01 +00:00
|
|
|
}
|
|
|
|
|
2014-04-10 23:39:30 +00:00
|
|
|
static int sort_opt_compare(const void *pa, const void *pb)
|
|
|
|
{
|
|
|
|
const struct m_config_option *a = pa;
|
|
|
|
const struct m_config_option *b = pb;
|
|
|
|
return strcasecmp(a->name, b->name);
|
|
|
|
}
|
|
|
|
|
2016-09-10 14:29:24 +00:00
|
|
|
void m_config_print_option_list(const struct m_config *config, const char *name)
|
2011-07-05 19:31:44 +00:00
|
|
|
{
|
|
|
|
char min[50], max[50];
|
|
|
|
int count = 0;
|
2013-11-23 20:35:03 +00:00
|
|
|
const char *prefix = config->is_toplevel ? "--" : "";
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2014-04-10 23:39:30 +00:00
|
|
|
struct m_config_option *sorted =
|
|
|
|
talloc_memdup(NULL, config->opts, config->num_opts * sizeof(sorted[0]));
|
2014-04-12 09:38:00 +00:00
|
|
|
if (config->is_toplevel)
|
|
|
|
qsort(sorted, config->num_opts, sizeof(sorted[0]), sort_opt_compare);
|
2014-04-10 23:39:30 +00:00
|
|
|
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, "Options:\n\n");
|
2013-10-24 18:00:00 +00:00
|
|
|
for (int i = 0; i < config->num_opts; i++) {
|
2014-04-10 23:39:30 +00:00
|
|
|
struct m_config_option *co = &sorted[i];
|
2011-07-05 19:31:44 +00:00
|
|
|
const struct m_option *opt = co->opt;
|
2016-12-16 15:09:10 +00:00
|
|
|
if (strcmp(name, "*") != 0 && !strstr(co->name, name))
|
2016-09-10 14:29:24 +00:00
|
|
|
continue;
|
2015-01-06 06:01:07 +00:00
|
|
|
MP_INFO(config, " %s%-30s", prefix, co->name);
|
2013-07-21 18:16:46 +00:00
|
|
|
if (opt->type == &m_option_type_choice) {
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, " Choices:");
|
2021-10-03 17:31:45 +00:00
|
|
|
const struct m_opt_choice_alternatives *alt = opt->priv;
|
2013-07-21 18:16:46 +00:00
|
|
|
for (int n = 0; alt[n].name; n++)
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, " %s", alt[n].name);
|
2020-03-13 15:49:39 +00:00
|
|
|
if (opt->min < opt->max)
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, " (or an integer)");
|
2013-07-21 18:16:46 +00:00
|
|
|
} else {
|
2017-06-27 09:14:06 +00:00
|
|
|
MP_INFO(config, " %s", opt->type->name);
|
2013-07-21 18:16:46 +00:00
|
|
|
}
|
2020-03-13 15:49:39 +00:00
|
|
|
if ((opt->type->flags & M_OPT_TYPE_USES_RANGE) && opt->min < opt->max) {
|
2013-07-21 18:16:46 +00:00
|
|
|
snprintf(min, sizeof(min), "any");
|
|
|
|
snprintf(max, sizeof(max), "any");
|
2020-03-13 15:49:39 +00:00
|
|
|
if (opt->min != DBL_MIN)
|
2013-07-27 19:31:04 +00:00
|
|
|
snprintf(min, sizeof(min), "%.14g", opt->min);
|
2020-03-13 15:49:39 +00:00
|
|
|
if (opt->max != DBL_MAX)
|
2013-07-27 19:31:04 +00:00
|
|
|
snprintf(max, sizeof(max), "%.14g", opt->max);
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, " (%s to %s)", min, max);
|
2013-07-21 18:16:46 +00:00
|
|
|
}
|
2013-10-24 20:20:16 +00:00
|
|
|
char *def = NULL;
|
2018-05-21 11:45:06 +00:00
|
|
|
const void *defptr = m_config_get_co_default(config, co);
|
|
|
|
if (!defptr)
|
2023-10-22 17:38:58 +00:00
|
|
|
defptr = &m_option_value_default;
|
2018-05-21 11:45:06 +00:00
|
|
|
if (defptr)
|
2023-11-19 20:22:24 +00:00
|
|
|
def = m_option_pretty_print(opt, defptr, false);
|
2013-07-27 19:27:08 +00:00
|
|
|
if (def) {
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, " (default: %s)", def);
|
2013-07-27 19:27:08 +00:00
|
|
|
talloc_free(def);
|
|
|
|
}
|
2014-02-26 19:40:28 +00:00
|
|
|
if (opt->flags & M_OPT_NOCFG)
|
2016-09-21 14:19:56 +00:00
|
|
|
MP_INFO(config, " [not in config files]");
|
2014-08-13 21:24:46 +00:00
|
|
|
if (opt->flags & M_OPT_FILE)
|
|
|
|
MP_INFO(config, " [file]");
|
2020-02-04 19:10:38 +00:00
|
|
|
if (opt->deprecation_message)
|
|
|
|
MP_INFO(config, " [deprecated]");
|
2017-07-02 14:26:41 +00:00
|
|
|
if (opt->type == &m_option_type_alias)
|
|
|
|
MP_INFO(config, " for %s", (char *)opt->priv);
|
|
|
|
if (opt->type == &m_option_type_cli_alias)
|
2018-02-13 01:31:29 +00:00
|
|
|
MP_INFO(config, " for --%s (CLI/config files only)", (char *)opt->priv);
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, "\n");
|
2017-06-27 09:14:06 +00:00
|
|
|
for (int n = 0; opt->type->actions && opt->type->actions[n].name; n++) {
|
|
|
|
const struct m_option_action *action = &opt->type->actions[n];
|
|
|
|
MP_INFO(config, " %s%s-%s\n", prefix, co->name, action->name);
|
|
|
|
count++;
|
|
|
|
}
|
2011-07-05 19:31:44 +00:00
|
|
|
count++;
|
|
|
|
}
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, "\nTotal: %d options\n", count);
|
2014-04-10 23:39:30 +00:00
|
|
|
talloc_free(sorted);
|
2002-11-12 01:56:42 +00:00
|
|
|
}
|
2006-01-24 11:16:13 +00:00
|
|
|
|
2014-02-24 20:18:53 +00:00
|
|
|
char **m_config_list_options(void *ta_parent, const struct m_config *config)
|
|
|
|
{
|
|
|
|
char **list = talloc_new(ta_parent);
|
|
|
|
int count = 0;
|
|
|
|
for (int i = 0; i < config->num_opts; i++) {
|
|
|
|
struct m_config_option *co = &config->opts[i];
|
|
|
|
// For use with CONF_TYPE_STRING_LIST, it's important not to set list
|
|
|
|
// as allocation parent.
|
|
|
|
char *s = talloc_strdup(ta_parent, co->name);
|
|
|
|
MP_TARRAY_APPEND(ta_parent, list, count, s);
|
|
|
|
}
|
|
|
|
MP_TARRAY_APPEND(ta_parent, list, count, NULL);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2013-07-27 19:26:00 +00:00
|
|
|
struct m_profile *m_config_get_profile(const struct m_config *config, bstr name)
|
2011-07-05 19:31:44 +00:00
|
|
|
{
|
2013-07-27 19:26:00 +00:00
|
|
|
for (struct m_profile *p = config->profiles; p; p = p->next) {
|
|
|
|
if (bstr_equals0(name, p->name))
|
2011-07-05 19:31:44 +00:00
|
|
|
return p;
|
2013-07-27 19:26:00 +00:00
|
|
|
}
|
2011-07-05 19:31:44 +00:00
|
|
|
return NULL;
|
2006-01-24 11:16:13 +00:00
|
|
|
}
|
|
|
|
|
2013-07-27 19:26:00 +00:00
|
|
|
struct m_profile *m_config_get_profile0(const struct m_config *config,
|
|
|
|
char *name)
|
|
|
|
{
|
|
|
|
return m_config_get_profile(config, bstr0(name));
|
|
|
|
}
|
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
struct m_profile *m_config_add_profile(struct m_config *config, char *name)
|
|
|
|
{
|
2016-09-02 17:24:12 +00:00
|
|
|
if (!name || !name[0])
|
|
|
|
name = "default";
|
2013-07-27 19:26:00 +00:00
|
|
|
struct m_profile *p = m_config_get_profile0(config, name);
|
2011-07-05 19:31:44 +00:00
|
|
|
if (p)
|
|
|
|
return p;
|
|
|
|
p = talloc_zero(config, struct m_profile);
|
|
|
|
p->name = talloc_strdup(p, name);
|
|
|
|
p->next = config->profiles;
|
|
|
|
config->profiles = p;
|
|
|
|
return p;
|
2006-01-24 11:16:13 +00:00
|
|
|
}
|
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
int m_config_set_profile_option(struct m_config *config, struct m_profile *p,
|
2012-09-21 07:22:25 +00:00
|
|
|
bstr name, bstr val)
|
2011-07-05 19:31:44 +00:00
|
|
|
{
|
2020-08-07 17:39:46 +00:00
|
|
|
if (bstr_equals0(name, "profile-desc")) {
|
|
|
|
talloc_free(p->desc);
|
|
|
|
p->desc = bstrto0(p, val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (bstr_equals0(name, "profile-cond")) {
|
|
|
|
TA_FREEP(&p->cond);
|
|
|
|
val = bstr_strip(val);
|
|
|
|
if (val.len)
|
|
|
|
p->cond = bstrto0(p, val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (bstr_equals0(name, profile_restore_mode_opt.name)) {
|
|
|
|
return m_option_parse(config->log, &profile_restore_mode_opt, name, val,
|
|
|
|
&p->restore_mode);
|
|
|
|
}
|
|
|
|
|
2017-07-02 11:00:22 +00:00
|
|
|
int i = m_config_set_option_cli(config, name, val,
|
2012-09-21 07:22:25 +00:00
|
|
|
M_SETOPT_CHECK_ONLY |
|
|
|
|
M_SETOPT_FROM_CONFIG_FILE);
|
2011-07-05 19:31:44 +00:00
|
|
|
if (i < 0)
|
|
|
|
return i;
|
|
|
|
p->opts = talloc_realloc(p, p->opts, char *, 2 * (p->num_opts + 2));
|
2016-09-02 17:00:34 +00:00
|
|
|
p->opts[p->num_opts * 2] = bstrto0(p, name);
|
|
|
|
p->opts[p->num_opts * 2 + 1] = bstrto0(p, val);
|
2011-07-05 19:31:44 +00:00
|
|
|
p->num_opts++;
|
|
|
|
p->opts[p->num_opts * 2] = p->opts[p->num_opts * 2 + 1] = NULL;
|
|
|
|
return 1;
|
2006-01-24 11:16:13 +00:00
|
|
|
}
|
|
|
|
|
2020-08-07 17:39:46 +00:00
|
|
|
static struct m_profile *find_check_profile(struct m_config *config, char *name)
|
2011-07-05 19:31:44 +00:00
|
|
|
{
|
2015-05-07 19:03:14 +00:00
|
|
|
struct m_profile *p = m_config_get_profile0(config, name);
|
|
|
|
if (!p) {
|
|
|
|
MP_WARN(config, "Unknown profile '%s'.\n", name);
|
2020-08-07 17:39:46 +00:00
|
|
|
return NULL;
|
2015-05-07 19:03:14 +00:00
|
|
|
}
|
2011-07-05 19:31:44 +00:00
|
|
|
if (config->profile_depth > MAX_PROFILE_DEPTH) {
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_WARN(config, "WARNING: Profile inclusion too deep.\n");
|
2020-08-07 17:39:46 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
int m_config_set_profile(struct m_config *config, char *name, int flags)
|
|
|
|
{
|
|
|
|
MP_VERBOSE(config, "Applying profile '%s'...\n", name);
|
|
|
|
struct m_profile *p = find_check_profile(config, name);
|
|
|
|
if (!p)
|
options: make mess to allow setting profile option with libmpv
Certain options, such as --profile, --help, and many others require
special-handling, because they don't fit conceptually into the option
and property model. They don't store data, but perform actions.
This caused the situation that profiles could not be set when using
libmpv in encoding mode (although you should probably not used libmpv in
encoding mode). Using libmpv always ends up in calling
m_config_set_option_raw_direct(), while --profile was handled in
m_config_parse_option().
Solve this by moving the handling of this from m_config_parse_option()
to m_config_set_option_raw_direct(). Actually we just stuff most of this
into m_config_handle_special_options(), which is only called by the
aforementioned function.
Strangely this also means that the --h/--help option declarations need
to be changed, because they used OPT_PRINT, and now the option "parser"
is always invoked before the special code. Thus, make them a string.
Them being OPT_PRINT was apparently always redundant. (The other option
declarations are moved for cosmetic purposes only.)
The most weird change is how co->data==NULL is handled. We now allow
passing down involved options to m_config_set_option_raw_direct(). The
thing is that we don't want them to error if the command line parser is
using them (with special handling done there), while all other code
paths should raise an error. We try using M_SETOPT_FROM_CMDLINE to
distinguish these cases.
Note that normal libmpv users are supposed to use the "apply-profile"
command instead.
This probably contains a bunch of bugs, which you should report.
2017-06-15 13:15:05 +00:00
|
|
|
return M_OPT_INVALID;
|
2020-08-07 17:39:46 +00:00
|
|
|
|
|
|
|
if (!config->profile_backup_tmp && p->restore_mode) {
|
|
|
|
config->profile_backup_tmp = &p->backups;
|
|
|
|
config->profile_backup_flags = p->restore_mode == 2 ? BACKUP_NVAL : 0;
|
2011-07-05 19:31:44 +00:00
|
|
|
}
|
2020-08-07 17:39:46 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
config->profile_depth++;
|
2012-09-21 07:22:25 +00:00
|
|
|
for (int i = 0; i < p->num_opts; i++) {
|
2017-07-02 11:00:22 +00:00
|
|
|
m_config_set_option_cli(config,
|
2012-09-21 07:22:25 +00:00
|
|
|
bstr0(p->opts[2 * i]),
|
|
|
|
bstr0(p->opts[2 * i + 1]),
|
2013-08-02 15:59:43 +00:00
|
|
|
flags | M_SETOPT_FROM_CONFIG_FILE);
|
2012-09-21 07:22:25 +00:00
|
|
|
}
|
2011-07-05 19:31:44 +00:00
|
|
|
config->profile_depth--;
|
2015-05-07 19:03:14 +00:00
|
|
|
|
2020-08-07 17:39:46 +00:00
|
|
|
if (config->profile_backup_tmp == &p->backups) {
|
|
|
|
config->profile_backup_tmp = NULL;
|
|
|
|
|
|
|
|
for (struct m_opt_backup *bc = p->backups; bc; bc = bc->next) {
|
|
|
|
if (bc && bc->nval)
|
|
|
|
m_option_copy(bc->co->opt, bc->nval, bc->co->data);
|
|
|
|
talloc_steal(p, bc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int m_config_restore_profile(struct m_config *config, char *name)
|
|
|
|
{
|
|
|
|
MP_VERBOSE(config, "Restoring from profile '%s'...\n", name);
|
|
|
|
struct m_profile *p = find_check_profile(config, name);
|
|
|
|
if (!p)
|
|
|
|
return M_OPT_INVALID;
|
|
|
|
|
|
|
|
if (!p->backups)
|
2022-10-28 07:02:12 +00:00
|
|
|
MP_WARN(config, "Profile '%s' contains no restore data.\n", name);
|
2020-08-07 17:39:46 +00:00
|
|
|
|
|
|
|
restore_backups(&p->backups, config);
|
|
|
|
|
2015-05-07 19:03:14 +00:00
|
|
|
return 0;
|
2006-01-24 11:16:13 +00:00
|
|
|
}
|
2012-08-06 15:45:17 +00:00
|
|
|
|
2016-09-02 17:24:12 +00:00
|
|
|
void m_config_finish_default_profile(struct m_config *config, int flags)
|
|
|
|
{
|
|
|
|
struct m_profile *p = m_config_add_profile(config, NULL);
|
|
|
|
m_config_set_profile(config, p->name, flags);
|
|
|
|
p->num_opts = 0;
|
|
|
|
}
|
|
|
|
|
2016-08-28 17:42:03 +00:00
|
|
|
struct mpv_node m_config_get_profiles(struct m_config *config)
|
|
|
|
{
|
|
|
|
struct mpv_node root;
|
|
|
|
node_init(&root, MPV_FORMAT_NODE_ARRAY, NULL);
|
|
|
|
|
|
|
|
for (m_profile_t *profile = config->profiles; profile; profile = profile->next)
|
|
|
|
{
|
|
|
|
struct mpv_node *entry = node_array_add(&root, MPV_FORMAT_NODE_MAP);
|
|
|
|
|
|
|
|
node_map_add_string(entry, "name", profile->name);
|
|
|
|
if (profile->desc)
|
|
|
|
node_map_add_string(entry, "profile-desc", profile->desc);
|
2020-08-05 20:37:47 +00:00
|
|
|
if (profile->cond)
|
|
|
|
node_map_add_string(entry, "profile-cond", profile->cond);
|
2020-08-07 17:39:46 +00:00
|
|
|
if (profile->restore_mode) {
|
|
|
|
char *s =
|
|
|
|
m_option_print(&profile_restore_mode_opt, &profile->restore_mode);
|
|
|
|
node_map_add_string(entry, profile_restore_mode_opt.name, s);
|
|
|
|
talloc_free(s);
|
|
|
|
}
|
2016-08-28 17:42:03 +00:00
|
|
|
|
|
|
|
struct mpv_node *opts =
|
|
|
|
node_map_add(entry, "options", MPV_FORMAT_NODE_ARRAY);
|
|
|
|
|
|
|
|
for (int n = 0; n < profile->num_opts; n++) {
|
|
|
|
struct mpv_node *opt_entry = node_array_add(opts, MPV_FORMAT_NODE_MAP);
|
|
|
|
node_map_add_string(opt_entry, "key", profile->opts[n * 2 + 0]);
|
2016-09-02 17:00:34 +00:00
|
|
|
node_map_add_string(opt_entry, "value", profile->opts[n * 2 + 1]);
|
2016-08-28 17:42:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return root;
|
|
|
|
}
|