mirror of
https://github.com/mpv-player/mpv
synced 2024-12-28 01:52:19 +00:00
eb381cbd4b
Move the "old" mostly command line parsing and option management related code to m_config_frontend.c/h. Move the the code that enables other part of the player to access options to m_config_core.c/h. "frontend" is out of lack of creativity for a better name. Unfortunately, the separation isn't quite clean yet. m_config_frontend.c still references some m_config_core.c implementation details, and m_config_new() is even left in m_config_core.c for now. There some odd functions that should be removed as well (marked as "Bad functions"). Fixing these things requires more changes and will be done separately. struct m_config is left with the current name to reduce diff noise. Also, since there are a _lot_ source files that include m_config.h, add a replacement m_config.h that "redirects" to m_config_core.h.
30 lines
1.0 KiB
C
30 lines
1.0 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 MPLAYER_PARSER_CFG_H
|
|
#define MPLAYER_PARSER_CFG_H
|
|
|
|
#include "m_config_frontend.h"
|
|
|
|
int m_config_parse_config_file(m_config_t* config, const char *conffile,
|
|
char *initial_section, int flags);
|
|
|
|
int m_config_parse(m_config_t *config, const char *location, bstr data,
|
|
char *initial_section, int flags);
|
|
|
|
#endif /* MPLAYER_PARSER_CFG_H */
|