mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
2e84934be7
cehoyos adds the step_property command in7a71da01d
, and it could be argued that copyright of this still applies to the later add/cycle commands (a668ae0ff9
). While I'm not sure if this is really the case, stay conservative for now and mark these commands as GPL-only. Mark the command.c code too, although that is not being relicensed yet. I'm leaving the MP_CMD_* enum items, as they are obviously different. In commit116ca0c768
, "veal" (essentially an anonymous author) adds an "osd_show_property_text" command (well, the commit message says "based on" that person's code, so it's not clear how much is from him or from albeu, who agreed to LGPL). This was later merged again with the "osd_show_text" command, and then all original code was removed in commit58cc0f637f
, so I claim that no copyright applies anymore. (Though technically the input.conf addition still might be copyrighted, so I'm just dropping it to get rid of the thought.) "kiriuja" added2f376d1b39
(sub_load etc.) andbe54f4813
(switch_audio). The latter is gone. I would argue that the former is fully rewritten with commitsb7052b431c
and0f155921b0
. But like in the step_property case, I will be overly conservative for now, and mark them as GPL-only, as this is potentially shaky and should be thought through first. (Not bothering with the command define/enum in the header, as it will be unused in LGPL mode anyway.) keycodes.c/h can be GPL, except for commit2b1f95dcc2
, which is a patch by someone who wasn't asked yet. Before doing something radical, I will wait for a reply.
54 lines
1.9 KiB
C
54 lines
1.9 KiB
C
/*
|
|
* This file is part of mpv.
|
|
*
|
|
* 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.
|
|
*
|
|
* mpv 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MP_PARSE_COMMAND_H
|
|
#define MP_PARSE_COMMAND_H
|
|
|
|
#include "misc/bstr.h"
|
|
|
|
struct mp_log;
|
|
struct mp_cmd;
|
|
struct mpv_node;
|
|
|
|
// Parse text and return corresponding struct mp_cmd.
|
|
// The location parameter is for error messages.
|
|
struct mp_cmd *mp_input_parse_cmd_(struct mp_log *log, bstr str, const char *loc);
|
|
|
|
// Similar to mp_input_parse_cmd(), but takes a list of strings instead.
|
|
// Also, MP_ON_OSD_AUTO | MP_EXPAND_PROPERTIES are not set by default.
|
|
// Keep in mind that these functions (naturally) don't take multiple commands,
|
|
// i.e. a ";" argument does not start a new command.
|
|
struct mp_cmd *mp_input_parse_cmd_strv(struct mp_log *log, const char **argv);
|
|
|
|
struct mp_cmd *mp_input_parse_cmd_node(struct mp_log *log, struct mpv_node *node);
|
|
|
|
// After getting a command from mp_input_get_cmd you need to free it using this
|
|
// function
|
|
void mp_cmd_free(struct mp_cmd *cmd);
|
|
|
|
void mp_cmd_dump(struct mp_log *log, int msgl, char *header, struct mp_cmd *cmd);
|
|
|
|
// This creates a copy of a command (used by the auto repeat stuff).
|
|
struct mp_cmd *mp_cmd_clone(struct mp_cmd *cmd);
|
|
|
|
extern const struct m_option_type m_option_type_cycle_dir;
|
|
|
|
#define OPT_CYCLEDIR(...) \
|
|
OPT_GENERAL(double, __VA_ARGS__, .type = &m_option_type_cycle_dir)
|
|
|
|
#endif
|