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
|
|
|
|
|
|
|
/// \file
|
|
|
|
/// \ingroup Config
|
|
|
|
|
2002-11-12 01:56:42 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2014-07-10 06:28:03 +00:00
|
|
|
#include <strings.h>
|
2002-11-12 01:56:42 +00:00
|
|
|
#include <assert.h>
|
2011-07-27 17:59:44 +00:00
|
|
|
#include <stdbool.h>
|
2016-09-02 13:45:22 +00:00
|
|
|
#include <pthread.h>
|
2011-07-27 17:59:44 +00:00
|
|
|
|
2014-02-24 19:39:51 +00:00
|
|
|
#include "libmpv/client.h"
|
|
|
|
|
2016-01-11 18:03:40 +00:00
|
|
|
#include "mpv_talloc.h"
|
2002-11-12 01:56:42 +00:00
|
|
|
|
|
|
|
#include "m_config.h"
|
2013-12-17 01:02:25 +00:00
|
|
|
#include "options/m_option.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"
|
2013-12-17 01:39:45 +00:00
|
|
|
#include "common/msg.h"
|
2015-11-04 14:44:37 +00:00
|
|
|
#include "common/msg_control.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"
|
2016-09-07 09:26:25 +00:00
|
|
|
#include "osdep/atomic.h"
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2016-09-10 14:29:24 +00:00
|
|
|
extern const char mp_help_text[];
|
|
|
|
|
2013-10-24 20:20:16 +00:00
|
|
|
static const union m_option_value default_value;
|
|
|
|
|
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
|
|
|
|
2016-09-02 13:45:22 +00:00
|
|
|
// For use with m_config_cache.
|
|
|
|
struct m_config_shadow {
|
|
|
|
struct m_config *root;
|
2018-05-20 18:50:01 +00:00
|
|
|
pthread_mutex_t lock;
|
|
|
|
// -- protected by lock
|
|
|
|
struct m_config_data *data; // protected shadow copy of the option data
|
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
|
|
|
struct m_config_cache **listeners;
|
|
|
|
int num_listeners;
|
2016-09-02 13:45:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Represents a sub-struct (OPT_SUBSTRUCT()).
|
|
|
|
struct m_config_group {
|
2018-05-20 18:50:01 +00:00
|
|
|
const struct m_sub_options *group;
|
|
|
|
int group_count; // 1 + number of all sub groups owned by this (so
|
|
|
|
// m_config.groups[idx..idx+group_count] is used by the
|
|
|
|
// entire tree of sub groups included by this group)
|
|
|
|
int parent_group; // index of parent group into m_config.groups[], or
|
|
|
|
// -1 for group 0
|
|
|
|
int parent_ptr; // ptr offset in the parent group's data, or -1 if
|
|
|
|
// none
|
|
|
|
int co_index; // index of the first group opt into m_config.opts[]
|
|
|
|
int co_end_index; // index of the last group opt + 1 (i.e. exclusive)
|
|
|
|
};
|
|
|
|
|
|
|
|
// A copy of option data. Used for the main option struct, the shadow data,
|
|
|
|
// and copies for m_config_cache.
|
|
|
|
struct m_config_data {
|
|
|
|
struct m_config *root; // root config (with up-to-date data)
|
|
|
|
int group_index; // start index into m_config.groups[]
|
|
|
|
struct m_group_data *gdata; // user struct allocation (our copy of data)
|
|
|
|
int num_gdata; // (group_index+num_gdata = end index)
|
|
|
|
atomic_llong ts; // last change timestamp we've seen
|
|
|
|
};
|
|
|
|
|
|
|
|
// Per m_config_data state for each m_config_group.
|
|
|
|
struct m_group_data {
|
|
|
|
char *udata; // pointer to group user option struct
|
|
|
|
long long ts; // incremented on every write access
|
2016-09-02 13:45:22 +00:00
|
|
|
};
|
|
|
|
|
2013-07-31 18:43:31 +00:00
|
|
|
struct m_profile {
|
|
|
|
struct m_profile *next;
|
|
|
|
char *name;
|
|
|
|
char *desc;
|
|
|
|
int num_opts;
|
|
|
|
// Option/value pair array.
|
|
|
|
char **opts;
|
|
|
|
};
|
|
|
|
|
2013-07-31 18:44:16 +00:00
|
|
|
// In the file local case, this contains the old global value.
|
|
|
|
struct m_opt_backup {
|
|
|
|
struct m_opt_backup *next;
|
|
|
|
struct m_config_option *co;
|
|
|
|
void *backup;
|
|
|
|
};
|
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
static void add_sub_group(struct m_config *config, const char *name_prefix,
|
|
|
|
int parent_group_index, int parent_ptr,
|
|
|
|
const struct m_sub_options *subopts);
|
|
|
|
|
|
|
|
static struct m_group_data *m_config_gdata(struct m_config_data *data,
|
|
|
|
int group_index)
|
|
|
|
{
|
|
|
|
if (group_index < data->group_index ||
|
|
|
|
group_index >= data->group_index + data->num_gdata)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return &data->gdata[group_index - data->group_index];
|
|
|
|
}
|
|
|
|
|
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;
|
2013-07-27 19:26:00 +00:00
|
|
|
if (!param.len)
|
2010-09-27 12:10:59 +00:00
|
|
|
return M_OPT_MISSING_PARAM;
|
|
|
|
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++;
|
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
|
|
|
|
2013-10-24 20:20:16 +00:00
|
|
|
// The memcpys are supposed to work around the strict aliasing violation,
|
2012-08-06 15:45:17 +00:00
|
|
|
// that would result if we just dereferenced a void** (where the void** is
|
2014-09-12 23:26:26 +00:00
|
|
|
// actually casted from struct some_type* ). The dummy struct type is in
|
|
|
|
// theory needed, because void* and struct pointers could have different
|
|
|
|
// representations, while pointers to different struct types don't.
|
2013-10-24 20:20:16 +00:00
|
|
|
static void *substruct_read_ptr(const void *ptr)
|
2008-03-31 03:19:29 +00:00
|
|
|
{
|
2014-09-12 23:26:26 +00:00
|
|
|
struct mp_dummy_ *res;
|
|
|
|
memcpy(&res, ptr, sizeof(res));
|
2012-08-06 15:45:17 +00:00
|
|
|
return res;
|
2008-03-31 03:19:29 +00:00
|
|
|
}
|
2012-08-06 15:45:17 +00:00
|
|
|
static void substruct_write_ptr(void *ptr, void *val)
|
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
|
|
|
{
|
2014-09-12 23:26:26 +00:00
|
|
|
struct mp_dummy_ *src = val;
|
|
|
|
memcpy(ptr, &src, sizeof(src));
|
2008-03-31 03:19:29 +00:00
|
|
|
}
|
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
// Initialize a field with a given value. In case this is dynamic data, it has
|
2018-05-21 12:34:17 +00:00
|
|
|
// to be allocated and copied. src can alias dst.
|
2018-05-20 18:50:01 +00:00
|
|
|
static void init_opt_inplace(const struct m_option *opt, void *dst,
|
|
|
|
const void *src)
|
|
|
|
{
|
2018-05-21 12:34:17 +00:00
|
|
|
// The option will use dynamic memory allocation iff it has a free callback.
|
|
|
|
if (opt->type->free) {
|
|
|
|
union m_option_value temp;
|
2018-05-20 18:50:01 +00:00
|
|
|
memcpy(&temp, src, opt->type->size);
|
2018-05-21 12:34:17 +00:00
|
|
|
memset(dst, 0, opt->type->size);
|
|
|
|
m_option_copy(opt, dst, &temp);
|
|
|
|
} else if (src != dst) {
|
|
|
|
memcpy(dst, src, opt->type->size);
|
|
|
|
}
|
2018-05-20 18:50:01 +00:00
|
|
|
}
|
2013-07-27 19:26:00 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
static void alloc_group(struct m_config_data *data, int group_index,
|
|
|
|
struct m_config_data *copy)
|
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
|
|
|
{
|
2018-05-20 18:50:01 +00:00
|
|
|
assert(group_index == data->group_index + data->num_gdata);
|
|
|
|
assert(group_index < data->root->num_groups);
|
|
|
|
struct m_config_group *group = &data->root->groups[group_index];
|
|
|
|
const struct m_sub_options *opts = group->group;
|
|
|
|
|
|
|
|
MP_TARRAY_GROW(data, data->gdata, data->num_gdata);
|
|
|
|
struct m_group_data *gdata = &data->gdata[data->num_gdata++];
|
2016-09-02 13:45:22 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
struct m_group_data *copy_gdata =
|
|
|
|
copy ? m_config_gdata(copy, group_index) : NULL;
|
2016-09-02 13:45:22 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
*gdata = (struct m_group_data){
|
|
|
|
.udata = talloc_zero_size(data, opts->size),
|
|
|
|
.ts = copy_gdata ? copy_gdata->ts : 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (opts->defaults)
|
|
|
|
memcpy(gdata->udata, opts->defaults, opts->size);
|
|
|
|
|
|
|
|
char *copy_src = copy_gdata ? copy_gdata->udata : NULL;
|
|
|
|
|
|
|
|
for (int n = group->co_index; n < group->co_end_index; n++) {
|
|
|
|
assert(n >= 0 && n < data->root->num_opts);
|
|
|
|
struct m_config_option *co = &data->root->opts[n];
|
|
|
|
|
|
|
|
if (co->opt->offset < 0 || co->opt->type->size == 0)
|
|
|
|
continue;
|
|
|
|
|
2018-05-21 11:45:06 +00:00
|
|
|
void *dst = gdata->udata + co->opt->offset;
|
|
|
|
const void *defptr = co->opt->defval ? co->opt->defval : dst;
|
2018-05-20 18:50:01 +00:00
|
|
|
if (copy_src)
|
|
|
|
defptr = copy_src + co->opt->offset;
|
|
|
|
|
2018-05-21 11:45:06 +00:00
|
|
|
init_opt_inplace(co->opt, dst, defptr);
|
2018-05-20 18:50:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If there's a parent, update its pointer to the new struct.
|
|
|
|
if (group->parent_group >= data->group_index && group->parent_ptr >= 0) {
|
|
|
|
struct m_group_data *parent_gdata =
|
|
|
|
m_config_gdata(data, group->parent_group);
|
|
|
|
assert(parent_gdata);
|
|
|
|
|
|
|
|
substruct_write_ptr(parent_gdata->udata + group->parent_ptr, gdata->udata);
|
2016-09-02 13:45:22 +00:00
|
|
|
}
|
2018-05-20 18:50:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void free_option_data(void *p)
|
|
|
|
{
|
|
|
|
struct m_config_data *data = p;
|
|
|
|
|
|
|
|
for (int i = 0; i < data->num_gdata; i++) {
|
|
|
|
struct m_group_data *gdata = &data->gdata[i];
|
|
|
|
struct m_config_group *group = &data->root->groups[data->group_index + i];
|
|
|
|
|
|
|
|
for (int n = group->co_index; n < group->co_end_index; n++) {
|
|
|
|
struct m_config_option *co = &data->root->opts[n];
|
|
|
|
|
|
|
|
if (co->opt->offset >= 0 && co->opt->type->size > 0)
|
|
|
|
m_option_free(co->opt, gdata->udata + co->opt->offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allocate data using the option description in root, starting at group_index
|
|
|
|
// (index into m_config.groups[]).
|
|
|
|
// If copy is not NULL, copy all data from there (for groups which are in both
|
|
|
|
// m_config_data instances), in all other cases init the data with the defaults.
|
|
|
|
static struct m_config_data *allocate_option_data(void *ta_parent,
|
|
|
|
struct m_config *root,
|
|
|
|
int group_index,
|
|
|
|
struct m_config_data *copy)
|
|
|
|
{
|
|
|
|
assert(group_index >= 0 && group_index < root->num_groups);
|
|
|
|
struct m_config_data *data = talloc_zero(ta_parent, struct m_config_data);
|
|
|
|
talloc_set_destructor(data, free_option_data);
|
|
|
|
|
|
|
|
data->root = root;
|
|
|
|
data->group_index = group_index;
|
|
|
|
|
|
|
|
struct m_config_group *root_group = &root->groups[group_index];
|
|
|
|
assert(root_group->group_count > 0);
|
|
|
|
|
|
|
|
for (int n = group_index; n < group_index + root_group->group_count; n++)
|
|
|
|
alloc_group(data, n, copy);
|
|
|
|
|
|
|
|
if (copy)
|
|
|
|
data->ts = copy->ts;
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void config_destroy(void *p)
|
|
|
|
{
|
|
|
|
struct m_config *config = p;
|
|
|
|
m_config_restore_backups(config);
|
2016-09-02 13:45:22 +00:00
|
|
|
|
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
|
|
|
if (config->shadow) {
|
|
|
|
// must all have been unregistered
|
|
|
|
assert(config->shadow->num_listeners == 0);
|
2016-09-02 13:45:22 +00:00
|
|
|
pthread_mutex_destroy(&config->shadow->lock);
|
2018-05-20 18:50:01 +00:00
|
|
|
talloc_free(config->shadow);
|
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
|
|
|
}
|
2018-05-20 18:50:01 +00:00
|
|
|
|
|
|
|
talloc_free(config->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
|
|
|
}
|
|
|
|
|
2013-12-21 18:45:42 +00:00
|
|
|
struct m_config *m_config_new(void *talloc_ctx, struct mp_log *log,
|
|
|
|
size_t size, const void *defaults,
|
2013-10-24 20:20:16 +00:00
|
|
|
const struct m_option *options)
|
2012-08-04 09:33:24 +00:00
|
|
|
{
|
2013-11-01 16:33:11 +00:00
|
|
|
struct m_config *config = talloc(talloc_ctx, struct m_config);
|
2012-08-04 09:33:24 +00:00
|
|
|
talloc_set_destructor(config, config_destroy);
|
2018-05-20 22:11:48 +00:00
|
|
|
*config = (struct m_config){.log = log,};
|
2016-09-02 13:45:22 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
struct m_sub_options *subopts = talloc_ptrtype(config, subopts);
|
|
|
|
*subopts = (struct m_sub_options){
|
|
|
|
.opts = options,
|
|
|
|
.size = size,
|
|
|
|
.defaults = defaults,
|
2016-09-02 13:45:22 +00:00
|
|
|
};
|
2018-05-20 18:50:01 +00:00
|
|
|
add_sub_group(config, NULL, -1, -1, subopts);
|
|
|
|
|
|
|
|
if (!size)
|
|
|
|
return config;
|
|
|
|
|
|
|
|
config->data = allocate_option_data(config, config, 0, NULL);
|
|
|
|
config->optstruct = config->data->gdata[0].udata;
|
|
|
|
|
|
|
|
for (int n = 0; n < config->num_opts; n++) {
|
|
|
|
struct m_config_option *co = &config->opts[n];
|
|
|
|
struct m_group_data *gdata = m_config_gdata(config->data, co->group_index);
|
|
|
|
if (gdata && co->opt->offset >= 0)
|
|
|
|
co->data = gdata->udata + co->opt->offset;
|
|
|
|
}
|
2016-09-02 13:45:22 +00:00
|
|
|
|
2012-08-04 09:33:24 +00:00
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2018-01-12 03:02:55 +00:00
|
|
|
struct m_config *c =
|
|
|
|
m_config_new(talloc_ctx, log, desc->priv_size, desc->priv_defaults,
|
|
|
|
desc->options);
|
|
|
|
c->global = global;
|
|
|
|
if (desc->set_defaults && c->global)
|
|
|
|
desc->set_defaults(c->global, c->optstruct);
|
|
|
|
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-10-25 13:31:47 +00:00
|
|
|
// Like m_config_from_obj_desc(), but don't allocate option struct.
|
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)
|
|
|
|
{
|
2013-12-21 18:45:42 +00:00
|
|
|
return m_config_new(talloc_ctx, log, 0, desc->priv_defaults, desc->options);
|
2013-10-25 13:31:47 +00:00
|
|
|
}
|
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
static const struct m_config_group *find_group(struct mpv_global *global,
|
|
|
|
const struct m_option *cfg)
|
2016-11-25 20:00:39 +00:00
|
|
|
{
|
|
|
|
struct m_config_shadow *shadow = global->config;
|
|
|
|
struct m_config *root = shadow->root;
|
|
|
|
|
|
|
|
for (int n = 0; n < root->num_groups; n++) {
|
2018-05-20 18:50:01 +00:00
|
|
|
if (root->groups[n].group->opts == cfg)
|
2016-11-25 20:00:39 +00:00
|
|
|
return &root->groups[n];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allocate a priv struct that is backed by global options (like AOs and VOs,
|
|
|
|
// anything that uses m_obj_list.use_global_options == true).
|
|
|
|
// The result contains a snapshot of the current option values of desc->options.
|
|
|
|
// For convenience, desc->options can be NULL; then priv struct is allocated
|
|
|
|
// with just zero (or priv_defaults if set).
|
|
|
|
void *m_config_group_from_desc(void *ta_parent, struct mp_log *log,
|
|
|
|
struct mpv_global *global, struct m_obj_desc *desc, const char *name)
|
|
|
|
{
|
2018-05-20 18:50:01 +00:00
|
|
|
const struct m_config_group *group = find_group(global, desc->options);
|
2016-11-25 20:00:39 +00:00
|
|
|
if (group) {
|
|
|
|
return mp_get_config_group(ta_parent, global, group->group);
|
|
|
|
} else {
|
|
|
|
void *d = talloc_zero_size(ta_parent, desc->priv_size);
|
|
|
|
if (desc->priv_defaults)
|
|
|
|
memcpy(d, desc->priv_defaults, desc->priv_size);
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
const char *name, struct m_obj_settings *defaults, 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-02 13:59:40 +00:00
|
|
|
|
2013-11-30 23:12:10 +00:00
|
|
|
for (int n = 0; defaults && defaults[n].name; n++) {
|
|
|
|
struct m_obj_settings *entry = &defaults[n];
|
|
|
|
if (name && strcmp(entry->name, name) == 0) {
|
2016-09-05 19:05:47 +00:00
|
|
|
if (m_config_set_obj_params(config, log, global, desc, entry->attribs) < 0)
|
2016-09-02 13:59:40 +00:00
|
|
|
goto error;
|
2013-11-30 23:12:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
static void ensure_backup(struct m_config *config, 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;
|
2013-07-31 18:44:16 +00:00
|
|
|
for (struct m_opt_backup *cur = config->backup_opts; cur; cur = cur->next) {
|
|
|
|
if (cur->co->data == co->data) // comparing data ptr catches aliases
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct m_opt_backup *bc = talloc_ptrtype(NULL, bc);
|
|
|
|
*bc = (struct m_opt_backup) {
|
|
|
|
.co = co,
|
|
|
|
.backup = talloc_zero_size(bc, co->opt->type->size),
|
|
|
|
};
|
|
|
|
m_option_copy(co->opt, bc->backup, co->data);
|
|
|
|
bc->next = config->backup_opts;
|
|
|
|
config->backup_opts = bc;
|
2015-07-23 20:59:04 +00:00
|
|
|
co->is_set_locally = true;
|
2012-05-17 00:31:11 +00:00
|
|
|
}
|
|
|
|
|
2013-08-02 15:59:43 +00:00
|
|
|
void m_config_restore_backups(struct m_config *config)
|
2011-07-05 19:31:44 +00:00
|
|
|
{
|
2013-07-31 18:44:16 +00:00
|
|
|
while (config->backup_opts) {
|
|
|
|
struct m_opt_backup *bc = config->backup_opts;
|
|
|
|
config->backup_opts = bc->next;
|
|
|
|
|
2016-09-17 15:47:22 +00:00
|
|
|
m_config_set_option_raw(config, bc->co, bc->backup, 0);
|
|
|
|
|
2013-07-31 18:44:16 +00:00
|
|
|
m_option_free(bc->co->opt, bc->backup);
|
2015-07-23 20:59:04 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
ensure_backup(config, co);
|
|
|
|
} 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++)
|
|
|
|
ensure_backup(config, &config->opts[n]);
|
2013-10-24 17:49:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-25 20:00:39 +00:00
|
|
|
static void init_obj_settings_list(struct m_config *config,
|
2018-05-20 18:50:01 +00:00
|
|
|
int parent_group_index,
|
2016-11-25 20:00:39 +00:00
|
|
|
const struct m_obj_list *list)
|
2016-09-05 19:04:17 +00:00
|
|
|
{
|
|
|
|
struct m_obj_desc desc;
|
|
|
|
for (int n = 0; ; n++) {
|
2018-05-20 18:50:01 +00:00
|
|
|
if (!list->get_desc(&desc, n))
|
2016-09-05 19:04:17 +00:00
|
|
|
break;
|
2018-05-20 18:50:01 +00:00
|
|
|
if (desc.global_opts) {
|
|
|
|
add_sub_group(config, NULL, parent_group_index, -1,
|
|
|
|
desc.global_opts);
|
2016-11-25 20:00:39 +00:00
|
|
|
}
|
|
|
|
if (list->use_global_options && desc.options) {
|
2018-05-20 18:50:01 +00:00
|
|
|
struct m_sub_options *conf = talloc_ptrtype(config, conf);
|
|
|
|
*conf = (struct m_sub_options){
|
2016-11-25 20:00:39 +00:00
|
|
|
.prefix = desc.options_prefix,
|
2016-09-05 19:05:47 +00:00
|
|
|
.opts = desc.options,
|
|
|
|
.defaults = desc.priv_defaults,
|
|
|
|
.size = desc.priv_size,
|
|
|
|
};
|
2018-05-20 18:50:01 +00:00
|
|
|
add_sub_group(config, NULL, parent_group_index, -1, conf);
|
2016-09-05 19:05:47 +00:00
|
|
|
}
|
2016-09-05 19:04:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
static const char *concat_name(void *ta_parent, const char *a, const char *b)
|
2016-06-04 18:48:56 +00:00
|
|
|
{
|
2018-05-20 18:50:01 +00:00
|
|
|
assert(a);
|
|
|
|
assert(b);
|
|
|
|
if (!a[0])
|
|
|
|
return b;
|
|
|
|
if (!b[0])
|
|
|
|
return a;
|
|
|
|
return talloc_asprintf(ta_parent, "%s-%s", a, b);
|
2016-06-04 18:48:56 +00:00
|
|
|
}
|
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
static void add_sub_group(struct m_config *config, const char *name_prefix,
|
|
|
|
int parent_group_index, int parent_ptr,
|
|
|
|
const struct m_sub_options *subopts)
|
2011-07-05 19:31:44 +00:00
|
|
|
{
|
2018-05-20 18:50:01 +00:00
|
|
|
// Can't be used multiple times.
|
|
|
|
for (int n = 0; n < config->num_groups; n++)
|
|
|
|
assert(config->groups[n].group != subopts);
|
|
|
|
|
|
|
|
// You can only use UPDATE_ flags here.
|
|
|
|
assert(!(subopts->change_flags & ~(unsigned)UPDATE_OPTS_MASK));
|
2011-07-05 19:31:44 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
assert(parent_group_index >= -1 && parent_group_index < config->num_groups);
|
2016-08-30 21:48:42 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
int group_index = config->num_groups++;
|
|
|
|
MP_TARRAY_GROW(config, config->groups, group_index);
|
|
|
|
config->groups[group_index] = (struct m_config_group){
|
|
|
|
.group = subopts,
|
|
|
|
.parent_group = parent_group_index,
|
|
|
|
.parent_ptr = parent_ptr,
|
|
|
|
.co_index = config->num_opts,
|
2013-10-24 18:00:00 +00:00
|
|
|
};
|
2011-07-05 19:31:44 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
if (subopts->prefix && subopts->prefix[0])
|
|
|
|
name_prefix = subopts->prefix;
|
|
|
|
if (!name_prefix)
|
|
|
|
name_prefix = "";
|
2013-10-24 20:20:16 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
for (int i = 0; subopts->opts && subopts->opts[i].name; i++) {
|
|
|
|
const struct m_option *opt = &subopts->opts[i];
|
2013-10-24 20:20:16 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
if (opt->type == &m_option_type_subconfig)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
struct m_config_option co = {
|
|
|
|
.name = concat_name(config, name_prefix, opt->name),
|
|
|
|
.opt = opt,
|
|
|
|
.group_index = group_index,
|
|
|
|
.is_hidden = !!opt->deprecation_message,
|
|
|
|
};
|
2018-05-24 17:54:47 +00:00
|
|
|
MP_TARRAY_APPEND(config, config->opts, config->num_opts, co);
|
2013-10-25 13:58:01 +00:00
|
|
|
}
|
2011-07-05 19:31:44 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
config->groups[group_index].co_end_index = config->num_opts;
|
2016-11-29 14:18:40 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
// Initialize sub-structs. These have to come after, because co_index and
|
|
|
|
// co_end_index must strictly be for a single struct only.
|
|
|
|
for (int i = 0; subopts->opts && subopts->opts[i].name; i++) {
|
|
|
|
const struct m_option *opt = &subopts->opts[i];
|
2016-09-05 19:04:17 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
if (opt->type == &m_option_type_subconfig) {
|
|
|
|
const struct m_sub_options *new_subopts = opt->priv;
|
2016-11-29 14:18:40 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
// Providing default structs in-place is not allowed.
|
2018-05-21 11:45:06 +00:00
|
|
|
if (opt->offset >= 0 && subopts->defaults) {
|
|
|
|
void *ptr = (char *)subopts->defaults + opt->offset;
|
2018-05-20 18:50:01 +00:00
|
|
|
assert(!substruct_read_ptr(ptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *prefix = concat_name(config, name_prefix, opt->name);
|
|
|
|
add_sub_group(config, prefix, group_index, opt->offset, new_subopts);
|
|
|
|
} else if (opt->type == &m_option_type_obj_settings_list) {
|
|
|
|
const struct m_obj_list *objlist = opt->priv;
|
|
|
|
init_obj_settings_list(config, group_index, objlist);
|
|
|
|
}
|
2016-11-29 14:18:40 +00:00
|
|
|
}
|
2018-05-20 18:50:01 +00:00
|
|
|
|
|
|
|
config->groups[group_index].group_count = config->num_groups - group_index;
|
2002-11-12 01:56:42 +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)
|
|
|
|
{
|
|
|
|
if (co->opt->defval)
|
|
|
|
return co->opt->defval;
|
|
|
|
|
|
|
|
const struct m_sub_options *subopt = config->groups[co->group_index].group;
|
|
|
|
if (co->opt->offset >= 0 && subopt->defaults)
|
|
|
|
return (char *)subopt->defaults + co->opt->offset;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
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];
|
2016-08-30 21:47:09 +00:00
|
|
|
if (!co->is_hidden) {
|
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_FIXED) && (optflags & M_OPT_FIXED))
|
|
|
|
return M_OPT_INVALID;
|
|
|
|
|
|
|
|
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)
|
|
|
|
ensure_backup(config, 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
|
|
|
}
|
|
|
|
|
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
|
|
|
// Special options that don't really fit into the option handling mode. They
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
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");
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-09-17 18:48:22 +00:00
|
|
|
// Unlike m_config_set_option_raw() this does not go through the property layer
|
|
|
|
// via config.option_set_callback.
|
|
|
|
int m_config_set_option_raw_direct(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;
|
|
|
|
|
2014-05-18 16:57:02 +00:00
|
|
|
m_option_copy(co->opt, co->data, data);
|
2016-09-17 15:47:22 +00:00
|
|
|
|
2016-09-23 19:04:20 +00:00
|
|
|
m_config_mark_co_flags(co, flags);
|
2016-09-17 15:47:22 +00:00
|
|
|
m_config_notify_change_co(config, co);
|
|
|
|
|
2014-05-18 16:57:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-07-02 11:00:22 +00:00
|
|
|
// Similar to m_config_set_option_cli(), but set as data in its native format.
|
2016-09-17 18:48:22 +00:00
|
|
|
// This takes care of some details like sending change notifications.
|
|
|
|
// The type data points to is as in: co->opt
|
|
|
|
int m_config_set_option_raw(struct m_config *config, struct m_config_option *co,
|
|
|
|
void *data, int 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
|
|
|
if (!co)
|
|
|
|
return M_OPT_UNKNOWN;
|
|
|
|
|
2016-09-17 18:48:22 +00:00
|
|
|
if (config->option_set_callback) {
|
|
|
|
int r = handle_set_opt_flags(config, co, flags);
|
|
|
|
if (r <= 1)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return config->option_set_callback(config->option_set_callback_cb,
|
|
|
|
co, data, flags);
|
|
|
|
} else {
|
|
|
|
return m_config_set_option_raw_direct(config, co, data, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
// Set the named option to the given string. This is for command line and config
|
|
|
|
// file use only.
|
|
|
|
// flags: combination of M_SETOPT_* flags (0 for normal operation)
|
|
|
|
// Returns >= 0 on success, otherwise see OptionParserReturn.
|
|
|
|
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) {
|
2017-09-28 09:53:57 +00:00
|
|
|
MP_DBG(config, "Setting option '%.*s' = '%.*s' (flags = %d)\n",
|
|
|
|
BSTR_P(name), BSTR_P(param), flags);
|
2013-12-23 16:30:19 +00:00
|
|
|
}
|
|
|
|
|
2016-09-17 15:47:22 +00:00
|
|
|
union m_option_value val = {0};
|
|
|
|
|
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.
|
|
|
|
union m_option_value val = {0};
|
|
|
|
|
|
|
|
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-08-30 21:47:09 +00:00
|
|
|
if (co->is_hidden)
|
2013-07-27 19:30:00 +00:00
|
|
|
continue;
|
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:");
|
2013-07-21 18:16:46 +00:00
|
|
|
struct m_opt_choice_alternatives *alt = opt->priv;
|
|
|
|
for (int n = 0; alt[n].name; n++)
|
2013-12-21 18:45:42 +00:00
|
|
|
MP_INFO(config, " %s", alt[n].name);
|
2013-07-21 18:16:46 +00:00
|
|
|
if (opt->flags & (M_OPT_MIN | M_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
|
|
|
}
|
|
|
|
if (opt->flags & (M_OPT_MIN | M_OPT_MAX)) {
|
|
|
|
snprintf(min, sizeof(min), "any");
|
|
|
|
snprintf(max, sizeof(max), "any");
|
|
|
|
if (opt->flags & M_OPT_MIN)
|
2013-07-27 19:31:04 +00:00
|
|
|
snprintf(min, sizeof(min), "%.14g", opt->min);
|
2013-07-21 18:16:46 +00:00
|
|
|
if (opt->flags & M_OPT_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)
|
|
|
|
defptr = &default_value;
|
|
|
|
if (defptr)
|
|
|
|
def = m_option_pretty_print(opt, defptr);
|
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]");
|
2016-09-21 14:19:56 +00:00
|
|
|
if (opt->flags & M_OPT_FIXED)
|
|
|
|
MP_INFO(config, " [no runtime changes]");
|
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];
|
2016-08-30 21:47:09 +00:00
|
|
|
if (co->is_hidden)
|
2014-02-24 20:18:53 +00:00
|
|
|
continue;
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2013-10-14 21:37:58 +00:00
|
|
|
void m_profile_set_desc(struct m_profile *p, bstr desc)
|
2011-07-05 19:31:44 +00:00
|
|
|
{
|
2008-04-25 12:59:30 +00:00
|
|
|
talloc_free(p->desc);
|
2016-09-02 17:00:34 +00:00
|
|
|
p->desc = bstrto0(p, desc);
|
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
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2015-05-07 19:03:14 +00:00
|
|
|
int m_config_set_profile(struct m_config *config, char *name, int flags)
|
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);
|
|
|
|
return M_OPT_INVALID;
|
|
|
|
}
|
|
|
|
|
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");
|
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;
|
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
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-09-02 13:45:22 +00:00
|
|
|
void m_config_create_shadow(struct m_config *config)
|
|
|
|
{
|
2018-05-20 22:11:48 +00:00
|
|
|
assert(config->global);
|
2016-09-02 13:45:22 +00:00
|
|
|
assert(!config->shadow && !config->global->config);
|
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
config->shadow = talloc_zero(NULL, struct m_config_shadow);
|
|
|
|
config->shadow->data =
|
|
|
|
allocate_option_data(config->shadow, config, 0, config->data);
|
2016-09-02 13:45:22 +00:00
|
|
|
config->shadow->root = config;
|
|
|
|
pthread_mutex_init(&config->shadow->lock, NULL);
|
|
|
|
|
|
|
|
config->global->config = config->shadow;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
static void cache_destroy(void *p)
|
|
|
|
{
|
|
|
|
struct m_config_cache *cache = p;
|
|
|
|
|
|
|
|
// (technically speaking, being able to call them both without anything
|
|
|
|
// breaking is a feature provided by these functions)
|
|
|
|
m_config_cache_set_wakeup_cb(cache, NULL, NULL);
|
|
|
|
m_config_cache_set_dispatch_change_cb(cache, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2016-09-02 13:45:22 +00:00
|
|
|
struct m_config_cache *m_config_cache_alloc(void *ta_parent,
|
|
|
|
struct mpv_global *global,
|
|
|
|
const struct m_sub_options *group)
|
|
|
|
{
|
|
|
|
struct m_config_shadow *shadow = global->config;
|
|
|
|
struct m_config *root = shadow->root;
|
2018-05-20 18:50:01 +00:00
|
|
|
int group_index = -1;
|
|
|
|
|
|
|
|
for (int n = 0; n < root->num_groups; n++) {
|
|
|
|
// group==NULL is special cased to root group.
|
|
|
|
if (root->groups[n].group == group || (!group && !n)) {
|
|
|
|
group_index = n;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(group_index >= 0); // invalid group (or not in option tree)
|
2016-09-02 13:45:22 +00:00
|
|
|
|
|
|
|
struct m_config_cache *cache = talloc_zero(ta_parent, struct m_config_cache);
|
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
|
|
|
talloc_set_destructor(cache, cache_destroy);
|
2016-09-02 13:45:22 +00:00
|
|
|
cache->shadow = shadow;
|
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
pthread_mutex_lock(&shadow->lock);
|
|
|
|
cache->data = allocate_option_data(cache, root, group_index, shadow->data);
|
|
|
|
pthread_mutex_unlock(&shadow->lock);
|
2016-09-02 13:45:22 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
cache->opts = cache->data->gdata[0].udata;
|
2016-09-02 13:45:22 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
return cache;
|
|
|
|
}
|
2016-09-02 13:45:22 +00:00
|
|
|
|
2018-05-21 17:43:14 +00:00
|
|
|
static bool update_options(struct m_config_data *dst, struct m_config_data *src)
|
2018-05-20 18:50:01 +00:00
|
|
|
{
|
|
|
|
assert(dst->root == src->root);
|
|
|
|
|
2018-05-21 17:43:14 +00:00
|
|
|
bool res = false;
|
2018-05-20 18:50:01 +00:00
|
|
|
dst->ts = src->ts;
|
|
|
|
|
|
|
|
// Must be from same root, but they can have arbitrary overlap.
|
|
|
|
int group_s = MPMAX(dst->group_index, src->group_index);
|
|
|
|
int group_e = MPMIN(dst->group_index + dst->num_gdata,
|
|
|
|
src->group_index + src->num_gdata);
|
|
|
|
assert(group_s >= 0 && group_e <= dst->root->num_groups);
|
|
|
|
for (int n = group_s; n < group_e; n++) {
|
|
|
|
struct m_config_group *g = &dst->root->groups[n];
|
|
|
|
struct m_group_data *gsrc = m_config_gdata(src, n);
|
|
|
|
struct m_group_data *gdst = m_config_gdata(dst, n);
|
|
|
|
assert(gsrc && gdst);
|
|
|
|
|
2018-05-21 17:54:21 +00:00
|
|
|
if (gdst->ts >= gsrc->ts)
|
2018-05-20 18:50:01 +00:00
|
|
|
continue;
|
|
|
|
gdst->ts = gsrc->ts;
|
2018-05-21 17:43:14 +00:00
|
|
|
res = true;
|
2016-09-02 13:45:22 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
for (int i = g->co_index; i < g->co_end_index; i++) {
|
|
|
|
struct m_config_option *co = &dst->root->opts[i];
|
|
|
|
if (co->opt->offset >= 0 && co->opt->type->size) {
|
|
|
|
m_option_copy(co->opt, gdst->udata + co->opt->offset,
|
|
|
|
gsrc->udata + co->opt->offset);
|
2016-09-02 13:45:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-21 17:43:14 +00:00
|
|
|
|
|
|
|
return res;
|
2016-09-02 13:45:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool m_config_cache_update(struct m_config_cache *cache)
|
|
|
|
{
|
|
|
|
struct m_config_shadow *shadow = cache->shadow;
|
|
|
|
|
|
|
|
// Using atomics and checking outside of the lock - it's unknown whether
|
|
|
|
// this makes it faster or slower. Just cargo culting it.
|
2018-05-21 17:54:21 +00:00
|
|
|
if (atomic_load_explicit(&cache->data->ts, memory_order_relaxed) >=
|
|
|
|
atomic_load(&shadow->data->ts))
|
2016-09-02 13:45:22 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&shadow->lock);
|
2018-05-21 17:43:14 +00:00
|
|
|
bool res = update_options(cache->data, shadow->data);
|
2016-09-02 13:45:22 +00:00
|
|
|
pthread_mutex_unlock(&shadow->lock);
|
2018-05-21 17:43:14 +00:00
|
|
|
return res;
|
2016-09-02 13:45:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void m_config_notify_change_co(struct m_config *config,
|
|
|
|
struct m_config_option *co)
|
|
|
|
{
|
|
|
|
struct m_config_shadow *shadow = config->shadow;
|
2018-05-20 18:50:01 +00:00
|
|
|
assert(co->data);
|
2016-09-02 13:45:22 +00:00
|
|
|
|
|
|
|
if (shadow) {
|
|
|
|
pthread_mutex_lock(&shadow->lock);
|
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
struct m_config_data *data = shadow->data;
|
|
|
|
struct m_group_data *gdata = m_config_gdata(data, co->group_index);
|
|
|
|
assert(gdata);
|
2016-09-19 17:51:26 +00:00
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
gdata->ts = atomic_fetch_add(&data->ts, 1) + 1;
|
|
|
|
|
|
|
|
m_option_copy(co->opt, gdata->udata + co->opt->offset, co->data);
|
2016-09-02 13:45:22 +00:00
|
|
|
|
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
|
|
|
for (int n = 0; n < shadow->num_listeners; n++) {
|
|
|
|
struct m_config_cache *cache = shadow->listeners[n];
|
2018-05-20 20:06:36 +00:00
|
|
|
if (cache->wakeup_cb && m_config_gdata(cache->data, co->group_index))
|
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
|
|
|
cache->wakeup_cb(cache->wakeup_cb_ctx);
|
|
|
|
}
|
2018-05-20 18:50:01 +00:00
|
|
|
|
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
|
|
|
pthread_mutex_unlock(&shadow->lock);
|
|
|
|
}
|
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
int changed = co->opt->flags & UPDATE_OPTS_MASK;
|
|
|
|
int group_index = co->group_index;
|
|
|
|
while (group_index >= 0) {
|
|
|
|
struct m_config_group *g = &config->groups[group_index];
|
|
|
|
changed |= g->group->change_flags;
|
|
|
|
group_index = g->parent_group;
|
|
|
|
}
|
|
|
|
|
2016-09-19 17:51:26 +00:00
|
|
|
if (config->option_change_callback) {
|
|
|
|
config->option_change_callback(config->option_change_callback_ctx, co,
|
|
|
|
changed);
|
|
|
|
}
|
2016-09-02 13:45:22 +00:00
|
|
|
}
|
|
|
|
|
2017-12-29 16:19:25 +00:00
|
|
|
void m_config_notify_change_opt_ptr(struct m_config *config, void *ptr)
|
|
|
|
{
|
|
|
|
for (int n = 0; n < config->num_opts; n++) {
|
|
|
|
struct m_config_option *co = &config->opts[n];
|
|
|
|
if (co->data == ptr) {
|
|
|
|
m_config_notify_change_co(config, co);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ptr doesn't point to any config->optstruct field declared in the
|
|
|
|
// option list?
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
void m_config_cache_set_wakeup_cb(struct m_config_cache *cache,
|
|
|
|
void (*cb)(void *ctx), void *cb_ctx)
|
|
|
|
{
|
|
|
|
struct m_config_shadow *shadow = cache->shadow;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&shadow->lock);
|
|
|
|
if (cache->in_list) {
|
|
|
|
for (int n = 0; n < shadow->num_listeners; n++) {
|
|
|
|
if (shadow->listeners[n] == cache)
|
|
|
|
MP_TARRAY_REMOVE_AT(shadow->listeners, shadow->num_listeners, n);
|
|
|
|
}
|
|
|
|
if (!shadow->num_listeners) {
|
|
|
|
talloc_free(shadow->listeners);
|
|
|
|
shadow->listeners = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (cb) {
|
|
|
|
MP_TARRAY_APPEND(NULL, shadow->listeners, shadow->num_listeners, cache);
|
|
|
|
cache->in_list = true;
|
|
|
|
cache->wakeup_cb = cb;
|
|
|
|
cache->wakeup_cb_ctx = cb_ctx;
|
|
|
|
}
|
|
|
|
pthread_mutex_unlock(&shadow->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dispatch_notify(void *p)
|
|
|
|
{
|
|
|
|
struct m_config_cache *cache = p;
|
|
|
|
|
|
|
|
assert(cache->wakeup_dispatch_queue);
|
|
|
|
mp_dispatch_enqueue_notify(cache->wakeup_dispatch_queue,
|
|
|
|
cache->wakeup_dispatch_cb,
|
|
|
|
cache->wakeup_dispatch_cb_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void m_config_cache_set_dispatch_change_cb(struct m_config_cache *cache,
|
|
|
|
struct mp_dispatch_queue *dispatch,
|
|
|
|
void (*cb)(void *ctx), void *cb_ctx)
|
|
|
|
{
|
2018-05-20 10:30:49 +00:00
|
|
|
// Removing the old one is tricky. First make sure no new notifications will
|
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
|
|
|
// come.
|
|
|
|
m_config_cache_set_wakeup_cb(cache, NULL, NULL);
|
|
|
|
// Remove any pending notifications (assume we're on the same thread as
|
|
|
|
// any potential mp_dispatch_queue_process() callers).
|
|
|
|
if (cache->wakeup_dispatch_queue) {
|
|
|
|
mp_dispatch_cancel_fn(cache->wakeup_dispatch_queue,
|
|
|
|
cache->wakeup_dispatch_cb,
|
|
|
|
cache->wakeup_dispatch_cb_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
cache->wakeup_dispatch_queue = NULL;
|
|
|
|
cache->wakeup_dispatch_cb = NULL;
|
|
|
|
cache->wakeup_dispatch_cb_ctx = NULL;
|
|
|
|
|
|
|
|
if (cb) {
|
|
|
|
cache->wakeup_dispatch_queue = dispatch;
|
|
|
|
cache->wakeup_dispatch_cb = cb;
|
|
|
|
cache->wakeup_dispatch_cb_ctx = cb_ctx;
|
|
|
|
m_config_cache_set_wakeup_cb(cache, dispatch_notify, cache);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-02 13:58:15 +00:00
|
|
|
void *mp_get_config_group(void *ta_parent, struct mpv_global *global,
|
|
|
|
const struct m_sub_options *group)
|
|
|
|
{
|
2018-01-16 10:35:37 +00:00
|
|
|
struct m_config_cache *cache = m_config_cache_alloc(NULL, global, group);
|
|
|
|
// Make talloc_free(cache->opts) free the entire cache.
|
|
|
|
ta_set_parent(cache->opts, ta_parent);
|
|
|
|
ta_set_parent(cache, cache->opts);
|
2016-09-02 13:58:15 +00:00
|
|
|
return cache->opts;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mp_read_option_raw(struct mpv_global *global, const char *name,
|
|
|
|
const struct m_option_type *type, void *dst)
|
|
|
|
{
|
|
|
|
struct m_config_shadow *shadow = global->config;
|
2018-01-16 10:31:25 +00:00
|
|
|
struct m_config_option *co = m_config_get_co_raw(shadow->root, bstr0(name));
|
2016-09-02 13:58:15 +00:00
|
|
|
assert(co);
|
2018-05-20 18:50:01 +00:00
|
|
|
assert(co->opt->offset >= 0);
|
2016-09-02 13:58:15 +00:00
|
|
|
assert(co->opt->type == type);
|
|
|
|
|
2018-05-20 18:50:01 +00:00
|
|
|
struct m_group_data *gdata = m_config_gdata(shadow->data, co->group_index);
|
|
|
|
assert(gdata);
|
|
|
|
|
2016-09-02 13:58:15 +00:00
|
|
|
memset(dst, 0, co->opt->type->size);
|
2018-05-20 18:50:01 +00:00
|
|
|
m_option_copy(co->opt, dst, gdata->udata + co->opt->offset);
|
2016-09-02 13:58:15 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 13:45:22 +00:00
|
|
|
struct m_config *mp_get_root_config(struct mpv_global *global)
|
|
|
|
{
|
|
|
|
return global->config->root;
|
|
|
|
}
|