2010-01-30 23:24:23 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_M_CONFIG_H
|
|
|
|
#define MPLAYER_M_CONFIG_H
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2013-07-27 19:26:00 +00:00
|
|
|
#include <stddef.h>
|
2011-07-27 17:59:44 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2014-08-29 10:09:04 +00:00
|
|
|
#include "misc/bstr.h"
|
2011-07-27 17:59:44 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
// m_config provides an API to manipulate the config variables in MPlayer.
|
|
|
|
// It makes use of the Options API to provide a context stack that
|
|
|
|
// allows saving and later restoring the state of all variables.
|
|
|
|
|
2006-01-24 11:16:13 +00:00
|
|
|
typedef struct m_profile m_profile_t;
|
2002-11-12 01:56:42 +00:00
|
|
|
struct m_option;
|
|
|
|
struct m_option_type;
|
2012-08-06 15:45:17 +00:00
|
|
|
struct m_sub_options;
|
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
|
|
|
struct m_obj_desc;
|
2013-11-30 23:12:10 +00:00
|
|
|
struct m_obj_settings;
|
2013-12-21 18:45:42 +00:00
|
|
|
struct mp_log;
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
// Config option
|
2002-11-12 01:56:42 +00:00
|
|
|
struct m_config_option {
|
2013-10-25 20:52:54 +00:00
|
|
|
bool is_generated : 1; // Automatically added ("no-" options)
|
|
|
|
bool is_set_from_cmdline : 1; // Set by user from command line
|
2014-12-11 00:04:15 +00:00
|
|
|
bool warning_was_printed : 1;
|
2013-10-25 20:52:54 +00:00
|
|
|
const char *name; // Full name (ie option-subopt)
|
|
|
|
const struct m_option *opt; // Option description
|
|
|
|
void *data; // Raw value of the option
|
|
|
|
const void *default_data; // Raw default value
|
2002-11-12 01:56:42 +00:00
|
|
|
};
|
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
// Config object
|
2006-04-24 19:20:04 +00:00
|
|
|
/** \ingroup Config */
|
2002-11-12 01:56:42 +00:00
|
|
|
typedef struct m_config {
|
2013-12-21 18:45:42 +00:00
|
|
|
struct mp_log *log;
|
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
// Registered options.
|
2013-07-27 19:26:00 +00:00
|
|
|
struct m_config_option *opts; // all options, even suboptions
|
2013-10-24 18:00:00 +00:00
|
|
|
int num_opts;
|
2013-07-27 19:26:00 +00:00
|
|
|
|
2014-10-06 19:20:10 +00:00
|
|
|
// Creation parameters
|
|
|
|
size_t size;
|
|
|
|
const void *defaults;
|
|
|
|
const struct m_option *options;
|
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
// List of defined profiles.
|
|
|
|
struct m_profile *profiles;
|
|
|
|
// Depth when recursively including profiles.
|
|
|
|
int profile_depth;
|
|
|
|
|
2013-07-31 18:44:16 +00:00
|
|
|
struct m_opt_backup *backup_opts;
|
|
|
|
|
2013-07-24 17:44:10 +00:00
|
|
|
bool use_profiles;
|
2013-11-23 20:35:03 +00:00
|
|
|
bool is_toplevel;
|
2013-12-21 18:27:19 +00:00
|
|
|
int (*includefunc)(void *ctx, char *filename, int flags);
|
|
|
|
void *includefunc_ctx;
|
2013-07-27 19:26:00 +00:00
|
|
|
|
2014-06-10 22:32:13 +00:00
|
|
|
// For the command line parser
|
|
|
|
int recursion_depth;
|
|
|
|
|
2013-07-27 19:26:00 +00:00
|
|
|
void *optstruct; // struct mpopts or other
|
2002-11-12 01:56:42 +00:00
|
|
|
} m_config_t;
|
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
// Create a new config object.
|
2013-11-01 16:33:11 +00:00
|
|
|
// talloc_ctx: talloc parent context for the m_config allocation
|
2013-07-27 19:26:00 +00:00
|
|
|
// size: size of the optstruct (where option values are stored)
|
2013-10-25 13:31:47 +00:00
|
|
|
// size==0 creates a config object with no option struct allocated
|
2013-07-27 19:26:00 +00:00
|
|
|
// defaults: if not NULL, points to a struct of same type as optstruct, which
|
|
|
|
// contains default values for all options
|
|
|
|
// options: list of options. Each option defines a member of the optstruct
|
|
|
|
// and a corresponding option switch or sub-option field.
|
2013-07-31 18:45:06 +00:00
|
|
|
// suboptinit: if not NULL, initialize the suboption string (used for presets)
|
2013-07-27 19:26:00 +00:00
|
|
|
// Note that the m_config object will keep pointers to defaults and options.
|
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-05-17 00:31:11 +00:00
|
|
|
|
2014-10-06 19:20:10 +00:00
|
|
|
// (Warning: new object references config->log and others.)
|
|
|
|
struct m_config *m_config_dup(void *talloc_ctx, struct m_config *config);
|
|
|
|
|
2013-12-21 18:45:42 +00:00
|
|
|
struct m_config *m_config_from_obj_desc(void *talloc_ctx, struct mp_log *log,
|
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
|
|
|
struct m_obj_desc *desc);
|
|
|
|
|
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);
|
|
|
|
|
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
|
|
|
int m_config_set_obj_params(struct m_config *conf, char **args);
|
|
|
|
|
2013-11-30 23:12:10 +00:00
|
|
|
// Search for the object with the given name in the defaults list, and apply
|
|
|
|
// its parameters.
|
|
|
|
int m_config_apply_defaults(struct m_config *config, const char *name,
|
|
|
|
struct m_obj_settings *defaults);
|
|
|
|
|
2013-08-02 15:59:43 +00:00
|
|
|
// Make sure the option is backed up. If it's already backed up, do nothing.
|
|
|
|
// All backed up options can be restored with m_config_restore_backups().
|
|
|
|
void m_config_backup_opt(struct m_config *config, const char *opt);
|
|
|
|
|
|
|
|
// Call m_config_backup_opt() on all options.
|
|
|
|
void m_config_backup_all_opts(struct m_config *config);
|
|
|
|
|
|
|
|
// Restore all options backed up with m_config_backup_opt(), and delete the
|
|
|
|
// backups afterwards.
|
|
|
|
void m_config_restore_backups(struct m_config *config);
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2012-09-21 07:22:25 +00:00
|
|
|
enum {
|
|
|
|
M_SETOPT_PRE_PARSE_ONLY = 1, // Silently ignore non-M_OPT_PRE_PARSE opt.
|
|
|
|
M_SETOPT_CHECK_ONLY = 2, // Don't set, just check name/value
|
|
|
|
M_SETOPT_FROM_CONFIG_FILE = 4, // Reject M_OPT_NOCFG opt. (print error)
|
2013-10-25 20:52:54 +00:00
|
|
|
M_SETOPT_FROM_CMDLINE = 8, // Mark as set by command line
|
|
|
|
M_SETOPT_BACKUP = 16, // Call m_config_backup_opt() before
|
|
|
|
M_SETOPT_PRESERVE_CMDLINE = 32, // Don't set if already marked as FROM_CMDLINE
|
2014-05-18 16:57:02 +00:00
|
|
|
M_SETOPT_NO_FIXED = 64, // Reject M_OPT_FIXED options
|
|
|
|
M_SETOPT_NO_PRE_PARSE = 128, // Reject M_OPT_PREPARSE options
|
2012-09-21 07:22:25 +00:00
|
|
|
};
|
|
|
|
|
2014-05-18 16:57:02 +00:00
|
|
|
// Flags for safe option setting during runtime.
|
|
|
|
#define M_SETOPT_RUNTIME (M_SETOPT_NO_FIXED | M_SETOPT_NO_PRE_PARSE)
|
|
|
|
|
2012-09-21 07:22:25 +00:00
|
|
|
// Set the named option to the given string.
|
|
|
|
// flags: combination of M_SETOPT_* flags (0 for normal operation)
|
|
|
|
// Returns >= 0 on success, otherwise see OptionParserReturn.
|
|
|
|
int m_config_set_option_ext(struct m_config *config, struct bstr name,
|
|
|
|
struct bstr param, int flags);
|
|
|
|
|
|
|
|
/* Set an option. (Like: m_config_set_option_ext(config, name, param, 0))
|
2011-07-05 19:31:44 +00:00
|
|
|
* \param config The config object.
|
2011-07-28 08:07:47 +00:00
|
|
|
* \param name The option's name.
|
2006-04-24 19:20:04 +00:00
|
|
|
* \param param The value of the option, can be NULL.
|
|
|
|
* \return See \ref OptionParserReturn.
|
|
|
|
*/
|
2011-07-28 08:07:47 +00:00
|
|
|
int m_config_set_option(struct m_config *config, struct bstr name,
|
2012-08-05 21:34:28 +00:00
|
|
|
struct bstr param);
|
2011-07-28 08:07:47 +00:00
|
|
|
|
|
|
|
static inline int m_config_set_option0(struct m_config *config,
|
2012-08-05 21:34:28 +00:00
|
|
|
const char *name, const char *param)
|
2011-07-28 08:07:47 +00:00
|
|
|
{
|
2012-08-05 21:34:28 +00:00
|
|
|
return m_config_set_option(config, bstr0(name), bstr0(param));
|
2011-07-28 08:07:47 +00:00
|
|
|
}
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2014-05-18 16:57:02 +00:00
|
|
|
// Similar to m_config_set_option_ext(), but set as data in its native format.
|
|
|
|
// 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);
|
|
|
|
|
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
|
|
|
// Similar to m_config_set_option_ext(), but set as data using mpv_node.
|
2014-02-24 19:39:51 +00:00
|
|
|
struct mpv_node;
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
int m_config_parse_suboptions(struct m_config *config, char *name,
|
|
|
|
char *subopts);
|
2012-05-17 00:31:11 +00:00
|
|
|
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
/* Get the option matching the given name.
|
|
|
|
* \param config The config object.
|
2011-07-28 08:07:47 +00:00
|
|
|
* \param name The option's name.
|
2006-04-24 19:20:04 +00:00
|
|
|
*/
|
2011-07-05 19:31:44 +00:00
|
|
|
const struct m_option *m_config_get_option(const struct m_config *config,
|
2011-07-28 08:07:47 +00:00
|
|
|
struct bstr name);
|
2002-11-12 01:56:42 +00:00
|
|
|
|
2012-09-18 18:07:24 +00:00
|
|
|
struct m_config_option *m_config_get_co(const struct m_config *config,
|
|
|
|
struct bstr name);
|
|
|
|
|
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 the n-th option by position. n==0 is the first option. If there are
|
|
|
|
// less than (n + 1) options, return NULL.
|
|
|
|
const char *m_config_get_positional_option(const struct m_config *config, int n);
|
|
|
|
|
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
|
|
|
// Return a hint to the option parser whether a parameter is/may be required.
|
|
|
|
// The option may still accept empty/non-empty parameters independent from
|
|
|
|
// this, and this function is useful only for handling ambiguous options like
|
|
|
|
// flags (e.g. "--a" is ok, "--a=yes" is also ok).
|
|
|
|
// Returns: error code (<0), or number of expected params (0, 1)
|
|
|
|
int m_config_option_requires_param(struct m_config *config, bstr name);
|
2012-09-20 01:32:01 +00:00
|
|
|
|
2014-02-24 20:18:53 +00:00
|
|
|
// Return all (visible) option names as NULL terminated string list.
|
|
|
|
char **m_config_list_options(void *ta_parent, const struct m_config *config);
|
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
/* Print a list of all registered options.
|
|
|
|
* \param config The config object.
|
2006-04-24 19:20:04 +00:00
|
|
|
*/
|
2011-07-05 19:31:44 +00:00
|
|
|
void m_config_print_option_list(const struct m_config *config);
|
2002-11-12 12:39:05 +00:00
|
|
|
|
2006-04-24 19:20:04 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
/* Find the profile with the given name.
|
|
|
|
* \param config The config object.
|
2006-04-24 19:20:04 +00:00
|
|
|
* \param arg The profile's name.
|
|
|
|
* \return The profile object or NULL.
|
|
|
|
*/
|
2013-07-27 19:26:00 +00:00
|
|
|
struct m_profile *m_config_get_profile0(const struct m_config *config,
|
|
|
|
char *name);
|
|
|
|
struct m_profile *m_config_get_profile(const struct m_config *config, bstr name);
|
2006-01-24 11:16:13 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
/* Get the profile with the given name, creating it if necessary.
|
|
|
|
* \param config The config object.
|
2006-04-24 19:20:04 +00:00
|
|
|
* \param arg The profile's name.
|
|
|
|
* \return The profile object.
|
|
|
|
*/
|
2011-07-05 19:31:44 +00:00
|
|
|
struct m_profile *m_config_add_profile(struct m_config *config, char *name);
|
2006-01-24 11:16:13 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
/* Set the description of a profile.
|
|
|
|
* Used by the config file parser when defining a profile.
|
2009-07-06 23:26:13 +00:00
|
|
|
*
|
2006-04-24 19:20:04 +00:00
|
|
|
* \param p The profile object.
|
|
|
|
* \param arg The profile's name.
|
|
|
|
*/
|
2013-10-14 21:37:58 +00:00
|
|
|
void m_profile_set_desc(struct m_profile *p, bstr desc);
|
2006-01-24 11:16:13 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
/* Add an option to a profile.
|
|
|
|
* Used by the config file parser when defining a profile.
|
2009-07-06 23:26:13 +00:00
|
|
|
*
|
2006-04-24 19:20:04 +00:00
|
|
|
* \param config The config object.
|
|
|
|
* \param p The profile object.
|
|
|
|
* \param name The option's name.
|
|
|
|
* \param val The option's value.
|
|
|
|
*/
|
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);
|
2006-01-24 11:16:13 +00:00
|
|
|
|
2011-07-05 19:31:44 +00:00
|
|
|
/* Enables profile usage
|
|
|
|
* Used by the config file parser when loading a profile.
|
2009-07-06 23:26:13 +00:00
|
|
|
*
|
2008-01-10 18:41:21 +00:00
|
|
|
* \param config The config object.
|
|
|
|
* \param p The profile object.
|
2013-08-02 15:59:43 +00:00
|
|
|
* \param flags M_SETOPT_* bits
|
2008-01-10 18:41:21 +00:00
|
|
|
*/
|
2013-08-02 15:59:43 +00:00
|
|
|
void m_config_set_profile(struct m_config *config, struct m_profile *p,
|
|
|
|
int flags);
|
2006-04-24 19:20:04 +00:00
|
|
|
|
2013-11-01 16:33:11 +00:00
|
|
|
void *m_config_alloc_struct(void *talloc_ctx,
|
2012-08-06 15:45:17 +00:00
|
|
|
const struct m_sub_options *subopts);
|
|
|
|
|
2014-06-09 21:46:53 +00:00
|
|
|
// Create a copy of the struct ptr, described by opts.
|
|
|
|
// "opts" must live until the struct is free'd.
|
|
|
|
// Freeing the struct frees all members.
|
|
|
|
void *m_sub_options_copy(void *talloc_ctx, const struct m_sub_options *opts,
|
|
|
|
const void *ptr);
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_M_CONFIG_H */
|