16 //#include "m_config.h"
18 #include "stream/url.h"
20 // Don't free for 'production' atm
25 m_option_t
* m_option_list_find(m_option_t
* list
,const char* name
) {
28 for(i
= 0 ; list
[i
].name
; i
++) {
29 int l
= strlen(list
[i
].name
) - 1;
30 if((list
[i
].type
->flags
& M_OPT_TYPE_ALLOW_WILDCARD
) &&
31 (l
> 0) && (list
[i
].name
[l
] == '*')) {
32 if(strncasecmp(list
[i
].name
,name
,l
) == 0)
34 } else if(strcasecmp(list
[i
].name
,name
) == 0)
40 // Default function that just does a memcpy
42 static void copy_opt(m_option_t
* opt
,void* dst
,void* src
) {
44 memcpy(dst
,src
,opt
->type
->size
);
47 // Helper for the print funcs (from man printf)
48 static char* dup_printf(const char *fmt
, ...) {
49 /* Guess we need no more than 50 bytes. */
53 if ((p
= malloc (size
)) == NULL
)
56 /* Try to print in the allocated space. */
58 n
= vsnprintf (p
, size
, fmt
, ap
);
60 /* If that worked, return the string. */
61 if (n
> -1 && n
< size
)
63 /* Else try again with more space. */
64 if (n
> -1) /* glibc 2.1 */
65 size
= n
+1; /* precisely what is needed */
67 size
*= 2; /* twice the old size */
68 if ((p
= realloc (p
, size
)) == NULL
)
76 #define VAL(x) (*(int*)(x))
78 static int parse_flag(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
79 if (src
== M_CONFIG_FILE
) {
80 if(!param
) return M_OPT_MISSING_PARAM
;
81 if (!strcasecmp(param
, "yes") || /* any other language? */
82 !strcasecmp(param
, "on") ||
83 !strcasecmp(param
, "ja") ||
84 !strcasecmp(param
, "si") ||
85 !strcasecmp(param
, "igen") ||
86 !strcasecmp(param
, "y") ||
87 !strcasecmp(param
, "j") ||
88 !strcasecmp(param
, "i") ||
89 !strcasecmp(param
, "tak") ||
90 !strcasecmp(param
, "ja") ||
91 !strcasecmp(param
, "true") ||
92 !strcmp(param
, "1")) {
93 if(dst
) VAL(dst
) = opt
->max
;
94 } else if (!strcasecmp(param
, "no") ||
95 !strcasecmp(param
, "off") ||
96 !strcasecmp(param
, "nein") ||
97 !strcasecmp(param
, "nicht") ||
98 !strcasecmp(param
, "nem") ||
99 !strcasecmp(param
, "n") ||
100 !strcasecmp(param
, "nie") ||
101 !strcasecmp(param
, "nej") ||
102 !strcasecmp(param
, "false") ||
103 !strcmp(param
, "0")) {
104 if(dst
) VAL(dst
) = opt
->min
;
106 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid parameter for %s flag: %s\n",name
, param
);
107 return M_OPT_INVALID
;
111 if(dst
) VAL(dst
) = opt
->max
;
116 static char* print_flag(m_option_t
* opt
, void* val
) {
117 if(VAL(val
) == opt
->min
)
120 return strdup("yes");
123 m_option_type_t m_option_type_flag
= {
125 "need yes or no in config files",
138 static int parse_int(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
144 return M_OPT_MISSING_PARAM
;
146 tmp_int
= strtol(param
, &endptr
, 10);
148 tmp_int
= strtol(param
, &endptr
, 0);
150 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be an integer: %s\n",name
, param
);
151 return M_OPT_INVALID
;
154 if ((opt
->flags
& M_OPT_MIN
) && (tmp_int
< opt
->min
)) {
155 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be >= %d: %s\n", name
, (int) opt
->min
, param
);
156 return M_OPT_OUT_OF_RANGE
;
159 if ((opt
->flags
& M_OPT_MAX
) && (tmp_int
> opt
->max
)) {
160 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be <= %d: %s\n",name
, (int) opt
->max
, param
);
161 return M_OPT_OUT_OF_RANGE
;
164 if(dst
) VAL(dst
) = tmp_int
;
169 static char* print_int(m_option_t
* opt
, void* val
) {
171 return dup_printf("%d",VAL(val
));
174 m_option_type_t m_option_type_int
= {
190 #define VAL(x) (*(double*)(x))
192 static int parse_double(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
198 return M_OPT_MISSING_PARAM
;
200 tmp_float
= strtod(param
, &endptr
);
205 tmp_float
/= strtod(endptr
+1, &endptr
);
209 /* we also handle floats specified with
210 * non-locale decimal point ::atmos
213 tmp_float
-= 1.0/pow(10,strlen(endptr
+1)) * strtod(endptr
+1, &endptr
);
215 tmp_float
+= 1.0/pow(10,strlen(endptr
+1)) * strtod(endptr
+1, &endptr
);
220 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be a floating point "
221 "number or a ratio (numerator[:/]denominator): %s\n",name
, param
);
222 return M_OPT_INVALID
;
225 if (opt
->flags
& M_OPT_MIN
)
226 if (tmp_float
< opt
->min
) {
227 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be >= %f: %s\n", name
, opt
->min
, param
);
228 return M_OPT_OUT_OF_RANGE
;
231 if (opt
->flags
& M_OPT_MAX
)
232 if (tmp_float
> opt
->max
) {
233 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be <= %f: %s\n", name
, opt
->max
, param
);
234 return M_OPT_OUT_OF_RANGE
;
237 if(dst
) VAL(dst
) = tmp_float
;
241 static char* print_double(m_option_t
* opt
, void* val
) {
243 return dup_printf("%f",VAL(val
));
246 m_option_type_t m_option_type_double
= {
248 "double precission floating point number or ratio (numerator[:/]denominator)",
260 #define VAL(x) (*(float*)(x))
262 static int parse_float(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
264 int r
= parse_double(opt
, name
, param
, &tmp
, src
);
265 if(r
==1 && dst
) VAL(dst
) = tmp
;
269 static char* print_float(m_option_t
* opt
, void* val
) {
271 return dup_printf("%f",VAL(val
));
274 m_option_type_t m_option_type_float
= {
276 "floating point number or ratio (numerator[:/]denominator)",
287 ///////////// Position
289 #define VAL(x) (*(off_t*)(x))
291 static int parse_position(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
296 return M_OPT_MISSING_PARAM
;
297 if (sscanf(param
, sizeof(off_t
) == sizeof(int) ?
298 "%d%c" : "%"PRId64
"%c", &tmp_off
, &dummy
) != 1) {
299 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be an integer: %s\n",opt
->name
,param
);
300 return M_OPT_INVALID
;
303 if (opt
->flags
& M_OPT_MIN
)
304 if (tmp_off
< opt
->min
) {
305 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,
306 "The %s option must be >= %"PRId64
": %s\n",
307 name
, (int64_t) opt
->min
, param
);
308 return M_OPT_OUT_OF_RANGE
;
311 if (opt
->flags
& M_OPT_MAX
)
312 if (tmp_off
> opt
->max
) {
313 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,
314 "The %s option must be <= %"PRId64
": %s\n",
315 name
, (int64_t) opt
->max
, param
);
316 return M_OPT_OUT_OF_RANGE
;
324 static char* print_position(m_option_t
* opt
, void* val
) {
325 return dup_printf("%"PRId64
,(int64_t)VAL(val
));
328 m_option_type_t m_option_type_position
= {
345 #define VAL(x) (*(char**)(x))
347 static int parse_str(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
351 return M_OPT_MISSING_PARAM
;
353 if ((opt
->flags
& M_OPT_MIN
) && (strlen(param
) < opt
->min
)) {
354 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Parameter must be >= %d chars: %s\n",
355 (int) opt
->min
, param
);
356 return M_OPT_OUT_OF_RANGE
;
359 if ((opt
->flags
& M_OPT_MAX
) && (strlen(param
) > opt
->max
)) {
360 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Parameter must be <= %d chars: %s\n",
361 (int) opt
->max
, param
);
362 return M_OPT_OUT_OF_RANGE
;
368 VAL(dst
) = strdup(param
);
375 static char* print_str(m_option_t
* opt
, void* val
) {
376 return (val
&& VAL(val
) && strlen(VAL(val
)) > 0) ? strdup(VAL(val
)) : NULL
;
379 static void copy_str(m_option_t
* opt
,void* dst
, void* src
) {
382 if(VAL(dst
)) free(VAL(dst
)); //FIXME!!!
384 VAL(dst
) = VAL(src
) ? strdup(VAL(src
)) : NULL
;
388 static void free_str(void* src
) {
391 free(VAL(src
)); //FIXME!!!
397 m_option_type_t m_option_type_string
= {
410 //////////// String list
412 #define LIST_SEPARATOR ','
414 #define VAL(x) (*(char***)(x))
422 static void free_str_list(void* dst
) {
426 if(!dst
|| !VAL(dst
)) return;
431 for(i
= 0 ; d
[i
] != NULL
; i
++)
438 static int str_list_add(char** add
, int n
,void* dst
,int pre
) {
439 char** lst
= VAL(dst
);
442 if(!dst
) return M_OPT_PARSER_ERR
;
445 for(ln
= 0 ; lst
&& lst
[ln
] ; ln
++)
448 lst
= realloc(lst
,(n
+ln
+1)*sizeof(char*));
451 memmove(&lst
[n
],lst
,(ln
+1)*sizeof(char*));
452 memcpy(lst
,add
,n
*sizeof(char*));
454 memcpy(&lst
[ln
],add
,(n
+1)*sizeof(char*));
463 static int str_list_del(char** del
, int n
,void* dst
) {
468 if(!dst
) return M_OPT_PARSER_ERR
;
471 for(ln
= 0 ; lst
&& lst
[ln
] ; ln
++)
475 for(i
= 0 ; del
[i
] != NULL
; i
++) {
476 idx
= strtol(del
[i
], &ep
, 0);
478 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid index: %s\n",del
[i
]);
483 if(idx
< 0 || idx
>= ln
) {
484 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Index %ld is out of range.\n",idx
);
500 d
= calloc(s
+1,sizeof(char*));
501 for(i
= 0, n
= 0 ; i
< ln
; i
++) {
502 if(!lst
[i
]) continue;
515 static int parse_str_list(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
516 int n
= 0,len
= strlen(opt
->name
);
517 char *ptr
= param
, *last_ptr
, **res
;
520 if(opt
->name
[len
-1] == '*' && ((int)strlen(name
) > len
- 1)) {
521 char* n
= &name
[len
-1];
522 if(strcasecmp(n
,"-add") == 0)
524 else if(strcasecmp(n
,"-pre") == 0)
526 else if(strcasecmp(n
,"-del") == 0)
528 else if(strcasecmp(n
,"-clr") == 0)
531 return M_OPT_UNKNOWN
;
541 // All other ops need a param
542 if (param
== NULL
|| strlen(param
) == 0)
543 return M_OPT_MISSING_PARAM
;
546 while(ptr
[0] != '\0') {
548 ptr
= strchr(ptr
,LIST_SEPARATOR
);
557 return M_OPT_INVALID
;
558 if( ((opt
->flags
& M_OPT_MIN
) && (n
< opt
->min
)) ||
559 ((opt
->flags
& M_OPT_MAX
) && (n
> opt
->max
)) )
560 return M_OPT_OUT_OF_RANGE
;
564 res
= malloc((n
+2)*sizeof(char*));
570 ptr
= strchr(ptr
,LIST_SEPARATOR
);
572 res
[n
] = strdup(last_ptr
);
576 len
= ptr
- last_ptr
;
577 res
[n
] = malloc(len
+ 1);
578 if(len
) strncpy(res
[n
],last_ptr
,len
);
587 return str_list_add(res
,n
,dst
,0);
589 return str_list_add(res
,n
,dst
,1);
591 return str_list_del(res
,n
,dst
);
601 static void copy_str_list(m_option_t
* opt
,void* dst
, void* src
) {
605 if(!(dst
&& src
)) return;
616 for(n
= 0 ; s
[n
] != NULL
; n
++)
618 d
= malloc((n
+1)*sizeof(char*));
620 d
[n
] = s
[n
] ? strdup(s
[n
]) : NULL
;
625 static char* print_str_list(m_option_t
* opt
, void* src
) {
627 char *ret
= NULL
,*last
= NULL
;
630 if(!(src
&& VAL(src
))) return NULL
;
633 for(i
= 0 ; lst
[i
] ; i
++) {
635 ret
= dup_printf("%s,%s",last
,lst
[i
]);
638 ret
= strdup(lst
[i
]);
641 if(last
&& last
!= ret
) free(last
);
645 m_option_type_t m_option_type_string_list
= {
647 "A list of strings separated by ','\n"
648 "Option with a name ending in an * permits using the following suffix: \n"
649 "\t-add: Add the given parameters at the end of the list.\n"
650 "\t-pre: Add the given parameters at the begining of the list.\n"
651 "\t-del: Remove the entry at the given indices.\n"
652 "\t-clr: Clear the list.\n"
653 "e.g: -vf-add flip,mirror -vf-del 2,5\n",
655 M_OPT_TYPE_DYNAMIC
| M_OPT_TYPE_ALLOW_WILDCARD
,
665 /////////////////// Func based options
667 // A chained list to save the various calls for func_param and func_full
668 typedef struct m_func_save m_func_save_t
;
676 #define VAL(x) (*(m_func_save_t**)(x))
678 static void free_func_pf(void* src
) {
688 if(s
->param
) free(s
->param
);
695 // Parser for func_param and func_full
696 static int parse_func_pf(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
702 s
= calloc(1,sizeof(m_func_save_t
));
703 s
->name
= strdup(name
);
704 s
->param
= param
? strdup(param
) : NULL
;
708 for( ; p
->next
!= NULL
; p
= p
->next
)
717 static void copy_func_pf(m_option_t
* opt
,void* dst
, void* src
) {
718 m_func_save_t
*d
= NULL
, *s
,* last
= NULL
;
720 if(!(dst
&& src
)) return;
727 d
= calloc(1,sizeof(m_func_save_t
));
728 d
->name
= strdup(s
->name
);
729 d
->param
= s
->param
? strdup(s
->param
) : NULL
;
741 /////////////////// Func_param
743 static void set_func_param(m_option_t
* opt
, void* dst
, void* src
) {
752 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,opt
->name
);
753 for( ; s
!= NULL
; s
= s
->next
)
754 ((m_opt_func_param_t
) opt
->p
)(opt
,s
->param
);
757 m_option_type_t m_option_type_func_param
= {
760 sizeof(m_func_save_t
*),
764 NULL
, // Nothing to do on save
770 /////////////////// Func_full
772 static void set_func_full(m_option_t
* opt
, void* dst
, void* src
) {
777 for(s
= VAL(src
) ; s
; s
= s
->next
) {
779 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,s
->name
);
780 ((m_opt_func_full_t
) opt
->p
)(opt
,s
->name
,s
->param
);
784 m_option_type_t m_option_type_func_full
= {
787 sizeof(m_func_save_t
*),
788 M_OPT_TYPE_ALLOW_WILDCARD
|M_OPT_TYPE_INDIRECT
,
791 NULL
, // Nothing to do on save
800 #define VAL(x) (*(int*)(x))
802 static int parse_func(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
808 static void set_func(m_option_t
* opt
,void* dst
, void* src
) {
810 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,opt
->name
);
811 for(i
= 0 ; i
< VAL(src
) ; i
++)
812 ((m_opt_func_t
) opt
->p
)(opt
);
815 m_option_type_t m_option_type_func
= {
822 NULL
, // Nothing to do on save
828 /////////////////// Print
830 static int parse_print(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
831 if(opt
->type
== CONF_TYPE_PRINT_INDIRECT
)
832 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s", *(char **) opt
->p
);
833 else if(opt
->type
== CONF_TYPE_PRINT_FUNC
)
834 return ((m_opt_func_full_t
) opt
->p
)(opt
,name
,param
);
836 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s", (char *) opt
->p
);
838 if(opt
->priv
== NULL
)
843 m_option_type_t m_option_type_print
= {
856 m_option_type_t m_option_type_print_indirect
= {
869 m_option_type_t m_option_type_print_func
= {
873 M_OPT_TYPE_ALLOW_WILDCARD
,
883 /////////////////////// Subconfig
885 #define VAL(x) (*(char***)(x))
887 static int parse_subconf(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
895 if (param
== NULL
|| strlen(param
) == 0)
896 return M_OPT_MISSING_PARAM
;
898 subparam
= malloc(strlen(param
)+1);
899 subopt
= malloc(strlen(param
)+1);
907 int optlen
= strcspn(p
, ":=");
909 subopt
[0] = subparam
[0] = 0;
910 strlcpy(subopt
, p
, optlen
+ 1);
917 optlen
= strcspn(p
, "\"");
918 strlcpy(subparam
, p
, optlen
+ 1);
921 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Terminating '\"' missing for '%s'\n", subopt
);
922 return M_OPT_INVALID
;
925 } else if (p
[0] == '%') {
927 optlen
= (int)strtol(p
, &p
, 0);
928 if (!p
|| p
[0] != '%' || (optlen
> strlen(p
) - 1)) {
929 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid length %i for '%s'\n", optlen
, subopt
);
930 return M_OPT_INVALID
;
933 strlcpy(subparam
, p
, optlen
+ 1);
936 optlen
= strcspn(p
, ":");
937 strlcpy(subparam
, p
, optlen
+ 1);
944 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Incorrect termination for '%s'\n", subopt
);
945 return M_OPT_INVALID
;
953 for(i
= 0 ; subopts
[i
].name
; i
++) {
954 if(!strcmp(subopts
[i
].name
,subopt
)) break;
956 if(!subopts
[i
].name
) {
957 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Unknown suboption %s\n",name
,subopt
);
958 return M_OPT_UNKNOWN
;
960 r
= m_option_parse(&subopts
[i
],subopt
,
961 subparam
[0] == 0 ? NULL
: subparam
,NULL
,src
);
964 lst
= (char**)realloc(lst
,2 * (nr
+2) * sizeof(char*));
965 lst
[2*nr
] = strdup(subopt
);
966 lst
[2*nr
+1] = subparam
[0] == 0 ? NULL
: strdup(subparam
);
967 memset(&lst
[2*(nr
+1)],0,2*sizeof(char*));
982 m_option_type_t m_option_type_subconfig
= {
984 "The syntax is -option opt1=foo:flag:opt2=blah",
986 M_OPT_TYPE_HAS_CHILD
,
995 #include "libmpcodecs/img_format.h"
997 /* FIXME: snyc with img_format.h */
1001 } mp_imgfmt_list
[] = {
1002 {"444p", IMGFMT_444P
},
1003 {"422p", IMGFMT_422P
},
1004 {"411p", IMGFMT_411P
},
1005 {"yuy2", IMGFMT_YUY2
},
1006 {"uyvy", IMGFMT_UYVY
},
1007 {"yvu9", IMGFMT_YVU9
},
1008 {"if09", IMGFMT_IF09
},
1009 {"yv12", IMGFMT_YV12
},
1010 {"i420", IMGFMT_I420
},
1011 {"iyuv", IMGFMT_IYUV
},
1012 {"clpl", IMGFMT_CLPL
},
1013 {"hm12", IMGFMT_HM12
},
1014 {"y800", IMGFMT_Y800
},
1016 {"nv12", IMGFMT_NV12
},
1017 {"nv21", IMGFMT_NV21
},
1018 {"bgr24", IMGFMT_BGR24
},
1019 {"bgr32", IMGFMT_BGR32
},
1020 {"bgr16", IMGFMT_BGR16
},
1021 {"bgr15", IMGFMT_BGR15
},
1022 {"bgr8", IMGFMT_BGR8
},
1023 {"bgr4", IMGFMT_BGR4
},
1024 {"bg4b", IMGFMT_BG4B
},
1025 {"bgr1", IMGFMT_BGR1
},
1026 {"rgb24", IMGFMT_RGB24
},
1027 {"rgb32", IMGFMT_RGB32
},
1028 {"rgb16", IMGFMT_RGB16
},
1029 {"rgb15", IMGFMT_RGB15
},
1030 {"rgb8", IMGFMT_RGB8
},
1031 {"rgb4", IMGFMT_RGB4
},
1032 {"rg4b", IMGFMT_RG4B
},
1033 {"rgb1", IMGFMT_RGB1
},
1034 {"rgba", IMGFMT_RGBA
},
1035 {"argb", IMGFMT_ARGB
},
1036 {"bgra", IMGFMT_BGRA
},
1037 {"abgr", IMGFMT_ABGR
},
1041 static int parse_imgfmt(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
1045 if (param
== NULL
|| strlen(param
) == 0)
1046 return M_OPT_MISSING_PARAM
;
1048 if(!strcmp(param
,"help")) {
1049 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available formats:");
1050 for(i
= 0 ; mp_imgfmt_list
[i
].name
; i
++)
1051 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s",mp_imgfmt_list
[i
].name
);
1052 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1053 return M_OPT_EXIT
- 1;
1056 if (sscanf(param
, "0x%x", &fmt
) != 1)
1058 for(i
= 0 ; mp_imgfmt_list
[i
].name
; i
++) {
1059 if(!strcasecmp(param
,mp_imgfmt_list
[i
].name
)) {
1060 fmt
=mp_imgfmt_list
[i
].fmt
;
1064 if(!mp_imgfmt_list
[i
].name
) {
1065 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: unknown format name: '%s'\n",name
,param
);
1066 return M_OPT_INVALID
;
1071 *((uint32_t*)dst
) = fmt
;
1076 m_option_type_t m_option_type_imgfmt
= {
1078 "Please report any missing colorspaces.",
1089 #include "libaf/af_format.h"
1091 /* FIXME: snyc with af_format.h */
1095 } mp_afmt_list
[] = {
1097 {"mulaw", AF_FORMAT_MU_LAW
},
1098 {"alaw", AF_FORMAT_A_LAW
},
1099 {"mpeg2", AF_FORMAT_MPEG2
},
1100 {"ac3", AF_FORMAT_AC3
},
1101 {"imaadpcm", AF_FORMAT_IMA_ADPCM
},
1103 {"u8", AF_FORMAT_U8
},
1104 {"s8", AF_FORMAT_S8
},
1105 {"u16le", AF_FORMAT_U16_LE
},
1106 {"u16be", AF_FORMAT_U16_BE
},
1107 {"u16ne", AF_FORMAT_U16_NE
},
1108 {"s16le", AF_FORMAT_S16_LE
},
1109 {"s16be", AF_FORMAT_S16_BE
},
1110 {"s16ne", AF_FORMAT_S16_NE
},
1111 {"u24le", AF_FORMAT_U24_LE
},
1112 {"u24be", AF_FORMAT_U24_BE
},
1113 {"u24ne", AF_FORMAT_U24_NE
},
1114 {"s24le", AF_FORMAT_S24_LE
},
1115 {"s24be", AF_FORMAT_S24_BE
},
1116 {"s24ne", AF_FORMAT_S24_NE
},
1117 {"u32le", AF_FORMAT_U32_LE
},
1118 {"u32be", AF_FORMAT_U32_BE
},
1119 {"u32ne", AF_FORMAT_U32_NE
},
1120 {"s32le", AF_FORMAT_S32_LE
},
1121 {"s32be", AF_FORMAT_S32_BE
},
1122 {"s32ne", AF_FORMAT_S32_NE
},
1123 {"floatle", AF_FORMAT_FLOAT_LE
},
1124 {"floatbe", AF_FORMAT_FLOAT_BE
},
1125 {"floatne", AF_FORMAT_FLOAT_NE
},
1129 static int parse_afmt(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
1133 if (param
== NULL
|| strlen(param
) == 0)
1134 return M_OPT_MISSING_PARAM
;
1136 if(!strcmp(param
,"help")) {
1137 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available formats:");
1138 for(i
= 0 ; mp_afmt_list
[i
].name
; i
++)
1139 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s",mp_afmt_list
[i
].name
);
1140 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1141 return M_OPT_EXIT
- 1;
1144 if (sscanf(param
, "0x%x", &fmt
) != 1)
1146 for(i
= 0 ; mp_afmt_list
[i
].name
; i
++) {
1147 if(!strcasecmp(param
,mp_afmt_list
[i
].name
)) {
1148 fmt
=mp_afmt_list
[i
].fmt
;
1152 if(!mp_afmt_list
[i
].name
) {
1153 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: unknown format name: '%s'\n",name
,param
);
1154 return M_OPT_INVALID
;
1159 *((uint32_t*)dst
) = fmt
;
1164 m_option_type_t m_option_type_afmt
= {
1166 "Please report any missing formats.",
1178 // Time or size (-endpos)
1180 static int parse_time_size(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
1187 if (param
== NULL
|| strlen(param
) == 0)
1188 return M_OPT_MISSING_PARAM
;
1191 /* End at size parsing */
1192 if(sscanf(param
, "%lf%3s", &end_at
, unit
) == 2) {
1193 ts
.type
= END_AT_SIZE
;
1194 if(!strcasecmp(unit
, "b"))
1196 else if(!strcasecmp(unit
, "kb"))
1198 else if(!strcasecmp(unit
, "mb"))
1199 end_at
*= 1024*1024;
1200 else if(!strcasecmp(unit
, "gb"))
1201 end_at
*= 1024*1024*1024;
1203 ts
.type
= END_AT_NONE
;
1205 if (ts
.type
== END_AT_SIZE
) {
1211 /* End at time parsing. This has to be last because of
1212 * sscanf("%f", ...) below */
1213 if (sscanf(param
, "%d:%d:%f", &a
, &b
, &d
) == 3)
1214 end_at
= 3600*a
+ 60*b
+ d
;
1215 else if (sscanf(param
, "%d:%f", &a
, &d
) == 2)
1217 else if (sscanf(param
, "%f", &d
) == 1)
1220 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: invalid time or size: '%s'\n",
1222 return M_OPT_INVALID
;
1225 ts
.type
= END_AT_TIME
;
1229 *(m_time_size_t
*)dst
= ts
;
1233 m_option_type_t m_option_type_time_size
= {
1236 sizeof(m_time_size_t
),
1247 //// Objects (i.e. filters, etc) settings
1249 #include "m_struct.h"
1252 #define VAL(x) (*(m_obj_settings_t**)(x))
1254 static int find_obj_desc(char* name
,m_obj_list_t
* l
,m_struct_t
** ret
) {
1258 for(i
= 0 ; l
->list
[i
] ; i
++) {
1259 n
= M_ST_MB(char*,l
->list
[i
],l
->name_off
);
1260 if(!strcmp(n
,name
)) {
1261 *ret
= M_ST_MB(m_struct_t
*,l
->list
[i
],l
->desc_off
);
1268 static int get_obj_param(const char* opt_name
,const char* obj_name
, m_struct_t
* desc
,
1269 char* str
,int* nold
,int oldmax
,char** dst
) {
1274 eq
= strchr(str
,'=');
1280 if(p
[0] == '\0') p
= NULL
;
1282 opt
= m_option_list_find(desc
->fields
,str
);
1284 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s doesn't have a %s parameter.\n",opt_name
,obj_name
,str
);
1285 return M_OPT_UNKNOWN
;
1287 r
= m_option_parse(opt
,str
,p
,NULL
,M_CONFIG_FILE
);
1290 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while parsing %s parameter %s (%s)\n",opt_name
,obj_name
,str
,p
);
1295 dst
[0] = strdup(str
);
1296 dst
[1] = p
? strdup(p
) : NULL
;
1300 if((*nold
) >= oldmax
) {
1301 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s has only %d params, so you can't give more than %d unnamed params.\n",
1302 opt_name
,obj_name
,oldmax
,oldmax
);
1303 return M_OPT_OUT_OF_RANGE
;
1305 opt
= &desc
->fields
[(*nold
)];
1306 r
= m_option_parse(opt
,opt
->name
,str
,NULL
,M_CONFIG_FILE
);
1309 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while parsing %s parameter %s (%s)\n",opt_name
,obj_name
,opt
->name
,str
);
1313 dst
[0] = strdup(opt
->name
);
1314 dst
[1] = strdup(str
);
1321 static int get_obj_params(const char* opt_name
, const char* name
,char* params
,
1322 m_struct_t
* desc
,char separator
, char*** _ret
) {
1323 int n
= 0,nold
= 0, nopts
,r
;
1324 char* ptr
,*last_ptr
= params
;
1327 if(!strcmp(params
,"help")) { // Help
1328 char min
[50],max
[50];
1330 printf("%s doesn't have any options.\n\n",name
);
1331 return M_OPT_EXIT
- 1;
1333 printf("\n Name Type Min Max\n\n");
1334 for(n
= 0 ; desc
->fields
[n
].name
; n
++) {
1335 m_option_t
* opt
= &desc
->fields
[n
];
1336 if(opt
->type
->flags
& M_OPT_TYPE_HAS_CHILD
) continue;
1337 if(opt
->flags
& M_OPT_MIN
)
1338 sprintf(min
,"%-8.0f",opt
->min
);
1341 if(opt
->flags
& M_OPT_MAX
)
1342 sprintf(max
,"%-8.0f",opt
->max
);
1345 printf(" %-20.20s %-15.15s %-10.10s %-10.10s\n",
1352 return M_OPT_EXIT
- 1;
1355 for(nopts
= 0 ; desc
->fields
[nopts
].name
; nopts
++)
1358 // TODO : Check that each opt can be parsed
1360 while(last_ptr
&& last_ptr
[0] != '\0') {
1361 ptr
= strchr(last_ptr
,separator
);
1363 r
= get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,NULL
);
1367 if(ptr
== last_ptr
) { // Empty field, count it and go on
1373 r
= get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,NULL
);
1380 if (!last_ptr
[0]) // count an empty field at the end, too
1383 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Too many options for %s\n", name
);
1384 return M_OPT_OUT_OF_RANGE
;
1386 if(!_ret
) // Just test
1388 if (n
== 0) // No options or only empty options
1391 ret
= malloc((n
+2)*2*sizeof(char*));
1395 while(last_ptr
&& last_ptr
[0] != '\0') {
1396 ptr
= strchr(last_ptr
,separator
);
1398 get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,&ret
[n
*2]);
1402 if(ptr
== last_ptr
) { // Empty field, count it and go on
1408 get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,&ret
[n
*2]);
1412 ret
[n
*2] = ret
[n
*2+1] = NULL
;
1418 static int parse_obj_params(m_option_t
* opt
,char *name
,
1419 char *param
, void* dst
, int src
) {
1422 m_obj_params_t
* p
= opt
->priv
;
1424 char* cpy
= strdup(param
);
1426 // We need the object desc
1428 return M_OPT_INVALID
;
1431 r
= get_obj_params(name
,desc
->name
,cpy
,desc
,p
->separator
,dst
? &opts
: NULL
);
1437 if (!opts
) // no arguments given
1440 for(r
= 0 ; opts
[r
] ; r
+= 2)
1441 m_struct_set(desc
,dst
,opts
[r
],opts
[r
+1]);
1447 m_option_type_t m_option_type_obj_params
= {
1460 /// Some predefined types as a definition would be quite lengthy
1463 static m_span_t m_span_params_dflts
= { -1, -1 };
1464 static m_option_t m_span_params_fields
[] = {
1465 {"start", M_ST_OFF(m_span_t
,start
), CONF_TYPE_INT
, M_OPT_MIN
, 1 ,0, NULL
},
1466 {"end", M_ST_OFF(m_span_t
,end
), CONF_TYPE_INT
, M_OPT_MIN
, 1 ,0, NULL
},
1467 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
1469 static struct m_struct_st m_span_opts
= {
1472 &m_span_params_dflts
,
1473 m_span_params_fields
1475 m_obj_params_t m_span_params_def
= {
1480 static int parse_obj_settings(char* opt
,char* str
,m_obj_list_t
* list
,
1481 m_obj_settings_t
**_ret
, int ret_n
) {
1483 char *param
,**plist
= NULL
;
1485 m_obj_settings_t
*ret
= _ret
? *_ret
: NULL
;
1488 // Now check that the object exists
1489 param
= strchr(str
,'=');
1493 if(strlen(param
) <= 0)
1498 if(!find_obj_desc(str
,list
,&desc
)) {
1499 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s doesn't exist.\n",opt
,str
);
1500 return M_OPT_INVALID
;
1505 if(!strcmp(param
,"help")) {
1506 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Option %s: %s have no option description.\n",opt
,str
);
1507 return M_OPT_EXIT
- 1;
1509 plist
= calloc(4,sizeof(char*));
1510 plist
[0] = strdup("_oldargs_");
1511 plist
[1] = strdup(param
);
1513 r
= get_obj_params(opt
,str
,param
,desc
,':',_ret
? &plist
: NULL
);
1521 ret
= realloc(ret
,(ret_n
+2)*sizeof(m_obj_settings_t
));
1522 memset(&ret
[ret_n
],0,2*sizeof(m_obj_settings_t
));
1523 ret
[ret_n
].name
= strdup(str
);
1524 ret
[ret_n
].attribs
= plist
;
1530 static void free_obj_settings_list(void* dst
);
1532 static int obj_settings_list_del(char *opt_name
,char *param
,void* dst
, int src
) {
1533 char** str_list
= NULL
;
1534 int r
,i
,idx_max
= 0;
1535 char* rem_id
= "_removed_marker_";
1536 m_option_t list_opt
= {opt_name
, NULL
, CONF_TYPE_STRING_LIST
,
1538 m_obj_settings_t
* obj_list
= dst
? VAL(dst
) : NULL
;
1540 if(dst
&& !obj_list
) {
1541 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: the list is empty.\n",opt_name
);
1543 } else if(obj_list
) {
1544 for(idx_max
= 0 ; obj_list
[idx_max
].name
!= NULL
; idx_max
++)
1548 r
= m_option_parse(&list_opt
,opt_name
,param
,&str_list
,src
);
1549 if(r
< 0 || !str_list
)
1552 for(r
= 0 ; str_list
[r
] ; r
++) {
1555 id
= strtol(str_list
[r
],&endptr
,0);
1556 if(endptr
== str_list
[r
]) {
1557 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
);
1558 m_option_free(&list_opt
,&str_list
);
1559 return M_OPT_INVALID
;
1561 if(!obj_list
) continue;
1562 if(id
>= idx_max
|| id
< -idx_max
) {
1563 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: Index %d is out of range.\n",opt_name
,id
);
1568 free(obj_list
[id
].name
);
1569 free_str_list(&(obj_list
[id
].attribs
));
1570 obj_list
[id
].name
= rem_id
;
1574 m_option_free(&list_opt
,&str_list
);
1578 for(i
= 0 ; obj_list
[i
].name
; i
++) {
1579 while(obj_list
[i
].name
== rem_id
) {
1580 memmove(&obj_list
[i
],&obj_list
[i
+1],sizeof(m_obj_settings_t
)*(idx_max
- i
));
1584 obj_list
= realloc(obj_list
,sizeof(m_obj_settings_t
)*(idx_max
+1));
1585 VAL(dst
) = obj_list
;
1590 static int parse_obj_settings_list(m_option_t
* opt
,char *name
,
1591 char *param
, void* dst
, int src
) {
1592 int n
= 0,r
,len
= strlen(opt
->name
);
1594 char *ptr
, *last_ptr
;
1595 m_obj_settings_t
*res
= NULL
,*queue
= NULL
,*head
= NULL
;
1598 // We need the objects list
1600 return M_OPT_INVALID
;
1602 if(opt
->name
[len
-1] == '*' && ((int)strlen(name
) > len
- 1)) {
1603 char* n
= &name
[len
-1];
1604 if(strcasecmp(n
,"-add") == 0)
1606 else if(strcasecmp(n
,"-pre") == 0)
1608 else if(strcasecmp(n
,"-del") == 0)
1610 else if(strcasecmp(n
,"-clr") == 0)
1614 strncpy(prefix
,opt
->name
,len
-1);
1615 prefix
[len
-1] = '\0';
1616 mp_msg(MSGT_VFILTER
,MSGL_ERR
, "Option %s: unknown postfix %s\n"
1617 "Supported postfixes are:\n"
1619 " Append the given list to the current list\n\n"
1621 " Prepend the given list to the current list\n\n"
1623 " Remove the given elements. Take the list element index (starting from 0).\n"
1624 " Negative index can be used (i.e. -1 is the last element)\n\n"
1626 " Clear the current list.\n",name
,n
,prefix
,prefix
,prefix
,prefix
);
1628 return M_OPT_UNKNOWN
;
1632 // Clear the list ??
1635 free_obj_settings_list(dst
);
1639 if (param
== NULL
|| strlen(param
) == 0)
1640 return M_OPT_MISSING_PARAM
;
1644 if(dst
) head
= VAL(dst
);
1647 if(dst
) queue
= VAL(dst
);
1650 return obj_settings_list_del(name
,param
,dst
,src
);
1653 free_obj_settings_list(dst
);
1656 mp_msg(MSGT_VFILTER
,MSGL_ERR
, "Option %s: FIXME\n",name
);
1657 return M_OPT_UNKNOWN
;
1660 if(!strcmp(param
,"help")) {
1661 m_obj_list_t
* ol
= opt
->priv
;
1662 mp_msg(MSGT_VFILTER
,MSGL_INFO
,"Available video filters:\n");
1663 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VIDEO_FILTERS\n");
1664 for(n
= 0 ; ol
->list
[n
] ; n
++)
1665 mp_msg(MSGT_VFILTER
,MSGL_INFO
," %-15s: %s\n",
1666 M_ST_MB(char*,ol
->list
[n
],ol
->name_off
),
1667 M_ST_MB(char*,ol
->list
[n
],ol
->info_off
));
1668 mp_msg(MSGT_VFILTER
,MSGL_INFO
,"\n");
1669 return M_OPT_EXIT
- 1;
1671 ptr
= str
= strdup(param
);
1673 while(ptr
[0] != '\0') {
1676 ptr
= strchr(ptr
,LIST_SEPARATOR
);
1677 if(ptr
&& ptr
>last_ptr
&& ptr
[-1]=='\\'){
1678 memmove(ptr
-1, ptr
, strlen(ptr
)+1);
1684 r
= parse_obj_settings(name
,last_ptr
,opt
->priv
,dst
? &res
: NULL
,n
);
1693 r
= parse_obj_settings(name
,last_ptr
,opt
->priv
,dst
? &res
: NULL
,n
);
1703 return M_OPT_INVALID
;
1705 if( ((opt
->flags
& M_OPT_MIN
) && (n
< opt
->min
)) ||
1706 ((opt
->flags
& M_OPT_MAX
) && (n
> opt
->max
)) )
1707 return M_OPT_OUT_OF_RANGE
;
1712 for(qsize
= 0 ; queue
[qsize
].name
; qsize
++)
1714 res
= realloc(res
,(qsize
+n
+1)*sizeof(m_obj_settings_t
));
1715 memcpy(&res
[n
],queue
,(qsize
+1)*sizeof(m_obj_settings_t
));
1721 for(hsize
= 0 ; head
[hsize
].name
; hsize
++)
1723 head
= realloc(head
,(hsize
+n
+1)*sizeof(m_obj_settings_t
));
1724 memcpy(&head
[hsize
],res
,(n
+1)*sizeof(m_obj_settings_t
));
1733 static void free_obj_settings_list(void* dst
) {
1735 m_obj_settings_t
*d
;
1737 if(!dst
|| !VAL(dst
)) return;
1741 for(n
= 0 ; d
[n
].name
; n
++) {
1743 free_str_list(&(d
[n
].attribs
));
1750 static void copy_obj_settings_list(m_option_t
* opt
,void* dst
, void* src
) {
1751 m_obj_settings_t
*d
,*s
;
1760 free_obj_settings_list(dst
);
1765 for(n
= 0 ; s
[n
].name
; n
++)
1767 d
= malloc((n
+1)*sizeof(m_obj_settings_t
));
1768 for(n
= 0 ; s
[n
].name
; n
++) {
1769 d
[n
].name
= strdup(s
[n
].name
);
1770 d
[n
].attribs
= NULL
;
1771 copy_str_list(NULL
,&(d
[n
].attribs
),&(s
[n
].attribs
));
1774 d
[n
].attribs
= NULL
;
1778 m_option_type_t m_option_type_obj_settings_list
= {
1779 "Object settings list",
1781 sizeof(m_obj_settings_t
*),
1782 M_OPT_TYPE_DYNAMIC
|M_OPT_TYPE_ALLOW_WILDCARD
,
1783 parse_obj_settings_list
,
1785 copy_obj_settings_list
,
1786 copy_obj_settings_list
,
1787 copy_obj_settings_list
,
1788 free_obj_settings_list
,
1793 static int parse_obj_presets(m_option_t
* opt
,char *name
,
1794 char *param
, void* dst
, int src
) {
1795 m_obj_presets_t
* obj_p
= (m_obj_presets_t
*)opt
->priv
;
1796 m_struct_t
*in_desc
,*out_desc
;
1799 char* pre_name
= NULL
;
1802 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Presets need a pointer to a m_obj_presets_t in the priv field.\n",name
);
1803 return M_OPT_PARSER_ERR
;
1807 return M_OPT_MISSING_PARAM
;
1809 pre
= obj_p
->presets
;
1810 in_desc
= obj_p
->in_desc
;
1811 out_desc
= obj_p
->out_desc
? obj_p
->out_desc
: obj_p
->in_desc
;
1814 if(!strcmp(param
,"help")) {
1815 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available presets for %s->%s:",out_desc
->name
,name
);
1816 for(pre
= obj_p
->presets
;(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) ;
1818 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s",pre_name
);
1819 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
1820 return M_OPT_EXIT
- 1;
1823 for(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
) ; pre_name
;
1824 pre
+= s
, pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) {
1825 if(!strcmp(pre_name
,param
)) break;
1828 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: There is no preset named %s\n"
1829 "Available presets are:",name
,param
);
1830 for(pre
= obj_p
->presets
;(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) ;
1832 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s",pre_name
);
1833 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
1834 return M_OPT_INVALID
;
1839 for(i
= 0 ; in_desc
->fields
[i
].name
; i
++) {
1840 m_option_t
* out_opt
= m_option_list_find(out_desc
->fields
,
1841 in_desc
->fields
[i
].name
);
1843 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
);
1844 return M_OPT_PARSER_ERR
;
1846 m_option_copy(out_opt
,M_ST_MB_P(dst
,out_opt
->p
),M_ST_MB_P(pre
,in_desc
->fields
[i
].p
));
1852 m_option_type_t m_option_type_obj_presets
= {
1865 static int parse_custom_url(m_option_t
* opt
,char *name
,
1866 char *url
, void* dst
, int src
) {
1867 int pos1
, pos2
, r
, v6addr
= 0;
1868 char *ptr1
=NULL
, *ptr2
=NULL
, *ptr3
=NULL
, *ptr4
=NULL
;
1869 m_struct_t
* desc
= opt
->priv
;
1872 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Custom URL needs a pointer to a m_struct_t in the priv field.\n",name
);
1873 return M_OPT_PARSER_ERR
;
1876 // extract the protocol
1877 ptr1
= strstr(url
, "://");
1880 if(m_option_list_find(desc
->fields
,"filename")) {
1881 m_struct_set(desc
,dst
,"filename",url
);
1884 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,"Option %s: URL doesn't have a valid protocol!\n",name
);
1885 return M_OPT_INVALID
;
1887 if(m_option_list_find(desc
->fields
,"string")) {
1888 if(strlen(ptr1
)>3) {
1889 m_struct_set(desc
,dst
,"string",ptr1
+3);
1894 if(dst
&& m_option_list_find(desc
->fields
,"protocol")) {
1896 r
= m_struct_set(desc
,dst
,"protocol",url
);
1899 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting protocol.\n",name
);
1908 // check if a username:password is given
1909 ptr2
= strstr(ptr1
, "@");
1910 ptr3
= strstr(ptr1
, "/");
1911 if( ptr3
!=NULL
&& ptr3
<ptr2
) {
1912 // it isn't really a username but rather a part of the path
1917 // We got something, at least a username...
1918 if(!m_option_list_find(desc
->fields
,"username")) {
1919 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a username part.\n",name
);
1922 ptr3
= strstr(ptr1
, ":");
1923 if( ptr3
!=NULL
&& ptr3
<ptr2
) {
1924 // We also have a password
1925 if(!m_option_list_find(desc
->fields
,"password")) {
1926 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a password part.\n",name
);
1928 } else { // Username and password
1931 r
= m_struct_set(desc
,dst
,"username",ptr1
);
1934 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting username.\n",name
);
1938 r
= m_struct_set(desc
,dst
,"password",ptr3
+1);
1941 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting password.\n",name
);
1946 } else { // User name only
1948 r
= m_struct_set(desc
,dst
,"username",ptr1
);
1951 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting username.\n",name
);
1960 // before looking for a port number check if we have an IPv6 type numeric address
1961 // in an IPv6 URL the numeric address should be inside square braces.
1962 ptr2
= strstr(ptr1
, "[");
1963 ptr3
= strstr(ptr1
, "]");
1964 // If the [] is after the first it isn't the hostname
1965 ptr4
= strstr(ptr1
, "/");
1966 if( ptr2
!=NULL
&& ptr3
!=NULL
&& (ptr2
< ptr3
) && (!ptr4
|| ptr4
> ptr3
)) {
1967 // we have an IPv6 numeric address
1976 // look if the port is given
1977 ptr2
= strstr(ptr2
, ":");
1978 // If the : is after the first / it isn't the port
1979 ptr3
= strstr(ptr1
, "/");
1980 if(ptr3
&& ptr3
- ptr2
< 0) ptr2
= NULL
;
1983 // Look if a path is given
1986 // So we have an URL like http://www.hostname.com
1989 // We have an URL like http://www.hostname.com/file.txt
1993 // We have an URL beginning like http://www.hostname.com:1212
1994 // Get the port number
1995 if(!m_option_list_find(desc
->fields
,"port")) {
1996 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a port part.\n",name
);
2000 int p
= atoi(ptr2
+1);
2002 snprintf(tmp
,99,"%d",p
);
2003 r
= m_struct_set(desc
,dst
,"port",tmp
);
2005 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting port.\n",name
);
2012 if( v6addr
) pos2
--;
2015 if(!m_option_list_find(desc
->fields
,"hostname")) {
2016 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a hostname part.\n",name
);
2019 char tmp
[pos2
-pos1
+1];
2020 strncpy(tmp
,ptr1
, pos2
-pos1
);
2021 tmp
[pos2
-pos1
] = '\0';
2022 r
= m_struct_set(desc
,dst
,"hostname",tmp
);
2024 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting hostname.\n",name
);
2029 // Look if a path is given
2030 ptr2
= strstr(ptr1
, "/");
2032 // A path/filename is given
2033 // check if it's not a trailing '/'
2034 if( strlen(ptr2
)>1 ) {
2035 // copy the path/filename in the URL container
2036 if(!m_option_list_find(desc
->fields
,"filename")) {
2037 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a hostname part.\n",name
);
2041 int l
= strlen(ptr2
+1) + 1;
2042 char* fname
= ptr2
+1;
2045 url_unescape_string(fname
,ptr2
+1);
2047 r
= m_struct_set(desc
,dst
,"filename",fname
);
2051 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting filename.\n",name
);
2061 /// TODO : Write the other needed funcs for 'normal' options
2062 m_option_type_t m_option_type_custom_url
= {