2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
33 //#include "m_config.h"
35 #include "stream/url.h"
36 #include "libavutil/avstring.h"
38 // Don't free for 'production' atm
43 const m_option_t
* m_option_list_find(const m_option_t
* list
,const char* name
) {
46 for(i
= 0 ; list
[i
].name
; i
++) {
47 int l
= strlen(list
[i
].name
) - 1;
48 if((list
[i
].type
->flags
& M_OPT_TYPE_ALLOW_WILDCARD
) &&
49 (l
> 0) && (list
[i
].name
[l
] == '*')) {
50 if(strncasecmp(list
[i
].name
,name
,l
) == 0)
52 } else if(strcasecmp(list
[i
].name
,name
) == 0)
58 // Default function that just does a memcpy
60 static void copy_opt(const m_option_t
* opt
,void* dst
,const void* src
) {
62 memcpy(dst
,src
,opt
->type
->size
);
65 // Helper for the print funcs (from man printf)
66 static char* dup_printf(const char *fmt
, ...) {
67 /* Guess we need no more than 50 bytes. */
71 if ((p
= malloc (size
)) == NULL
)
74 /* Try to print in the allocated space. */
76 n
= vsnprintf (p
, size
, fmt
, ap
);
78 /* If that worked, return the string. */
79 if (n
> -1 && n
< size
)
81 /* Else try again with more space. */
82 if (n
> -1) /* glibc 2.1 */
83 size
= n
+1; /* precisely what is needed */
85 size
*= 2; /* twice the old size */
86 if ((p
= realloc (p
, size
)) == NULL
)
94 #define VAL(x) (*(int*)(x))
96 static int parse_flag(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
97 if (src
== M_CONFIG_FILE
) {
98 if(!param
) return M_OPT_MISSING_PARAM
;
99 if (!strcasecmp(param
, "yes") || /* any other language? */
100 !strcasecmp(param
, "on") ||
101 !strcasecmp(param
, "ja") ||
102 !strcasecmp(param
, "si") ||
103 !strcasecmp(param
, "igen") ||
104 !strcasecmp(param
, "y") ||
105 !strcasecmp(param
, "j") ||
106 !strcasecmp(param
, "i") ||
107 !strcasecmp(param
, "tak") ||
108 !strcasecmp(param
, "ja") ||
109 !strcasecmp(param
, "true") ||
110 !strcmp(param
, "1")) {
111 if(dst
) VAL(dst
) = opt
->max
;
112 } else if (!strcasecmp(param
, "no") ||
113 !strcasecmp(param
, "off") ||
114 !strcasecmp(param
, "nein") ||
115 !strcasecmp(param
, "nicht") ||
116 !strcasecmp(param
, "nem") ||
117 !strcasecmp(param
, "n") ||
118 !strcasecmp(param
, "nie") ||
119 !strcasecmp(param
, "nej") ||
120 !strcasecmp(param
, "false") ||
121 !strcmp(param
, "0")) {
122 if(dst
) VAL(dst
) = opt
->min
;
124 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid parameter for %s flag: %s\n",name
, param
);
125 return M_OPT_INVALID
;
129 if(dst
) VAL(dst
) = opt
->max
;
134 static char* print_flag(const m_option_t
* opt
, const void* val
) {
135 if(VAL(val
) == opt
->min
)
138 return strdup("yes");
141 const m_option_type_t m_option_type_flag
= {
143 "need yes or no in config files",
156 static int parse_int(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
162 return M_OPT_MISSING_PARAM
;
164 tmp_int
= strtoll(param
, &endptr
, 10);
166 tmp_int
= strtoll(param
, &endptr
, 0);
168 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be an integer: %s\n",name
, param
);
169 return M_OPT_INVALID
;
172 if ((opt
->flags
& M_OPT_MIN
) && (tmp_int
< opt
->min
)) {
173 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be >= %d: %s\n", name
, (int) opt
->min
, param
);
174 return M_OPT_OUT_OF_RANGE
;
177 if ((opt
->flags
& M_OPT_MAX
) && (tmp_int
> opt
->max
)) {
178 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be <= %d: %s\n",name
, (int) opt
->max
, param
);
179 return M_OPT_OUT_OF_RANGE
;
183 if (opt
->type
->size
== sizeof(int64_t))
184 *(int64_t *)dst
= tmp_int
;
192 static char* print_int(const m_option_t
* opt
, const void* val
) {
193 if (opt
->type
->size
== sizeof(int64_t))
194 return dup_printf("%"PRId64
, *(const int64_t *)val
);
195 return dup_printf("%d",VAL(val
));
198 const m_option_type_t m_option_type_int
= {
211 const m_option_type_t m_option_type_int64
= {
224 static int parse_intpair(const struct m_option
*opt
, const char *name
,
225 const char *param
, void *dst
, int src
)
228 return M_OPT_MISSING_PARAM
;
230 char *s
= (char *)param
;
234 start
= strtol(s
, &s
, 10);
244 end
= strtol(s
, &s
, 10);
257 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid integer range "
258 "specification for option %s: %s\n", name
, param
);
259 return M_OPT_INVALID
;
262 const struct m_option_type m_option_type_intpair
= {
264 .size
= sizeof(int[2]),
265 .parse
= parse_intpair
,
270 static int parse_choice(const struct m_option
*opt
, const char *name
,
271 const char *param
, void *dst
, int src
)
274 return M_OPT_MISSING_PARAM
;
276 struct m_opt_choice_alternatives
*alt
;
277 for (alt
= opt
->priv
; alt
->name
; alt
++)
278 if (!strcmp(param
, alt
->name
))
281 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid value for option %s: %s\n",
283 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Valid values are:");
284 for (alt
= opt
->priv
; alt
->name
; alt
++)
285 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s", alt
->name
);
286 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
287 return M_OPT_INVALID
;
290 *(int *)dst
= alt
->value
;
295 static char *print_choice(const m_option_t
*opt
, const void *val
)
298 struct m_opt_choice_alternatives
*alt
;
299 for (alt
= opt
->priv
; alt
->name
; alt
++)
301 return strdup(alt
->name
);
305 const struct m_option_type m_option_type_choice
= {
306 .name
= "String", // same as arbitrary strings in option list for now
308 .parse
= parse_choice
,
309 .print
= print_choice
,
317 #define VAL(x) (*(double*)(x))
319 static int parse_double(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
325 return M_OPT_MISSING_PARAM
;
327 tmp_float
= strtod(param
, &endptr
);
332 tmp_float
/= strtod(endptr
+1, &endptr
);
336 /* we also handle floats specified with
337 * non-locale decimal point ::atmos
340 tmp_float
-= 1.0/pow(10,strlen(endptr
+1)) * strtod(endptr
+1, &endptr
);
342 tmp_float
+= 1.0/pow(10,strlen(endptr
+1)) * strtod(endptr
+1, &endptr
);
347 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be a floating point "
348 "number or a ratio (numerator[:/]denominator): %s\n",name
, param
);
349 return M_OPT_INVALID
;
352 if (opt
->flags
& M_OPT_MIN
)
353 if (tmp_float
< opt
->min
) {
354 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be >= %f: %s\n", name
, opt
->min
, param
);
355 return M_OPT_OUT_OF_RANGE
;
358 if (opt
->flags
& M_OPT_MAX
)
359 if (tmp_float
> opt
->max
) {
360 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be <= %f: %s\n", name
, opt
->max
, param
);
361 return M_OPT_OUT_OF_RANGE
;
364 if(dst
) VAL(dst
) = tmp_float
;
368 static char* print_double(const m_option_t
* opt
, const void* val
) {
370 return dup_printf("%f",VAL(val
));
373 const m_option_type_t m_option_type_double
= {
375 "double precision floating point number or ratio (numerator[:/]denominator)",
387 #define VAL(x) (*(float*)(x))
389 static int parse_float(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
391 int r
= parse_double(opt
, name
, param
, &tmp
, src
);
392 if(r
==1 && dst
) VAL(dst
) = tmp
;
396 static char* print_float(const m_option_t
* opt
, const void* val
) {
398 return dup_printf("%f",VAL(val
));
401 const m_option_type_t m_option_type_float
= {
403 "floating point number or ratio (numerator[:/]denominator)",
414 ///////////// Position
416 #define VAL(x) (*(off_t*)(x))
418 static int parse_position(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
423 return M_OPT_MISSING_PARAM
;
424 if (sscanf(param
, sizeof(off_t
) == sizeof(int) ?
425 "%d%c" : "%"PRId64
"%c", &tmp_off
, &dummy
) != 1) {
426 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be an integer: %s\n",opt
->name
,param
);
427 return M_OPT_INVALID
;
430 if (opt
->flags
& M_OPT_MIN
)
431 if (tmp_off
< opt
->min
) {
432 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,
433 "The %s option must be >= %"PRId64
": %s\n",
434 name
, (int64_t) opt
->min
, param
);
435 return M_OPT_OUT_OF_RANGE
;
438 if (opt
->flags
& M_OPT_MAX
)
439 if (tmp_off
> opt
->max
) {
440 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,
441 "The %s option must be <= %"PRId64
": %s\n",
442 name
, (int64_t) opt
->max
, param
);
443 return M_OPT_OUT_OF_RANGE
;
451 static char* print_position(const m_option_t
* opt
, const void* val
) {
452 return dup_printf("%"PRId64
,(int64_t)VAL(val
));
455 const m_option_type_t m_option_type_position
= {
472 #define VAL(x) (*(char**)(x))
474 static int parse_str(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
478 return M_OPT_MISSING_PARAM
;
480 if ((opt
->flags
& M_OPT_MIN
) && (strlen(param
) < opt
->min
)) {
481 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Parameter must be >= %d chars: %s\n",
482 (int) opt
->min
, param
);
483 return M_OPT_OUT_OF_RANGE
;
486 if ((opt
->flags
& M_OPT_MAX
) && (strlen(param
) > opt
->max
)) {
487 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Parameter must be <= %d chars: %s\n",
488 (int) opt
->max
, param
);
489 return M_OPT_OUT_OF_RANGE
;
494 VAL(dst
) = strdup(param
);
501 static char* print_str(const m_option_t
* opt
, const void* val
) {
502 return (val
&& VAL(val
) && strlen(VAL(val
)) > 0) ? strdup(VAL(val
)) : NULL
;
505 static void copy_str(const m_option_t
* opt
,void* dst
, const void* src
) {
508 free(VAL(dst
)); //FIXME!!!
510 VAL(dst
) = VAL(src
) ? strdup(VAL(src
)) : NULL
;
514 static void free_str(void* src
) {
517 free(VAL(src
)); //FIXME!!!
523 const m_option_type_t m_option_type_string
= {
536 //////////// String list
539 #define VAL(x) (*(char***)(x))
547 static void free_str_list(void* dst
) {
551 if(!dst
|| !VAL(dst
)) return;
556 for(i
= 0 ; d
[i
] != NULL
; i
++)
563 static int str_list_add(char** add
, int n
,void* dst
,int pre
) {
564 char** lst
= VAL(dst
);
567 if(!dst
) return M_OPT_PARSER_ERR
;
570 for(ln
= 0 ; lst
&& lst
[ln
] ; ln
++)
573 lst
= realloc(lst
,(n
+ln
+1)*sizeof(char*));
576 memmove(&lst
[n
],lst
,ln
*sizeof(char*));
577 memcpy(lst
,add
,n
*sizeof(char*));
579 memcpy(&lst
[ln
],add
,n
*sizeof(char*));
580 // (re-)add NULL-termination
590 static int str_list_del(char** del
, int n
,void* dst
) {
595 if(!dst
) return M_OPT_PARSER_ERR
;
598 for(ln
= 0 ; lst
&& lst
[ln
] ; ln
++)
602 for(i
= 0 ; del
[i
] != NULL
; i
++) {
603 idx
= strtol(del
[i
], &ep
, 0);
605 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid index: %s\n",del
[i
]);
610 if(idx
< 0 || idx
>= ln
) {
611 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Index %ld is out of range.\n",idx
);
627 d
= calloc(s
+1,sizeof(char*));
628 for(i
= 0, n
= 0 ; i
< ln
; i
++) {
629 if(!lst
[i
]) continue;
641 static char *get_nextsep(char *ptr
, char sep
, int modify
) {
642 char *last_ptr
= ptr
;
644 ptr
= strchr(ptr
, sep
);
645 if(ptr
&& ptr
>last_ptr
&& ptr
[-1]=='\\'){
646 if (modify
) memmove(ptr
-1, ptr
, strlen(ptr
)+1);
654 static int parse_str_list(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
655 int n
= 0,len
= strlen(opt
->name
);
657 char *ptr
= (char *)param
, *last_ptr
, **res
;
660 if(opt
->name
[len
-1] == '*' && ((int)strlen(name
) > len
- 1)) {
661 const char* n
= &name
[len
-1];
662 if(strcasecmp(n
,"-add") == 0)
664 else if(strcasecmp(n
,"-pre") == 0)
666 else if(strcasecmp(n
,"-del") == 0)
668 else if(strcasecmp(n
,"-clr") == 0)
671 return M_OPT_UNKNOWN
;
681 // All other ops need a param
682 if (param
== NULL
|| strlen(param
) == 0)
683 return M_OPT_MISSING_PARAM
;
685 // custom type for "profile" calls this but uses ->priv for something else
686 char separator
= opt
->type
== &m_option_type_string_list
&& opt
->priv
?
687 *(char *)opt
->priv
: OPTION_LIST_SEPARATOR
;
688 while(ptr
[0] != '\0') {
689 ptr
= get_nextsep(ptr
, separator
, 0);
698 return M_OPT_INVALID
;
699 if( ((opt
->flags
& M_OPT_MIN
) && (n
< opt
->min
)) ||
700 ((opt
->flags
& M_OPT_MAX
) && (n
> opt
->max
)) )
701 return M_OPT_OUT_OF_RANGE
;
705 res
= malloc((n
+2)*sizeof(char*));
706 ptr
= str
= strdup(param
);
711 ptr
= get_nextsep(ptr
, separator
, 1);
713 res
[n
] = strdup(last_ptr
);
717 len
= ptr
- last_ptr
;
718 res
[n
] = malloc(len
+ 1);
719 if(len
) strncpy(res
[n
],last_ptr
,len
);
729 return str_list_add(res
,n
,dst
,0);
731 return str_list_add(res
,n
,dst
,1);
733 return str_list_del(res
,n
,dst
);
743 static void copy_str_list(const m_option_t
* opt
,void* dst
, const void* src
) {
747 if(!(dst
&& src
)) return;
758 for(n
= 0 ; s
[n
] != NULL
; n
++)
760 d
= malloc((n
+1)*sizeof(char*));
762 d
[n
] = s
[n
] ? strdup(s
[n
]) : NULL
;
767 static char* print_str_list(const m_option_t
* opt
, const void* src
) {
769 char *ret
= NULL
,*last
= NULL
;
772 if(!(src
&& VAL(src
))) return NULL
;
775 for(i
= 0 ; lst
[i
] ; i
++) {
777 ret
= dup_printf("%s,%s",last
,lst
[i
]);
780 ret
= strdup(lst
[i
]);
783 if(last
&& last
!= ret
) free(last
);
787 const m_option_type_t m_option_type_string_list
= {
789 "A list of strings separated by ','\n"
790 "Option with a name ending in an * permits using the following suffix: \n"
791 "\t-add: Add the given parameters at the end of the list.\n"
792 "\t-pre: Add the given parameters at the beginning of the list.\n"
793 "\t-del: Remove the entry at the given indices.\n"
794 "\t-clr: Clear the list.\n"
795 "e.g: -vf-add flip,mirror -vf-del 2,5\n",
797 M_OPT_TYPE_DYNAMIC
| M_OPT_TYPE_ALLOW_WILDCARD
,
807 /////////////////// Func based options
809 // A chained list to save the various calls for func_param
810 typedef struct m_func_save m_func_save_t
;
818 #define VAL(x) (*(m_func_save_t**)(x))
820 static void free_func_pf(void* src
) {
837 // Parser for func_param
838 static int parse_func_pf(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
844 s
= calloc(1,sizeof(m_func_save_t
));
845 s
->name
= strdup(name
);
846 s
->param
= param
? strdup(param
) : NULL
;
850 for( ; p
->next
!= NULL
; p
= p
->next
)
859 static void copy_func_pf(const m_option_t
* opt
,void* dst
, const void* src
) {
860 m_func_save_t
*d
= NULL
, *s
,* last
= NULL
;
862 if(!(dst
&& src
)) return;
869 d
= calloc(1,sizeof(m_func_save_t
));
870 d
->name
= strdup(s
->name
);
871 d
->param
= s
->param
? strdup(s
->param
) : NULL
;
883 /////////////////// Func_param
885 static void set_func_param(const m_option_t
* opt
, void* dst
, const void* src
) {
893 for( ; s
!= NULL
; s
= s
->next
)
894 ((m_opt_func_param_t
) opt
->p
)(opt
,s
->param
);
897 const m_option_type_t m_option_type_func_param
= {
900 sizeof(m_func_save_t
*),
904 NULL
, // Nothing to do on save
914 static int parse_func(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
918 static void set_func(const m_option_t
* opt
,void* dst
, const void* src
) {
919 ((m_opt_func_t
) opt
->p
)(opt
);
922 const m_option_type_t m_option_type_func
= {
929 NULL
, // Nothing to do on save
935 /////////////////// Print
937 static int parse_print(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
938 if(opt
->type
== CONF_TYPE_PRINT_INDIRECT
)
939 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s", *(char **) opt
->p
);
940 else if(opt
->type
== CONF_TYPE_PRINT_FUNC
)
941 return ((m_opt_func_full_t
) opt
->p
)(opt
,name
,param
);
943 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s", mp_gtext(opt
->p
));
945 if(opt
->priv
== NULL
)
950 const m_option_type_t m_option_type_print
= {
963 const m_option_type_t m_option_type_print_indirect
= {
976 const m_option_type_t m_option_type_print_func
= {
980 M_OPT_TYPE_ALLOW_WILDCARD
,
990 /////////////////////// Subconfig
992 #define VAL(x) (*(char***)(x))
994 static int parse_subconf(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
998 const m_option_t
*subopts
;
1002 if (param
== NULL
|| strlen(param
) == 0)
1003 return M_OPT_MISSING_PARAM
;
1005 subparam
= malloc(strlen(param
)+1);
1006 subopt
= malloc(strlen(param
)+1);
1014 int optlen
= strcspn(p
, ":=");
1016 subopt
[0] = subparam
[0] = 0;
1017 av_strlcpy(subopt
, p
, optlen
+ 1);
1024 optlen
= strcspn(p
, "\"");
1025 av_strlcpy(subparam
, p
, optlen
+ 1);
1028 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Terminating '\"' missing for '%s'\n", subopt
);
1029 return M_OPT_INVALID
;
1032 } else if (p
[0] == '%') {
1034 optlen
= (int)strtol(p
, (char**)&p
, 0);
1035 if (!p
|| p
[0] != '%' || (optlen
> strlen(p
) - 1)) {
1036 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid length %i for '%s'\n", optlen
, subopt
);
1037 return M_OPT_INVALID
;
1040 av_strlcpy(subparam
, p
, optlen
+ 1);
1043 optlen
= strcspn(p
, ":");
1044 av_strlcpy(subparam
, p
, optlen
+ 1);
1051 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Incorrect termination for '%s'\n", subopt
);
1052 return M_OPT_INVALID
;
1060 for(i
= 0 ; subopts
[i
].name
; i
++) {
1061 if(!strcmp(subopts
[i
].name
,subopt
)) break;
1063 if(!subopts
[i
].name
) {
1064 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Unknown suboption %s\n",name
,subopt
);
1065 return M_OPT_UNKNOWN
;
1067 r
= m_option_parse(&subopts
[i
],subopt
,
1068 subparam
[0] == 0 ? NULL
: subparam
,NULL
,src
);
1071 lst
= realloc(lst
,2 * (nr
+2) * sizeof(char*));
1072 lst
[2*nr
] = strdup(subopt
);
1073 lst
[2*nr
+1] = subparam
[0] == 0 ? NULL
: strdup(subparam
);
1074 memset(&lst
[2*(nr
+1)],0,2*sizeof(char*));
1089 const m_option_type_t m_option_type_subconfig
= {
1091 "The syntax is -option opt1=foo:flag:opt2=blah",
1093 M_OPT_TYPE_HAS_CHILD
,
1102 #include "libmpcodecs/img_format.h"
1104 /* FIXME: snyc with img_format.h */
1108 } mp_imgfmt_list
[] = {
1109 {"444p16le", IMGFMT_444P16_LE
},
1110 {"444p16be", IMGFMT_444P16_BE
},
1111 {"444p10le", IMGFMT_444P10_LE
},
1112 {"444p10be", IMGFMT_444P10_BE
},
1113 {"444p9le", IMGFMT_444P9_LE
},
1114 {"444p9be", IMGFMT_444P9_BE
},
1115 {"422p16le", IMGFMT_422P16_LE
},
1116 {"422p16be", IMGFMT_422P16_BE
},
1117 {"422p10le", IMGFMT_422P10_LE
},
1118 {"422p10be", IMGFMT_422P10_BE
},
1119 {"420p16le", IMGFMT_420P16_LE
},
1120 {"420p16be", IMGFMT_420P16_BE
},
1121 {"420p10le", IMGFMT_420P10_LE
},
1122 {"420p10be", IMGFMT_420P10_BE
},
1123 {"420p9le", IMGFMT_420P9_LE
},
1124 {"420p9be", IMGFMT_420P9_BE
},
1125 {"444p16", IMGFMT_444P16
},
1126 {"444p10", IMGFMT_444P10
},
1127 {"444p9", IMGFMT_444P9
},
1128 {"422p16", IMGFMT_422P16
},
1129 {"422p10", IMGFMT_422P10
},
1130 {"420p10", IMGFMT_420P10
},
1131 {"420p9", IMGFMT_420P9
},
1132 {"420p16", IMGFMT_420P16
},
1133 {"420a", IMGFMT_420A
},
1134 {"444p", IMGFMT_444P
},
1135 {"422p", IMGFMT_422P
},
1136 {"411p", IMGFMT_411P
},
1137 {"440p", IMGFMT_440P
},
1138 {"yuy2", IMGFMT_YUY2
},
1139 {"uyvy", IMGFMT_UYVY
},
1140 {"yvu9", IMGFMT_YVU9
},
1141 {"if09", IMGFMT_IF09
},
1142 {"yv12", IMGFMT_YV12
},
1143 {"i420", IMGFMT_I420
},
1144 {"iyuv", IMGFMT_IYUV
},
1145 {"clpl", IMGFMT_CLPL
},
1146 {"hm12", IMGFMT_HM12
},
1147 {"y800", IMGFMT_Y800
},
1149 {"nv12", IMGFMT_NV12
},
1150 {"nv21", IMGFMT_NV21
},
1151 {"bgr24", IMGFMT_BGR24
},
1152 {"bgr32", IMGFMT_BGR32
},
1153 {"bgr16", IMGFMT_BGR16
},
1154 {"bgr15", IMGFMT_BGR15
},
1155 {"bgr12", IMGFMT_BGR12
},
1156 {"bgr8", IMGFMT_BGR8
},
1157 {"bgr4", IMGFMT_BGR4
},
1158 {"bg4b", IMGFMT_BG4B
},
1159 {"bgr1", IMGFMT_BGR1
},
1160 {"rgb48be", IMGFMT_RGB48BE
},
1161 {"rgb48le", IMGFMT_RGB48LE
},
1162 {"rgb48ne", IMGFMT_RGB48NE
},
1163 {"rgb24", IMGFMT_RGB24
},
1164 {"rgb32", IMGFMT_RGB32
},
1165 {"rgb16", IMGFMT_RGB16
},
1166 {"rgb15", IMGFMT_RGB15
},
1167 {"rgb12", IMGFMT_RGB12
},
1168 {"rgb8", IMGFMT_RGB8
},
1169 {"rgb4", IMGFMT_RGB4
},
1170 {"rg4b", IMGFMT_RG4B
},
1171 {"rgb1", IMGFMT_RGB1
},
1172 {"rgba", IMGFMT_RGBA
},
1173 {"argb", IMGFMT_ARGB
},
1174 {"bgra", IMGFMT_BGRA
},
1175 {"abgr", IMGFMT_ABGR
},
1176 {"mjpeg", IMGFMT_MJPEG
},
1177 {"mjpg", IMGFMT_MJPEG
},
1181 static int parse_imgfmt(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
1185 if (param
== NULL
|| strlen(param
) == 0)
1186 return M_OPT_MISSING_PARAM
;
1188 if(!strcmp(param
,"help")) {
1189 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available formats:");
1190 for(i
= 0 ; mp_imgfmt_list
[i
].name
; i
++)
1191 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s",mp_imgfmt_list
[i
].name
);
1192 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1193 return M_OPT_EXIT
- 1;
1196 if (sscanf(param
, "0x%x", &fmt
) != 1)
1198 for(i
= 0 ; mp_imgfmt_list
[i
].name
; i
++) {
1199 if(!strcasecmp(param
,mp_imgfmt_list
[i
].name
)) {
1200 fmt
=mp_imgfmt_list
[i
].fmt
;
1204 if(!mp_imgfmt_list
[i
].name
) {
1205 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: unknown format name: '%s'\n",name
,param
);
1206 return M_OPT_INVALID
;
1211 *((uint32_t*)dst
) = fmt
;
1216 const m_option_type_t m_option_type_imgfmt
= {
1218 "Please report any missing colorspaces.",
1229 #include "libaf/af_format.h"
1231 /* FIXME: snyc with af_format.h */
1235 } mp_afmt_list
[] = {
1237 {"mulaw", AF_FORMAT_MU_LAW
},
1238 {"alaw", AF_FORMAT_A_LAW
},
1239 {"mpeg2", AF_FORMAT_MPEG2
},
1240 {"ac3le", AF_FORMAT_AC3_LE
},
1241 {"ac3be", AF_FORMAT_AC3_BE
},
1242 {"ac3ne", AF_FORMAT_AC3_NE
},
1243 {"imaadpcm", AF_FORMAT_IMA_ADPCM
},
1245 {"u8", AF_FORMAT_U8
},
1246 {"s8", AF_FORMAT_S8
},
1247 {"u16le", AF_FORMAT_U16_LE
},
1248 {"u16be", AF_FORMAT_U16_BE
},
1249 {"u16ne", AF_FORMAT_U16_NE
},
1250 {"s16le", AF_FORMAT_S16_LE
},
1251 {"s16be", AF_FORMAT_S16_BE
},
1252 {"s16ne", AF_FORMAT_S16_NE
},
1253 {"u24le", AF_FORMAT_U24_LE
},
1254 {"u24be", AF_FORMAT_U24_BE
},
1255 {"u24ne", AF_FORMAT_U24_NE
},
1256 {"s24le", AF_FORMAT_S24_LE
},
1257 {"s24be", AF_FORMAT_S24_BE
},
1258 {"s24ne", AF_FORMAT_S24_NE
},
1259 {"u32le", AF_FORMAT_U32_LE
},
1260 {"u32be", AF_FORMAT_U32_BE
},
1261 {"u32ne", AF_FORMAT_U32_NE
},
1262 {"s32le", AF_FORMAT_S32_LE
},
1263 {"s32be", AF_FORMAT_S32_BE
},
1264 {"s32ne", AF_FORMAT_S32_NE
},
1265 {"floatle", AF_FORMAT_FLOAT_LE
},
1266 {"floatbe", AF_FORMAT_FLOAT_BE
},
1267 {"floatne", AF_FORMAT_FLOAT_NE
},
1271 static int parse_afmt(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
1275 if (param
== NULL
|| strlen(param
) == 0)
1276 return M_OPT_MISSING_PARAM
;
1278 if(!strcmp(param
,"help")) {
1279 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available formats:");
1280 for(i
= 0 ; mp_afmt_list
[i
].name
; i
++)
1281 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s",mp_afmt_list
[i
].name
);
1282 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1283 return M_OPT_EXIT
- 1;
1286 if (sscanf(param
, "0x%x", &fmt
) != 1)
1288 for(i
= 0 ; mp_afmt_list
[i
].name
; i
++) {
1289 if(!strcasecmp(param
,mp_afmt_list
[i
].name
)) {
1290 fmt
=mp_afmt_list
[i
].fmt
;
1294 if(!mp_afmt_list
[i
].name
) {
1295 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: unknown format name: '%s'\n",name
,param
);
1296 return M_OPT_INVALID
;
1301 *((uint32_t*)dst
) = fmt
;
1306 const m_option_type_t m_option_type_afmt
= {
1308 "Please report any missing formats.",
1320 int parse_timestring(const char *str
, double *time
, char endchar
)
1324 *time
= 0; /* ensure initialization for error cases */
1325 if (sscanf(str
, "%d:%d:%lf%n", &a
, &b
, &d
, &len
) >= 3)
1326 *time
= 3600*a
+ 60*b
+ d
;
1327 else if (sscanf(str
, "%d:%lf%n", &a
, &d
, &len
) >= 2)
1329 else if (sscanf(str
, "%lf%n", &d
, &len
) >= 1)
1332 return 0; /* unsupported time format */
1333 if (str
[len
] && str
[len
] != endchar
)
1334 return 0; /* invalid extra characters at the end */
1339 static int parse_time(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
)
1343 if (param
== NULL
|| strlen(param
) == 0)
1344 return M_OPT_MISSING_PARAM
;
1346 if (!parse_timestring(param
, &time
, 0)) {
1347 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: invalid time: '%s'\n",
1349 return M_OPT_INVALID
;
1353 *(double *)dst
= time
;
1357 const m_option_type_t m_option_type_time
= {
1371 // Time or size (-endpos)
1373 static int parse_time_size(const m_option_t
* opt
,const char *name
, const char *param
, void* dst
, int src
) {
1378 if (param
== NULL
|| strlen(param
) == 0)
1379 return M_OPT_MISSING_PARAM
;
1382 /* End at size parsing */
1383 if(sscanf(param
, "%lf%3s", &end_at
, unit
) == 2) {
1384 ts
.type
= END_AT_SIZE
;
1385 if(!strcasecmp(unit
, "b"))
1387 else if(!strcasecmp(unit
, "kb"))
1389 else if(!strcasecmp(unit
, "mb"))
1390 end_at
*= 1024*1024;
1391 else if(!strcasecmp(unit
, "gb"))
1392 end_at
*= 1024*1024*1024;
1394 ts
.type
= END_AT_NONE
;
1396 if (ts
.type
== END_AT_SIZE
) {
1402 /* End at time parsing. This has to be last because the parsing accepts
1403 * even a number followed by garbage */
1404 if (!parse_timestring(param
, &end_at
, 0)) {
1405 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: invalid time or size: '%s'\n",
1407 return M_OPT_INVALID
;
1410 ts
.type
= END_AT_TIME
;
1414 *(m_time_size_t
*)dst
= ts
;
1418 const m_option_type_t m_option_type_time_size
= {
1421 sizeof(m_time_size_t
),
1432 //// Objects (i.e. filters, etc) settings
1434 #include "m_struct.h"
1437 #define VAL(x) (*(m_obj_settings_t**)(x))
1439 static int find_obj_desc(const char* name
,const m_obj_list_t
* l
,const m_struct_t
** ret
) {
1443 for(i
= 0 ; l
->list
[i
] ; i
++) {
1444 n
= M_ST_MB(char*,l
->list
[i
],l
->name_off
);
1445 if(!strcmp(n
,name
)) {
1446 *ret
= M_ST_MB(m_struct_t
*,l
->list
[i
],l
->desc_off
);
1453 static int get_obj_param(const char* opt_name
,const char* obj_name
, const m_struct_t
* desc
,
1454 char* str
,int* nold
,int oldmax
,char** dst
) {
1456 const m_option_t
* opt
;
1459 eq
= strchr(str
,'=');
1465 if(p
[0] == '\0') p
= NULL
;
1467 opt
= m_option_list_find(desc
->fields
,str
);
1469 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s doesn't have a %s parameter.\n",opt_name
,obj_name
,str
);
1470 return M_OPT_UNKNOWN
;
1472 r
= m_option_parse(opt
,str
,p
,NULL
,M_CONFIG_FILE
);
1475 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while parsing %s parameter %s (%s)\n",opt_name
,obj_name
,str
,p
);
1480 dst
[0] = strdup(str
);
1481 dst
[1] = p
? strdup(p
) : NULL
;
1485 if((*nold
) >= oldmax
) {
1486 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s has only %d params, so you can't give more than %d unnamed params.\n",
1487 opt_name
,obj_name
,oldmax
,oldmax
);
1488 return M_OPT_OUT_OF_RANGE
;
1490 opt
= &desc
->fields
[(*nold
)];
1491 r
= m_option_parse(opt
,opt
->name
,str
,NULL
,M_CONFIG_FILE
);
1494 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while parsing %s parameter %s (%s)\n",opt_name
,obj_name
,opt
->name
,str
);
1498 dst
[0] = strdup(opt
->name
);
1499 dst
[1] = strdup(str
);
1506 static int get_obj_params(const char* opt_name
, const char* name
,char* params
,
1507 const m_struct_t
* desc
,char separator
, char*** _ret
) {
1508 int n
= 0,nold
= 0, nopts
,r
;
1509 char* ptr
,*last_ptr
= params
;
1512 if(!strcmp(params
,"help")) { // Help
1513 char min
[50],max
[50];
1515 printf("%s doesn't have any options.\n\n",name
);
1516 return M_OPT_EXIT
- 1;
1518 printf("\n Name Type Min Max\n\n");
1519 for(n
= 0 ; desc
->fields
[n
].name
; n
++) {
1520 const m_option_t
* opt
= &desc
->fields
[n
];
1521 if(opt
->type
->flags
& M_OPT_TYPE_HAS_CHILD
) continue;
1522 if(opt
->flags
& M_OPT_MIN
)
1523 sprintf(min
,"%-8.0f",opt
->min
);
1526 if(opt
->flags
& M_OPT_MAX
)
1527 sprintf(max
,"%-8.0f",opt
->max
);
1530 printf(" %-20.20s %-15.15s %-10.10s %-10.10s\n",
1537 return M_OPT_EXIT
- 1;
1540 for(nopts
= 0 ; desc
->fields
[nopts
].name
; nopts
++)
1543 // TODO : Check that each opt can be parsed
1545 while(last_ptr
&& last_ptr
[0] != '\0') {
1546 ptr
= strchr(last_ptr
,separator
);
1548 r
= get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,NULL
);
1552 if(ptr
== last_ptr
) { // Empty field, count it and go on
1558 r
= get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,NULL
);
1565 if (!last_ptr
[0]) // count an empty field at the end, too
1568 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Too many options for %s\n", name
);
1569 return M_OPT_OUT_OF_RANGE
;
1571 if(!_ret
) // Just test
1573 if (n
== 0) // No options or only empty options
1576 ret
= malloc((n
+2)*2*sizeof(char*));
1580 while(last_ptr
&& last_ptr
[0] != '\0') {
1581 ptr
= strchr(last_ptr
,separator
);
1583 get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,&ret
[n
*2]);
1587 if(ptr
== last_ptr
) { // Empty field, count it and go on
1593 get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,&ret
[n
*2]);
1597 ret
[n
*2] = ret
[n
*2+1] = NULL
;
1603 static int parse_obj_params(const m_option_t
* opt
,const char *name
,
1604 const char *param
, void* dst
, int src
) {
1607 m_obj_params_t
* p
= opt
->priv
;
1608 const m_struct_t
* desc
;
1611 // We need the object desc
1613 return M_OPT_INVALID
;
1616 cpy
= strdup(param
);
1617 r
= get_obj_params(name
,desc
->name
,cpy
,desc
,p
->separator
,dst
? &opts
: NULL
);
1623 if (!opts
) // no arguments given
1626 for(r
= 0 ; opts
[r
] ; r
+= 2)
1627 m_struct_set(desc
,dst
,opts
[r
],opts
[r
+1]);
1633 const m_option_type_t m_option_type_obj_params
= {
1646 /// Some predefined types as a definition would be quite lengthy
1649 static const m_span_t m_span_params_dflts
= { -1, -1 };
1650 static const m_option_t m_span_params_fields
[] = {
1651 {"start", M_ST_OFF(m_span_t
,start
), CONF_TYPE_INT
, M_OPT_MIN
, 1 ,0, NULL
},
1652 {"end", M_ST_OFF(m_span_t
,end
), CONF_TYPE_INT
, M_OPT_MIN
, 1 ,0, NULL
},
1653 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
1655 static const struct m_struct_st m_span_opts
= {
1658 &m_span_params_dflts
,
1659 m_span_params_fields
1661 const m_obj_params_t m_span_params_def
= {
1666 static int parse_obj_settings(const char* opt
,char* str
,const m_obj_list_t
* list
,
1667 m_obj_settings_t
**_ret
, int ret_n
) {
1669 char *param
,**plist
= NULL
;
1670 const m_struct_t
* desc
;
1671 m_obj_settings_t
*ret
= _ret
? *_ret
: NULL
;
1674 // Now check that the object exists
1675 param
= strchr(str
,'=');
1679 if(strlen(param
) <= 0)
1684 if(!find_obj_desc(str
,list
,&desc
)) {
1685 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s doesn't exist.\n",opt
,str
);
1686 return M_OPT_INVALID
;
1691 if(!strcmp(param
,"help")) {
1692 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Option %s: %s have no option description.\n",opt
,str
);
1693 return M_OPT_EXIT
- 1;
1695 plist
= calloc(4,sizeof(char*));
1696 plist
[0] = strdup("_oldargs_");
1697 plist
[1] = strdup(param
);
1699 r
= get_obj_params(opt
,str
,param
,desc
,':',_ret
? &plist
: NULL
);
1707 ret
= realloc(ret
,(ret_n
+2)*sizeof(m_obj_settings_t
));
1708 memset(&ret
[ret_n
],0,2*sizeof(m_obj_settings_t
));
1709 ret
[ret_n
].name
= strdup(str
);
1710 ret
[ret_n
].attribs
= plist
;
1716 static int obj_settings_list_del(const char *opt_name
,const char *param
,void* dst
, int src
) {
1717 char** str_list
= NULL
;
1718 int r
,i
,idx_max
= 0;
1719 char* rem_id
= "_removed_marker_";
1720 const m_option_t list_opt
= {opt_name
, NULL
, CONF_TYPE_STRING_LIST
,
1722 m_obj_settings_t
* obj_list
= dst
? VAL(dst
) : NULL
;
1724 if(dst
&& !obj_list
) {
1725 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: the list is empty.\n",opt_name
);
1727 } else if(obj_list
) {
1728 for(idx_max
= 0 ; obj_list
[idx_max
].name
!= NULL
; idx_max
++)
1732 r
= m_option_parse(&list_opt
,opt_name
,param
,&str_list
,src
);
1733 if(r
< 0 || !str_list
)
1736 for(r
= 0 ; str_list
[r
] ; r
++) {
1739 id
= strtol(str_list
[r
],&endptr
,0);
1740 if(endptr
== str_list
[r
]) {
1741 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: invalid parameter. We need a list of integers which are the indices of the elements to remove.\n",opt_name
);
1742 m_option_free(&list_opt
,&str_list
);
1743 return M_OPT_INVALID
;
1745 if(!obj_list
) continue;
1746 if(id
>= idx_max
|| id
< -idx_max
) {
1747 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: Index %d is out of range.\n",opt_name
,id
);
1752 free(obj_list
[id
].name
);
1753 free_str_list(&(obj_list
[id
].attribs
));
1754 obj_list
[id
].name
= rem_id
;
1758 m_option_free(&list_opt
,&str_list
);
1762 for(i
= 0 ; obj_list
[i
].name
; i
++) {
1763 while(obj_list
[i
].name
== rem_id
) {
1764 memmove(&obj_list
[i
],&obj_list
[i
+1],sizeof(m_obj_settings_t
)*(idx_max
- i
));
1768 obj_list
= realloc(obj_list
,sizeof(m_obj_settings_t
)*(idx_max
+1));
1769 VAL(dst
) = obj_list
;
1774 static void free_obj_settings_list(void* dst
) {
1776 m_obj_settings_t
*d
;
1778 if (!dst
|| !VAL(dst
)) return;
1782 for (n
= 0 ; d
[n
].name
; n
++) {
1784 free_str_list(&(d
[n
].attribs
));
1791 static int parse_obj_settings_list(const m_option_t
* opt
,const char *name
,
1792 const char *param
, void* dst
, int src
) {
1793 int n
= 0,r
,len
= strlen(opt
->name
);
1795 char *ptr
, *last_ptr
;
1796 m_obj_settings_t
*res
= NULL
,*queue
= NULL
,*head
= NULL
;
1799 // We need the objects list
1801 return M_OPT_INVALID
;
1803 if(opt
->name
[len
-1] == '*' && ((int)strlen(name
) > len
- 1)) {
1804 const char* n
= &name
[len
-1];
1805 if(strcasecmp(n
,"-add") == 0)
1807 else if(strcasecmp(n
,"-pre") == 0)
1809 else if(strcasecmp(n
,"-del") == 0)
1811 else if(strcasecmp(n
,"-clr") == 0)
1815 strncpy(prefix
,opt
->name
,len
-1);
1816 prefix
[len
-1] = '\0';
1817 mp_msg(MSGT_VFILTER
,MSGL_ERR
, "Option %s: unknown postfix %s\n"
1818 "Supported postfixes are:\n"
1820 " Append the given list to the current list\n\n"
1822 " Prepend the given list to the current list\n\n"
1824 " Remove the given elements. Take the list element index (starting from 0).\n"
1825 " Negative index can be used (i.e. -1 is the last element)\n\n"
1827 " Clear the current list.\n",name
,n
,prefix
,prefix
,prefix
,prefix
);
1829 return M_OPT_UNKNOWN
;
1833 // Clear the list ??
1836 free_obj_settings_list(dst
);
1840 if (param
== NULL
|| strlen(param
) == 0)
1841 return M_OPT_MISSING_PARAM
;
1845 if(dst
) head
= VAL(dst
);
1848 if(dst
) queue
= VAL(dst
);
1851 return obj_settings_list_del(name
,param
,dst
,src
);
1854 free_obj_settings_list(dst
);
1857 mp_msg(MSGT_VFILTER
,MSGL_ERR
, "Option %s: FIXME\n",name
);
1858 return M_OPT_UNKNOWN
;
1861 if(!strcmp(param
,"help")) {
1862 m_obj_list_t
* ol
= opt
->priv
;
1863 mp_msg(MSGT_VFILTER
,MSGL_INFO
,"Available video filters:\n");
1864 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VIDEO_FILTERS\n");
1865 for(n
= 0 ; ol
->list
[n
] ; n
++)
1866 mp_msg(MSGT_VFILTER
,MSGL_INFO
," %-15s: %s\n",
1867 M_ST_MB(char*,ol
->list
[n
],ol
->name_off
),
1868 M_ST_MB(char*,ol
->list
[n
],ol
->info_off
));
1869 mp_msg(MSGT_VFILTER
,MSGL_INFO
,"\n");
1870 return M_OPT_EXIT
- 1;
1872 ptr
= str
= strdup(param
);
1874 while(ptr
[0] != '\0') {
1876 ptr
= get_nextsep(ptr
, OPTION_LIST_SEPARATOR
, 1);
1879 r
= parse_obj_settings(name
,last_ptr
,opt
->priv
,dst
? &res
: NULL
,n
);
1888 r
= parse_obj_settings(name
,last_ptr
,opt
->priv
,dst
? &res
: NULL
,n
);
1898 return M_OPT_INVALID
;
1900 if( ((opt
->flags
& M_OPT_MIN
) && (n
< opt
->min
)) ||
1901 ((opt
->flags
& M_OPT_MAX
) && (n
> opt
->max
)) )
1902 return M_OPT_OUT_OF_RANGE
;
1907 for(qsize
= 0 ; queue
[qsize
].name
; qsize
++)
1909 res
= realloc(res
,(qsize
+n
+1)*sizeof(m_obj_settings_t
));
1910 memcpy(&res
[n
],queue
,(qsize
+1)*sizeof(m_obj_settings_t
));
1916 for(hsize
= 0 ; head
[hsize
].name
; hsize
++)
1918 head
= realloc(head
,(hsize
+n
+1)*sizeof(m_obj_settings_t
));
1919 memcpy(&head
[hsize
],res
,(n
+1)*sizeof(m_obj_settings_t
));
1928 static void copy_obj_settings_list(const m_option_t
* opt
,void* dst
, const void* src
) {
1929 m_obj_settings_t
*d
,*s
;
1938 free_obj_settings_list(dst
);
1943 for(n
= 0 ; s
[n
].name
; n
++)
1945 d
= malloc((n
+1)*sizeof(m_obj_settings_t
));
1946 for(n
= 0 ; s
[n
].name
; n
++) {
1947 d
[n
].name
= strdup(s
[n
].name
);
1948 d
[n
].attribs
= NULL
;
1949 copy_str_list(NULL
,&(d
[n
].attribs
),&(s
[n
].attribs
));
1952 d
[n
].attribs
= NULL
;
1956 const m_option_type_t m_option_type_obj_settings_list
= {
1957 "Object settings list",
1959 sizeof(m_obj_settings_t
*),
1960 M_OPT_TYPE_DYNAMIC
|M_OPT_TYPE_ALLOW_WILDCARD
,
1961 parse_obj_settings_list
,
1963 copy_obj_settings_list
,
1964 copy_obj_settings_list
,
1965 copy_obj_settings_list
,
1966 free_obj_settings_list
,
1971 static int parse_obj_presets(const m_option_t
* opt
,const char *name
,
1972 const char *param
, void* dst
, int src
) {
1973 m_obj_presets_t
* obj_p
= (m_obj_presets_t
*)opt
->priv
;
1974 const m_struct_t
*in_desc
;
1975 const m_struct_t
*out_desc
;
1977 const unsigned char *pre
;
1978 char* pre_name
= NULL
;
1981 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Presets need a pointer to a m_obj_presets_t in the priv field.\n",name
);
1982 return M_OPT_PARSER_ERR
;
1986 return M_OPT_MISSING_PARAM
;
1988 pre
= obj_p
->presets
;
1989 in_desc
= obj_p
->in_desc
;
1990 out_desc
= obj_p
->out_desc
? obj_p
->out_desc
: obj_p
->in_desc
;
1993 if(!strcmp(param
,"help")) {
1994 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available presets for %s->%s:",out_desc
->name
,name
);
1995 for(pre
= obj_p
->presets
;(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) ;
1997 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s",pre_name
);
1998 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
1999 return M_OPT_EXIT
- 1;
2002 for(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
) ; pre_name
;
2003 pre
+= s
, pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) {
2004 if(!strcmp(pre_name
,param
)) break;
2007 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: There is no preset named %s\n"
2008 "Available presets are:",name
,param
);
2009 for(pre
= obj_p
->presets
;(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) ;
2011 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s",pre_name
);
2012 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
2013 return M_OPT_INVALID
;
2018 for(i
= 0 ; in_desc
->fields
[i
].name
; i
++) {
2019 const m_option_t
* out_opt
= m_option_list_find(out_desc
->fields
,
2020 in_desc
->fields
[i
].name
);
2022 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Unable to find the target option for field %s.\nPlease report this to the developers.\n",name
,in_desc
->fields
[i
].name
);
2023 return M_OPT_PARSER_ERR
;
2025 m_option_copy(out_opt
,M_ST_MB_P(dst
,out_opt
->p
),M_ST_MB_P(pre
,in_desc
->fields
[i
].p
));
2031 const m_option_type_t m_option_type_obj_presets
= {
2044 static int parse_custom_url(const m_option_t
* opt
,const char *name
,
2045 const char *url
, void* dst
, int src
) {
2046 int pos1
, pos2
, r
, v6addr
= 0;
2047 char *ptr1
=NULL
, *ptr2
=NULL
, *ptr3
=NULL
, *ptr4
=NULL
;
2048 m_struct_t
* desc
= opt
->priv
;
2051 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Custom URL needs a pointer to a m_struct_t in the priv field.\n",name
);
2052 return M_OPT_PARSER_ERR
;
2055 // extract the protocol
2056 ptr1
= strstr(url
, "://");
2059 if(m_option_list_find(desc
->fields
,"filename")) {
2060 m_struct_set(desc
,dst
,"filename",url
);
2063 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,"Option %s: URL doesn't have a valid protocol!\n",name
);
2064 return M_OPT_INVALID
;
2066 if(m_option_list_find(desc
->fields
,"string")) {
2067 if(strlen(ptr1
)>3) {
2068 m_struct_set(desc
,dst
,"string",ptr1
+3);
2073 if(dst
&& m_option_list_find(desc
->fields
,"protocol")) {
2075 r
= m_struct_set(desc
,dst
,"protocol",url
);
2078 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting protocol.\n",name
);
2087 // check if a username:password is given
2088 ptr2
= strstr(ptr1
, "@");
2089 ptr3
= strstr(ptr1
, "/");
2090 if( ptr3
!=NULL
&& ptr3
<ptr2
) {
2091 // it isn't really a username but rather a part of the path
2096 // We got something, at least a username...
2097 if(!m_option_list_find(desc
->fields
,"username")) {
2098 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a username part.\n",name
);
2101 ptr3
= strstr(ptr1
, ":");
2102 if( ptr3
!=NULL
&& ptr3
<ptr2
) {
2103 // We also have a password
2104 if(!m_option_list_find(desc
->fields
,"password")) {
2105 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a password part.\n",name
);
2107 } else { // Username and password
2110 r
= m_struct_set(desc
,dst
,"username",ptr1
);
2113 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting username.\n",name
);
2117 r
= m_struct_set(desc
,dst
,"password",ptr3
+1);
2120 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting password.\n",name
);
2125 } else { // User name only
2127 r
= m_struct_set(desc
,dst
,"username",ptr1
);
2130 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting username.\n",name
);
2139 // before looking for a port number check if we have an IPv6 type numeric address
2140 // in an IPv6 URL the numeric address should be inside square braces.
2141 ptr2
= strstr(ptr1
, "[");
2142 ptr3
= strstr(ptr1
, "]");
2143 // If the [] is after the first it isn't the hostname
2144 ptr4
= strstr(ptr1
, "/");
2145 if( ptr2
!=NULL
&& ptr3
!=NULL
&& (ptr2
< ptr3
) && (!ptr4
|| ptr4
> ptr3
)) {
2146 // we have an IPv6 numeric address
2155 // look if the port is given
2156 ptr2
= strstr(ptr2
, ":");
2157 // If the : is after the first / it isn't the port
2158 ptr3
= strstr(ptr1
, "/");
2159 if(ptr3
&& ptr3
- ptr2
< 0) ptr2
= NULL
;
2162 // Look if a path is given
2165 // So we have an URL like http://www.hostname.com
2168 // We have an URL like http://www.hostname.com/file.txt
2172 // We have an URL beginning like http://www.hostname.com:1212
2173 // Get the port number
2174 if(!m_option_list_find(desc
->fields
,"port")) {
2175 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a port part.\n",name
);
2179 int p
= atoi(ptr2
+1);
2181 snprintf(tmp
,99,"%d",p
);
2182 r
= m_struct_set(desc
,dst
,"port",tmp
);
2184 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting port.\n",name
);
2191 if( v6addr
) pos2
--;
2194 if(!m_option_list_find(desc
->fields
,"hostname")) {
2195 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a hostname part.\n",name
);
2198 char tmp
[pos2
-pos1
+1];
2199 strncpy(tmp
,ptr1
, pos2
-pos1
);
2200 tmp
[pos2
-pos1
] = '\0';
2201 r
= m_struct_set(desc
,dst
,"hostname",tmp
);
2203 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting hostname.\n",name
);
2208 // Look if a path is given
2209 ptr2
= strstr(ptr1
, "/");
2211 // A path/filename is given
2212 // check if it's not a trailing '/'
2213 if( strlen(ptr2
)>1 ) {
2214 // copy the path/filename in the URL container
2215 if(!m_option_list_find(desc
->fields
,"filename")) {
2216 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a hostname part.\n",name
);
2220 int l
= strlen(ptr2
+1) + 1;
2221 char* fname
= ptr2
+1;
2224 url_unescape_string(fname
,ptr2
+1);
2226 r
= m_struct_set(desc
,dst
,"filename",fname
);
2230 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting filename.\n",name
);
2240 /// TODO : Write the other needed funcs for 'normal' options
2241 const m_option_type_t m_option_type_custom_url
= {