summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-09-27 12:10:59 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:18:08 +0200
commitb4c7efdfe1d528ea0a2e8ae0e3e68537729e5a64 (patch)
tree68ebc7bbc5f6d8581d648564c4cdd08d3cee6303
parentcce06f6f21885d2870aa59e8d91a4dcc5fbdc48c (diff)
downloadmpv-b4c7efdfe1d528ea0a2e8ae0e3e68537729e5a64.tar.bz2
mpv-b4c7efdfe1d528ea0a2e8ae0e3e68537729e5a64.tar.xz
m_config.c: cosmetics: Move functions to avoid forward declarations
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32387 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--m_config.c222
1 files changed, 108 insertions, 114 deletions
diff --git a/m_config.c b/m_config.c
index fb31bf6666..b46bca94ad 100644
--- a/m_config.c
+++ b/m_config.c
@@ -36,20 +36,115 @@
#define MAX_PROFILE_DEPTH 20
-static int
-parse_profile(const m_option_t *opt, const char *name, const char *param, void *dst, int src);
+static int parse_profile(const m_option_t *opt, const char *name,
+ const char *param, void *dst, int src)
+{
+ m_config_t *config = opt->priv;
+ char **list = NULL;
+ int i, r;
+ if (param && !strcmp(param, "help")) {
+ m_profile_t *p;
+ if (!config->profiles) {
+ mp_tmsg(MSGT_CFGPARSER, MSGL_INFO, "No profiles have been defined.\n");
+ return M_OPT_EXIT-1;
+ }
+ mp_tmsg(MSGT_CFGPARSER, MSGL_INFO, "Available profiles:\n");
+ for (p = config->profiles; p; p = p->next)
+ mp_msg(MSGT_CFGPARSER, MSGL_INFO, "\t%s\t%s\n", p->name,
+ p->desc ? p->desc : "");
+ mp_msg(MSGT_CFGPARSER, MSGL_INFO, "\n");
+ return M_OPT_EXIT-1;
+ }
-static void
-set_profile(const m_option_t *opt, void* dst, const void* src);
+ r = m_option_type_string_list.parse(opt, name, param, &list, src);
+ if (r < 0)
+ return r;
+ if (!list || !list[0])
+ return M_OPT_INVALID;
+ for (i = 0; list[i]; i++)
+ if (!m_config_get_profile(config,list[i])) {
+ mp_tmsg(MSGT_CFGPARSER, MSGL_WARN, "Unknown profile '%s'.\n",
+ list[i]);
+ r = M_OPT_INVALID;
+ }
+ if (dst)
+ m_option_copy(opt, dst, &list);
+ else
+ m_option_free(opt, &list);
+ return r;
+}
-static int
-show_profile(m_option_t *opt, char* name, char *param);
+static void set_profile(const m_option_t *opt, void *dst, const void *src)
+{
+ m_config_t *config = opt->priv;
+ m_profile_t *p;
+ char **list = NULL;
+ int i;
+ if (!src || !*(char***)src)
+ return;
+ m_option_copy(opt, &list, src);
+ for (i = 0; list[i]; i++) {
+ p = m_config_get_profile(config, list[i]);
+ if (!p)
+ continue;
+ m_config_set_profile(config, p);
+ }
+ m_option_free(opt, &list);
+}
-static void
-m_config_add_option(m_config_t *config, const m_option_t *arg, const char* prefix);
+static int show_profile(m_option_t *opt, char* name, char *param)
+{
+ m_config_t *config = opt->priv;
+ m_profile_t *p;
+ int i, j;
+ if (!param)
+ return M_OPT_MISSING_PARAM;
+ if (!(p = m_config_get_profile(config, param))) {
+ mp_tmsg(MSGT_CFGPARSER, MSGL_ERR, "Unknown profile '%s'.\n", param);
+ return M_OPT_EXIT - 1;
+ }
+ if (!config->profile_depth)
+ mp_tmsg(MSGT_CFGPARSER, MSGL_INFO, "Profile %s: %s\n", param,
+ p->desc ? p->desc : "");
+ config->profile_depth++;
+ for (i = 0; i < p->num_opts; i++) {
+ char spc[config->profile_depth + 1];
+ for (j = 0; j < config->profile_depth; j++)
+ spc[j] = ' ';
+ spc[config->profile_depth] = '\0';
+
+ mp_msg(MSGT_CFGPARSER, MSGL_INFO, "%s%s=%s\n", spc,
+ p->opts[2 * i], p->opts[2 * i + 1]);
+
+ 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, ','))) {
+ int l = e-list;
+ char tmp[l+1];
+ if (!l)
+ continue;
+ memcpy(tmp, list, l);
+ tmp[l] = '\0';
+ show_profile(opt, name, tmp);
+ list = e+1;
+ }
+ if (list[0] != '\0')
+ show_profile(opt, name, list);
+ }
+ }
+ config->profile_depth--;
+ if (!config->profile_depth)
+ mp_msg(MSGT_CFGPARSER, MSGL_INFO, "\n");
+ return M_OPT_EXIT - 1;
+}
-static int
-list_options(m_option_t *opt, char* name, char *param);
+static int list_options(m_option_t *opt, char *name, char *param)
+{
+ m_config_t *config = opt->priv;
+ m_config_print_option_list(config);
+ return M_OPT_EXIT;
+}
static void m_option_save(const m_config_t *config, const m_option_t *opt,
void *dst)
@@ -71,6 +166,9 @@ static void m_option_set(const m_config_t *config, const m_option_t *opt,
+static void
+m_config_add_option(m_config_t *config, const m_option_t *arg, const char* prefix);
+
m_config_t *m_config_new(void *optstruct,
int includefunc(m_option_t *conf, char *filename))
{
@@ -502,107 +600,3 @@ m_config_set_profile(m_config_t* config, m_profile_t* p) {
m_config_set_option(config,p->opts[2*i],p->opts[2*i+1]);
config->profile_depth--;
}
-
-static int
-parse_profile(const m_option_t *opt, const char *name, const char *param, void *dst, int src)
-{
- m_config_t* config = opt->priv;
- char** list = NULL;
- int i,r;
- if(param && !strcmp(param,"help")) {
- m_profile_t* p;
- if(!config->profiles) {
- mp_tmsg(MSGT_CFGPARSER, MSGL_INFO, "No profiles have been defined.\n");
- return M_OPT_EXIT-1;
- }
- mp_tmsg(MSGT_CFGPARSER, MSGL_INFO, "Available profiles:\n");
- for(p = config->profiles ; p ; p = p->next)
- mp_msg(MSGT_CFGPARSER, MSGL_INFO, "\t%s\t%s\n",p->name,
- p->desc ? p->desc : "");
- mp_msg(MSGT_CFGPARSER, MSGL_INFO, "\n");
- return M_OPT_EXIT-1;
- }
-
- r = m_option_type_string_list.parse(opt,name,param,&list,src);
- if(r < 0) return r;
- if(!list || !list[0]) return M_OPT_INVALID;
- for(i = 0 ; list[i] ; i++)
- if(!m_config_get_profile(config,list[i])) {
- mp_tmsg(MSGT_CFGPARSER, MSGL_WARN, "Unknown profile '%s'.\n",
- list[i]);
- r = M_OPT_INVALID;
- }
- if(dst)
- m_option_copy(opt,dst,&list);
- else
- m_option_free(opt,&list);
- return r;
-}
-
-static void
-set_profile(const m_option_t *opt, void *dst, const void *src) {
- m_config_t* config = opt->priv;
- m_profile_t* p;
- char** list = NULL;
- int i;
- if(!src || !*(char***)src) return;
- m_option_copy(opt,&list,src);
- for(i = 0 ; list[i] ; i++) {
- p = m_config_get_profile(config,list[i]);
- if(!p) continue;
- m_config_set_profile(config,p);
- }
- m_option_free(opt,&list);
-}
-
-static int
-show_profile(m_option_t *opt, char* name, char *param) {
- m_config_t* config = opt->priv;
- m_profile_t* p;
- int i,j;
- if(!param) return M_OPT_MISSING_PARAM;
- if(!(p = m_config_get_profile(config,param))) {
- mp_tmsg(MSGT_CFGPARSER, MSGL_ERR, "Unknown profile '%s'.\n", param);
- return M_OPT_EXIT-1;
- }
- if(!config->profile_depth)
- mp_tmsg(MSGT_CFGPARSER, MSGL_INFO, "Profile %s: %s\n", param,
- p->desc ? p->desc : "");
- config->profile_depth++;
- for(i = 0 ; i < p->num_opts ; i++) {
- char spc[config->profile_depth+1];
- for(j = 0 ; j < config->profile_depth ; j++)
- spc[j] = ' ';
- spc[config->profile_depth] = '\0';
-
- mp_msg(MSGT_CFGPARSER, MSGL_INFO, "%s%s=%s\n", spc,
- p->opts[2*i], p->opts[2*i+1]);
-
-
- 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,','))) {
- int l = e-list;
- char tmp[l+1];
- if(!l) continue;
- memcpy(tmp,list,l);
- tmp[l] = '\0';
- show_profile(opt,name,tmp);
- list = e+1;
- }
- if(list[0] != '\0')
- show_profile(opt,name,list);
- }
- }
- config->profile_depth--;
- if(!config->profile_depth) mp_msg(MSGT_CFGPARSER, MSGL_INFO, "\n");
- return M_OPT_EXIT-1;
-}
-
-static int
-list_options(m_option_t *opt, char* name, char *param) {
- m_config_t* config = opt->priv;
- m_config_print_option_list(config);
- return M_OPT_EXIT;
-}