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;
514 static char *get_nextsep(char *ptr
, char sep
, int modify
) {
515 char *last_ptr
= ptr
;
517 ptr
= strchr(ptr
, sep
);
518 if(ptr
&& ptr
>last_ptr
&& ptr
[-1]=='\\'){
519 if (modify
) memmove(ptr
-1, ptr
, strlen(ptr
)+1);
527 static int parse_str_list(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
528 int n
= 0,len
= strlen(opt
->name
);
530 char *ptr
= param
, *last_ptr
, **res
;
533 if(opt
->name
[len
-1] == '*' && ((int)strlen(name
) > len
- 1)) {
534 char* n
= &name
[len
-1];
535 if(strcasecmp(n
,"-add") == 0)
537 else if(strcasecmp(n
,"-pre") == 0)
539 else if(strcasecmp(n
,"-del") == 0)
541 else if(strcasecmp(n
,"-clr") == 0)
544 return M_OPT_UNKNOWN
;
554 // All other ops need a param
555 if (param
== NULL
|| strlen(param
) == 0)
556 return M_OPT_MISSING_PARAM
;
559 while(ptr
[0] != '\0') {
560 ptr
= get_nextsep(ptr
, LIST_SEPARATOR
, 0);
569 return M_OPT_INVALID
;
570 if( ((opt
->flags
& M_OPT_MIN
) && (n
< opt
->min
)) ||
571 ((opt
->flags
& M_OPT_MAX
) && (n
> opt
->max
)) )
572 return M_OPT_OUT_OF_RANGE
;
576 res
= malloc((n
+2)*sizeof(char*));
577 ptr
= str
= strdup(param
);
582 ptr
= get_nextsep(ptr
, LIST_SEPARATOR
, 1);
584 res
[n
] = strdup(last_ptr
);
588 len
= ptr
- last_ptr
;
589 res
[n
] = malloc(len
+ 1);
590 if(len
) strncpy(res
[n
],last_ptr
,len
);
600 return str_list_add(res
,n
,dst
,0);
602 return str_list_add(res
,n
,dst
,1);
604 return str_list_del(res
,n
,dst
);
614 static void copy_str_list(m_option_t
* opt
,void* dst
, void* src
) {
618 if(!(dst
&& src
)) return;
629 for(n
= 0 ; s
[n
] != NULL
; n
++)
631 d
= malloc((n
+1)*sizeof(char*));
633 d
[n
] = s
[n
] ? strdup(s
[n
]) : NULL
;
638 static char* print_str_list(m_option_t
* opt
, void* src
) {
640 char *ret
= NULL
,*last
= NULL
;
643 if(!(src
&& VAL(src
))) return NULL
;
646 for(i
= 0 ; lst
[i
] ; i
++) {
648 ret
= dup_printf("%s,%s",last
,lst
[i
]);
651 ret
= strdup(lst
[i
]);
654 if(last
&& last
!= ret
) free(last
);
658 m_option_type_t m_option_type_string_list
= {
660 "A list of strings separated by ','\n"
661 "Option with a name ending in an * permits using the following suffix: \n"
662 "\t-add: Add the given parameters at the end of the list.\n"
663 "\t-pre: Add the given parameters at the begining of the list.\n"
664 "\t-del: Remove the entry at the given indices.\n"
665 "\t-clr: Clear the list.\n"
666 "e.g: -vf-add flip,mirror -vf-del 2,5\n",
668 M_OPT_TYPE_DYNAMIC
| M_OPT_TYPE_ALLOW_WILDCARD
,
678 /////////////////// Func based options
680 // A chained list to save the various calls for func_param and func_full
681 typedef struct m_func_save m_func_save_t
;
689 #define VAL(x) (*(m_func_save_t**)(x))
691 static void free_func_pf(void* src
) {
701 if(s
->param
) free(s
->param
);
708 // Parser for func_param and func_full
709 static int parse_func_pf(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
715 s
= calloc(1,sizeof(m_func_save_t
));
716 s
->name
= strdup(name
);
717 s
->param
= param
? strdup(param
) : NULL
;
721 for( ; p
->next
!= NULL
; p
= p
->next
)
730 static void copy_func_pf(m_option_t
* opt
,void* dst
, void* src
) {
731 m_func_save_t
*d
= NULL
, *s
,* last
= NULL
;
733 if(!(dst
&& src
)) return;
740 d
= calloc(1,sizeof(m_func_save_t
));
741 d
->name
= strdup(s
->name
);
742 d
->param
= s
->param
? strdup(s
->param
) : NULL
;
754 /////////////////// Func_param
756 static void set_func_param(m_option_t
* opt
, void* dst
, void* src
) {
765 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,opt
->name
);
766 for( ; s
!= NULL
; s
= s
->next
)
767 ((m_opt_func_param_t
) opt
->p
)(opt
,s
->param
);
770 m_option_type_t m_option_type_func_param
= {
773 sizeof(m_func_save_t
*),
777 NULL
, // Nothing to do on save
783 /////////////////// Func_full
785 static void set_func_full(m_option_t
* opt
, void* dst
, void* src
) {
790 for(s
= VAL(src
) ; s
; s
= s
->next
) {
792 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,s
->name
);
793 ((m_opt_func_full_t
) opt
->p
)(opt
,s
->name
,s
->param
);
797 m_option_type_t m_option_type_func_full
= {
800 sizeof(m_func_save_t
*),
801 M_OPT_TYPE_ALLOW_WILDCARD
|M_OPT_TYPE_INDIRECT
,
804 NULL
, // Nothing to do on save
813 #define VAL(x) (*(int*)(x))
815 static int parse_func(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
821 static void set_func(m_option_t
* opt
,void* dst
, void* src
) {
823 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,opt
->name
);
824 for(i
= 0 ; i
< VAL(src
) ; i
++)
825 ((m_opt_func_t
) opt
->p
)(opt
);
828 m_option_type_t m_option_type_func
= {
835 NULL
, // Nothing to do on save
841 /////////////////// Print
843 static int parse_print(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
844 if(opt
->type
== CONF_TYPE_PRINT_INDIRECT
)
845 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s", *(char **) opt
->p
);
846 else if(opt
->type
== CONF_TYPE_PRINT_FUNC
)
847 return ((m_opt_func_full_t
) opt
->p
)(opt
,name
,param
);
849 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s", (char *) opt
->p
);
851 if(opt
->priv
== NULL
)
856 m_option_type_t m_option_type_print
= {
869 m_option_type_t m_option_type_print_indirect
= {
882 m_option_type_t m_option_type_print_func
= {
886 M_OPT_TYPE_ALLOW_WILDCARD
,
896 /////////////////////// Subconfig
898 #define VAL(x) (*(char***)(x))
900 static int parse_subconf(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
908 if (param
== NULL
|| strlen(param
) == 0)
909 return M_OPT_MISSING_PARAM
;
911 subparam
= malloc(strlen(param
)+1);
912 subopt
= malloc(strlen(param
)+1);
920 int optlen
= strcspn(p
, ":=");
922 subopt
[0] = subparam
[0] = 0;
923 strlcpy(subopt
, p
, optlen
+ 1);
930 optlen
= strcspn(p
, "\"");
931 strlcpy(subparam
, p
, optlen
+ 1);
934 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Terminating '\"' missing for '%s'\n", subopt
);
935 return M_OPT_INVALID
;
938 } else if (p
[0] == '%') {
940 optlen
= (int)strtol(p
, &p
, 0);
941 if (!p
|| p
[0] != '%' || (optlen
> strlen(p
) - 1)) {
942 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid length %i for '%s'\n", optlen
, subopt
);
943 return M_OPT_INVALID
;
946 strlcpy(subparam
, p
, optlen
+ 1);
949 optlen
= strcspn(p
, ":");
950 strlcpy(subparam
, p
, optlen
+ 1);
957 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Incorrect termination for '%s'\n", subopt
);
958 return M_OPT_INVALID
;
966 for(i
= 0 ; subopts
[i
].name
; i
++) {
967 if(!strcmp(subopts
[i
].name
,subopt
)) break;
969 if(!subopts
[i
].name
) {
970 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Unknown suboption %s\n",name
,subopt
);
971 return M_OPT_UNKNOWN
;
973 r
= m_option_parse(&subopts
[i
],subopt
,
974 subparam
[0] == 0 ? NULL
: subparam
,NULL
,src
);
977 lst
= (char**)realloc(lst
,2 * (nr
+2) * sizeof(char*));
978 lst
[2*nr
] = strdup(subopt
);
979 lst
[2*nr
+1] = subparam
[0] == 0 ? NULL
: strdup(subparam
);
980 memset(&lst
[2*(nr
+1)],0,2*sizeof(char*));
995 m_option_type_t m_option_type_subconfig
= {
997 "The syntax is -option opt1=foo:flag:opt2=blah",
999 M_OPT_TYPE_HAS_CHILD
,
1008 #include "libmpcodecs/img_format.h"
1010 /* FIXME: snyc with img_format.h */
1014 } mp_imgfmt_list
[] = {
1015 {"444p", IMGFMT_444P
},
1016 {"422p", IMGFMT_422P
},
1017 {"411p", IMGFMT_411P
},
1018 {"yuy2", IMGFMT_YUY2
},
1019 {"uyvy", IMGFMT_UYVY
},
1020 {"yvu9", IMGFMT_YVU9
},
1021 {"if09", IMGFMT_IF09
},
1022 {"yv12", IMGFMT_YV12
},
1023 {"i420", IMGFMT_I420
},
1024 {"iyuv", IMGFMT_IYUV
},
1025 {"clpl", IMGFMT_CLPL
},
1026 {"hm12", IMGFMT_HM12
},
1027 {"y800", IMGFMT_Y800
},
1029 {"nv12", IMGFMT_NV12
},
1030 {"nv21", IMGFMT_NV21
},
1031 {"bgr24", IMGFMT_BGR24
},
1032 {"bgr32", IMGFMT_BGR32
},
1033 {"bgr16", IMGFMT_BGR16
},
1034 {"bgr15", IMGFMT_BGR15
},
1035 {"bgr8", IMGFMT_BGR8
},
1036 {"bgr4", IMGFMT_BGR4
},
1037 {"bg4b", IMGFMT_BG4B
},
1038 {"bgr1", IMGFMT_BGR1
},
1039 {"rgb24", IMGFMT_RGB24
},
1040 {"rgb32", IMGFMT_RGB32
},
1041 {"rgb16", IMGFMT_RGB16
},
1042 {"rgb15", IMGFMT_RGB15
},
1043 {"rgb8", IMGFMT_RGB8
},
1044 {"rgb4", IMGFMT_RGB4
},
1045 {"rg4b", IMGFMT_RG4B
},
1046 {"rgb1", IMGFMT_RGB1
},
1047 {"rgba", IMGFMT_RGBA
},
1048 {"argb", IMGFMT_ARGB
},
1049 {"bgra", IMGFMT_BGRA
},
1050 {"abgr", IMGFMT_ABGR
},
1054 static int parse_imgfmt(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
1058 if (param
== NULL
|| strlen(param
) == 0)
1059 return M_OPT_MISSING_PARAM
;
1061 if(!strcmp(param
,"help")) {
1062 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available formats:");
1063 for(i
= 0 ; mp_imgfmt_list
[i
].name
; i
++)
1064 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s",mp_imgfmt_list
[i
].name
);
1065 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1066 return M_OPT_EXIT
- 1;
1069 if (sscanf(param
, "0x%x", &fmt
) != 1)
1071 for(i
= 0 ; mp_imgfmt_list
[i
].name
; i
++) {
1072 if(!strcasecmp(param
,mp_imgfmt_list
[i
].name
)) {
1073 fmt
=mp_imgfmt_list
[i
].fmt
;
1077 if(!mp_imgfmt_list
[i
].name
) {
1078 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: unknown format name: '%s'\n",name
,param
);
1079 return M_OPT_INVALID
;
1084 *((uint32_t*)dst
) = fmt
;
1089 m_option_type_t m_option_type_imgfmt
= {
1091 "Please report any missing colorspaces.",
1102 #include "libaf/af_format.h"
1104 /* FIXME: snyc with af_format.h */
1108 } mp_afmt_list
[] = {
1110 {"mulaw", AF_FORMAT_MU_LAW
},
1111 {"alaw", AF_FORMAT_A_LAW
},
1112 {"mpeg2", AF_FORMAT_MPEG2
},
1113 {"ac3", AF_FORMAT_AC3
},
1114 {"imaadpcm", AF_FORMAT_IMA_ADPCM
},
1116 {"u8", AF_FORMAT_U8
},
1117 {"s8", AF_FORMAT_S8
},
1118 {"u16le", AF_FORMAT_U16_LE
},
1119 {"u16be", AF_FORMAT_U16_BE
},
1120 {"u16ne", AF_FORMAT_U16_NE
},
1121 {"s16le", AF_FORMAT_S16_LE
},
1122 {"s16be", AF_FORMAT_S16_BE
},
1123 {"s16ne", AF_FORMAT_S16_NE
},
1124 {"u24le", AF_FORMAT_U24_LE
},
1125 {"u24be", AF_FORMAT_U24_BE
},
1126 {"u24ne", AF_FORMAT_U24_NE
},
1127 {"s24le", AF_FORMAT_S24_LE
},
1128 {"s24be", AF_FORMAT_S24_BE
},
1129 {"s24ne", AF_FORMAT_S24_NE
},
1130 {"u32le", AF_FORMAT_U32_LE
},
1131 {"u32be", AF_FORMAT_U32_BE
},
1132 {"u32ne", AF_FORMAT_U32_NE
},
1133 {"s32le", AF_FORMAT_S32_LE
},
1134 {"s32be", AF_FORMAT_S32_BE
},
1135 {"s32ne", AF_FORMAT_S32_NE
},
1136 {"floatle", AF_FORMAT_FLOAT_LE
},
1137 {"floatbe", AF_FORMAT_FLOAT_BE
},
1138 {"floatne", AF_FORMAT_FLOAT_NE
},
1142 static int parse_afmt(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
1146 if (param
== NULL
|| strlen(param
) == 0)
1147 return M_OPT_MISSING_PARAM
;
1149 if(!strcmp(param
,"help")) {
1150 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available formats:");
1151 for(i
= 0 ; mp_afmt_list
[i
].name
; i
++)
1152 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s",mp_afmt_list
[i
].name
);
1153 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1154 return M_OPT_EXIT
- 1;
1157 if (sscanf(param
, "0x%x", &fmt
) != 1)
1159 for(i
= 0 ; mp_afmt_list
[i
].name
; i
++) {
1160 if(!strcasecmp(param
,mp_afmt_list
[i
].name
)) {
1161 fmt
=mp_afmt_list
[i
].fmt
;
1165 if(!mp_afmt_list
[i
].name
) {
1166 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: unknown format name: '%s'\n",name
,param
);
1167 return M_OPT_INVALID
;
1172 *((uint32_t*)dst
) = fmt
;
1177 m_option_type_t m_option_type_afmt
= {
1179 "Please report any missing formats.",
1191 static double parse_timestring(char *str
)
1195 if (sscanf(str
, "%d:%d:%lf", &a
, &b
, &d
) == 3)
1196 return 3600*a
+ 60*b
+ d
;
1197 else if (sscanf(str
, "%d:%lf", &a
, &d
) == 2)
1199 else if (sscanf(str
, "%lf", &d
) == 1)
1205 static int parse_time(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
)
1209 if (param
== NULL
|| strlen(param
) == 0)
1210 return M_OPT_MISSING_PARAM
;
1212 time
= parse_timestring(param
);
1213 if (time
== -1e100
) {
1214 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: invalid time: '%s'\n",
1216 return M_OPT_INVALID
;
1220 *(double *)dst
= time
;
1224 m_option_type_t m_option_type_time
= {
1238 // Time or size (-endpos)
1240 static int parse_time_size(m_option_t
* opt
,char *name
, char *param
, void* dst
, int src
) {
1245 if (param
== NULL
|| strlen(param
) == 0)
1246 return M_OPT_MISSING_PARAM
;
1249 /* End at size parsing */
1250 if(sscanf(param
, "%lf%3s", &end_at
, unit
) == 2) {
1251 ts
.type
= END_AT_SIZE
;
1252 if(!strcasecmp(unit
, "b"))
1254 else if(!strcasecmp(unit
, "kb"))
1256 else if(!strcasecmp(unit
, "mb"))
1257 end_at
*= 1024*1024;
1258 else if(!strcasecmp(unit
, "gb"))
1259 end_at
*= 1024*1024*1024;
1261 ts
.type
= END_AT_NONE
;
1263 if (ts
.type
== END_AT_SIZE
) {
1269 /* End at time parsing. This has to be last because the parsing accepts
1270 * even a number followed by garbage */
1271 if ((end_at
= parse_timestring(param
)) == -1e100
) {
1272 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: invalid time or size: '%s'\n",
1274 return M_OPT_INVALID
;
1277 ts
.type
= END_AT_TIME
;
1281 *(m_time_size_t
*)dst
= ts
;
1285 m_option_type_t m_option_type_time_size
= {
1288 sizeof(m_time_size_t
),
1299 //// Objects (i.e. filters, etc) settings
1301 #include "m_struct.h"
1304 #define VAL(x) (*(m_obj_settings_t**)(x))
1306 static int find_obj_desc(char* name
,m_obj_list_t
* l
,m_struct_t
** ret
) {
1310 for(i
= 0 ; l
->list
[i
] ; i
++) {
1311 n
= M_ST_MB(char*,l
->list
[i
],l
->name_off
);
1312 if(!strcmp(n
,name
)) {
1313 *ret
= M_ST_MB(m_struct_t
*,l
->list
[i
],l
->desc_off
);
1320 static int get_obj_param(const char* opt_name
,const char* obj_name
, m_struct_t
* desc
,
1321 char* str
,int* nold
,int oldmax
,char** dst
) {
1326 eq
= strchr(str
,'=');
1332 if(p
[0] == '\0') p
= NULL
;
1334 opt
= m_option_list_find(desc
->fields
,str
);
1336 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s doesn't have a %s parameter.\n",opt_name
,obj_name
,str
);
1337 return M_OPT_UNKNOWN
;
1339 r
= m_option_parse(opt
,str
,p
,NULL
,M_CONFIG_FILE
);
1342 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while parsing %s parameter %s (%s)\n",opt_name
,obj_name
,str
,p
);
1347 dst
[0] = strdup(str
);
1348 dst
[1] = p
? strdup(p
) : NULL
;
1352 if((*nold
) >= oldmax
) {
1353 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s has only %d params, so you can't give more than %d unnamed params.\n",
1354 opt_name
,obj_name
,oldmax
,oldmax
);
1355 return M_OPT_OUT_OF_RANGE
;
1357 opt
= &desc
->fields
[(*nold
)];
1358 r
= m_option_parse(opt
,opt
->name
,str
,NULL
,M_CONFIG_FILE
);
1361 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while parsing %s parameter %s (%s)\n",opt_name
,obj_name
,opt
->name
,str
);
1365 dst
[0] = strdup(opt
->name
);
1366 dst
[1] = strdup(str
);
1373 static int get_obj_params(const char* opt_name
, const char* name
,char* params
,
1374 m_struct_t
* desc
,char separator
, char*** _ret
) {
1375 int n
= 0,nold
= 0, nopts
,r
;
1376 char* ptr
,*last_ptr
= params
;
1379 if(!strcmp(params
,"help")) { // Help
1380 char min
[50],max
[50];
1382 printf("%s doesn't have any options.\n\n",name
);
1383 return M_OPT_EXIT
- 1;
1385 printf("\n Name Type Min Max\n\n");
1386 for(n
= 0 ; desc
->fields
[n
].name
; n
++) {
1387 m_option_t
* opt
= &desc
->fields
[n
];
1388 if(opt
->type
->flags
& M_OPT_TYPE_HAS_CHILD
) continue;
1389 if(opt
->flags
& M_OPT_MIN
)
1390 sprintf(min
,"%-8.0f",opt
->min
);
1393 if(opt
->flags
& M_OPT_MAX
)
1394 sprintf(max
,"%-8.0f",opt
->max
);
1397 printf(" %-20.20s %-15.15s %-10.10s %-10.10s\n",
1404 return M_OPT_EXIT
- 1;
1407 for(nopts
= 0 ; desc
->fields
[nopts
].name
; nopts
++)
1410 // TODO : Check that each opt can be parsed
1412 while(last_ptr
&& last_ptr
[0] != '\0') {
1413 ptr
= strchr(last_ptr
,separator
);
1415 r
= get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,NULL
);
1419 if(ptr
== last_ptr
) { // Empty field, count it and go on
1425 r
= get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,NULL
);
1432 if (!last_ptr
[0]) // count an empty field at the end, too
1435 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Too many options for %s\n", name
);
1436 return M_OPT_OUT_OF_RANGE
;
1438 if(!_ret
) // Just test
1440 if (n
== 0) // No options or only empty options
1443 ret
= malloc((n
+2)*2*sizeof(char*));
1447 while(last_ptr
&& last_ptr
[0] != '\0') {
1448 ptr
= strchr(last_ptr
,separator
);
1450 get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,&ret
[n
*2]);
1454 if(ptr
== last_ptr
) { // Empty field, count it and go on
1460 get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,&ret
[n
*2]);
1464 ret
[n
*2] = ret
[n
*2+1] = NULL
;
1470 static int parse_obj_params(m_option_t
* opt
,char *name
,
1471 char *param
, void* dst
, int src
) {
1474 m_obj_params_t
* p
= opt
->priv
;
1476 char* cpy
= strdup(param
);
1478 // We need the object desc
1480 return M_OPT_INVALID
;
1483 r
= get_obj_params(name
,desc
->name
,cpy
,desc
,p
->separator
,dst
? &opts
: NULL
);
1489 if (!opts
) // no arguments given
1492 for(r
= 0 ; opts
[r
] ; r
+= 2)
1493 m_struct_set(desc
,dst
,opts
[r
],opts
[r
+1]);
1499 m_option_type_t m_option_type_obj_params
= {
1512 /// Some predefined types as a definition would be quite lengthy
1515 static m_span_t m_span_params_dflts
= { -1, -1 };
1516 static m_option_t m_span_params_fields
[] = {
1517 {"start", M_ST_OFF(m_span_t
,start
), CONF_TYPE_INT
, M_OPT_MIN
, 1 ,0, NULL
},
1518 {"end", M_ST_OFF(m_span_t
,end
), CONF_TYPE_INT
, M_OPT_MIN
, 1 ,0, NULL
},
1519 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
1521 static struct m_struct_st m_span_opts
= {
1524 &m_span_params_dflts
,
1525 m_span_params_fields
1527 m_obj_params_t m_span_params_def
= {
1532 static int parse_obj_settings(char* opt
,char* str
,m_obj_list_t
* list
,
1533 m_obj_settings_t
**_ret
, int ret_n
) {
1535 char *param
,**plist
= NULL
;
1537 m_obj_settings_t
*ret
= _ret
? *_ret
: NULL
;
1540 // Now check that the object exists
1541 param
= strchr(str
,'=');
1545 if(strlen(param
) <= 0)
1550 if(!find_obj_desc(str
,list
,&desc
)) {
1551 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s doesn't exist.\n",opt
,str
);
1552 return M_OPT_INVALID
;
1557 if(!strcmp(param
,"help")) {
1558 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Option %s: %s have no option description.\n",opt
,str
);
1559 return M_OPT_EXIT
- 1;
1561 plist
= calloc(4,sizeof(char*));
1562 plist
[0] = strdup("_oldargs_");
1563 plist
[1] = strdup(param
);
1565 r
= get_obj_params(opt
,str
,param
,desc
,':',_ret
? &plist
: NULL
);
1573 ret
= realloc(ret
,(ret_n
+2)*sizeof(m_obj_settings_t
));
1574 memset(&ret
[ret_n
],0,2*sizeof(m_obj_settings_t
));
1575 ret
[ret_n
].name
= strdup(str
);
1576 ret
[ret_n
].attribs
= plist
;
1582 static void free_obj_settings_list(void* dst
);
1584 static int obj_settings_list_del(char *opt_name
,char *param
,void* dst
, int src
) {
1585 char** str_list
= NULL
;
1586 int r
,i
,idx_max
= 0;
1587 char* rem_id
= "_removed_marker_";
1588 m_option_t list_opt
= {opt_name
, NULL
, CONF_TYPE_STRING_LIST
,
1590 m_obj_settings_t
* obj_list
= dst
? VAL(dst
) : NULL
;
1592 if(dst
&& !obj_list
) {
1593 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: the list is empty.\n",opt_name
);
1595 } else if(obj_list
) {
1596 for(idx_max
= 0 ; obj_list
[idx_max
].name
!= NULL
; idx_max
++)
1600 r
= m_option_parse(&list_opt
,opt_name
,param
,&str_list
,src
);
1601 if(r
< 0 || !str_list
)
1604 for(r
= 0 ; str_list
[r
] ; r
++) {
1607 id
= strtol(str_list
[r
],&endptr
,0);
1608 if(endptr
== str_list
[r
]) {
1609 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
);
1610 m_option_free(&list_opt
,&str_list
);
1611 return M_OPT_INVALID
;
1613 if(!obj_list
) continue;
1614 if(id
>= idx_max
|| id
< -idx_max
) {
1615 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: Index %d is out of range.\n",opt_name
,id
);
1620 free(obj_list
[id
].name
);
1621 free_str_list(&(obj_list
[id
].attribs
));
1622 obj_list
[id
].name
= rem_id
;
1626 m_option_free(&list_opt
,&str_list
);
1630 for(i
= 0 ; obj_list
[i
].name
; i
++) {
1631 while(obj_list
[i
].name
== rem_id
) {
1632 memmove(&obj_list
[i
],&obj_list
[i
+1],sizeof(m_obj_settings_t
)*(idx_max
- i
));
1636 obj_list
= realloc(obj_list
,sizeof(m_obj_settings_t
)*(idx_max
+1));
1637 VAL(dst
) = obj_list
;
1642 static int parse_obj_settings_list(m_option_t
* opt
,char *name
,
1643 char *param
, void* dst
, int src
) {
1644 int n
= 0,r
,len
= strlen(opt
->name
);
1646 char *ptr
, *last_ptr
;
1647 m_obj_settings_t
*res
= NULL
,*queue
= NULL
,*head
= NULL
;
1650 // We need the objects list
1652 return M_OPT_INVALID
;
1654 if(opt
->name
[len
-1] == '*' && ((int)strlen(name
) > len
- 1)) {
1655 char* n
= &name
[len
-1];
1656 if(strcasecmp(n
,"-add") == 0)
1658 else if(strcasecmp(n
,"-pre") == 0)
1660 else if(strcasecmp(n
,"-del") == 0)
1662 else if(strcasecmp(n
,"-clr") == 0)
1666 strncpy(prefix
,opt
->name
,len
-1);
1667 prefix
[len
-1] = '\0';
1668 mp_msg(MSGT_VFILTER
,MSGL_ERR
, "Option %s: unknown postfix %s\n"
1669 "Supported postfixes are:\n"
1671 " Append the given list to the current list\n\n"
1673 " Prepend the given list to the current list\n\n"
1675 " Remove the given elements. Take the list element index (starting from 0).\n"
1676 " Negative index can be used (i.e. -1 is the last element)\n\n"
1678 " Clear the current list.\n",name
,n
,prefix
,prefix
,prefix
,prefix
);
1680 return M_OPT_UNKNOWN
;
1684 // Clear the list ??
1687 free_obj_settings_list(dst
);
1691 if (param
== NULL
|| strlen(param
) == 0)
1692 return M_OPT_MISSING_PARAM
;
1696 if(dst
) head
= VAL(dst
);
1699 if(dst
) queue
= VAL(dst
);
1702 return obj_settings_list_del(name
,param
,dst
,src
);
1705 free_obj_settings_list(dst
);
1708 mp_msg(MSGT_VFILTER
,MSGL_ERR
, "Option %s: FIXME\n",name
);
1709 return M_OPT_UNKNOWN
;
1712 if(!strcmp(param
,"help")) {
1713 m_obj_list_t
* ol
= opt
->priv
;
1714 mp_msg(MSGT_VFILTER
,MSGL_INFO
,"Available video filters:\n");
1715 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VIDEO_FILTERS\n");
1716 for(n
= 0 ; ol
->list
[n
] ; n
++)
1717 mp_msg(MSGT_VFILTER
,MSGL_INFO
," %-15s: %s\n",
1718 M_ST_MB(char*,ol
->list
[n
],ol
->name_off
),
1719 M_ST_MB(char*,ol
->list
[n
],ol
->info_off
));
1720 mp_msg(MSGT_VFILTER
,MSGL_INFO
,"\n");
1721 return M_OPT_EXIT
- 1;
1723 ptr
= str
= strdup(param
);
1725 while(ptr
[0] != '\0') {
1727 ptr
= get_nextsep(ptr
, LIST_SEPARATOR
, 1);
1730 r
= parse_obj_settings(name
,last_ptr
,opt
->priv
,dst
? &res
: NULL
,n
);
1739 r
= parse_obj_settings(name
,last_ptr
,opt
->priv
,dst
? &res
: NULL
,n
);
1749 return M_OPT_INVALID
;
1751 if( ((opt
->flags
& M_OPT_MIN
) && (n
< opt
->min
)) ||
1752 ((opt
->flags
& M_OPT_MAX
) && (n
> opt
->max
)) )
1753 return M_OPT_OUT_OF_RANGE
;
1758 for(qsize
= 0 ; queue
[qsize
].name
; qsize
++)
1760 res
= realloc(res
,(qsize
+n
+1)*sizeof(m_obj_settings_t
));
1761 memcpy(&res
[n
],queue
,(qsize
+1)*sizeof(m_obj_settings_t
));
1767 for(hsize
= 0 ; head
[hsize
].name
; hsize
++)
1769 head
= realloc(head
,(hsize
+n
+1)*sizeof(m_obj_settings_t
));
1770 memcpy(&head
[hsize
],res
,(n
+1)*sizeof(m_obj_settings_t
));
1779 static void free_obj_settings_list(void* dst
) {
1781 m_obj_settings_t
*d
;
1783 if(!dst
|| !VAL(dst
)) return;
1787 for(n
= 0 ; d
[n
].name
; n
++) {
1789 free_str_list(&(d
[n
].attribs
));
1796 static void copy_obj_settings_list(m_option_t
* opt
,void* dst
, void* src
) {
1797 m_obj_settings_t
*d
,*s
;
1806 free_obj_settings_list(dst
);
1811 for(n
= 0 ; s
[n
].name
; n
++)
1813 d
= malloc((n
+1)*sizeof(m_obj_settings_t
));
1814 for(n
= 0 ; s
[n
].name
; n
++) {
1815 d
[n
].name
= strdup(s
[n
].name
);
1816 d
[n
].attribs
= NULL
;
1817 copy_str_list(NULL
,&(d
[n
].attribs
),&(s
[n
].attribs
));
1820 d
[n
].attribs
= NULL
;
1824 m_option_type_t m_option_type_obj_settings_list
= {
1825 "Object settings list",
1827 sizeof(m_obj_settings_t
*),
1828 M_OPT_TYPE_DYNAMIC
|M_OPT_TYPE_ALLOW_WILDCARD
,
1829 parse_obj_settings_list
,
1831 copy_obj_settings_list
,
1832 copy_obj_settings_list
,
1833 copy_obj_settings_list
,
1834 free_obj_settings_list
,
1839 static int parse_obj_presets(m_option_t
* opt
,char *name
,
1840 char *param
, void* dst
, int src
) {
1841 m_obj_presets_t
* obj_p
= (m_obj_presets_t
*)opt
->priv
;
1842 m_struct_t
*in_desc
,*out_desc
;
1845 char* pre_name
= NULL
;
1848 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Presets need a pointer to a m_obj_presets_t in the priv field.\n",name
);
1849 return M_OPT_PARSER_ERR
;
1853 return M_OPT_MISSING_PARAM
;
1855 pre
= obj_p
->presets
;
1856 in_desc
= obj_p
->in_desc
;
1857 out_desc
= obj_p
->out_desc
? obj_p
->out_desc
: obj_p
->in_desc
;
1860 if(!strcmp(param
,"help")) {
1861 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available presets for %s->%s:",out_desc
->name
,name
);
1862 for(pre
= obj_p
->presets
;(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) ;
1864 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s",pre_name
);
1865 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
1866 return M_OPT_EXIT
- 1;
1869 for(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
) ; pre_name
;
1870 pre
+= s
, pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) {
1871 if(!strcmp(pre_name
,param
)) break;
1874 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: There is no preset named %s\n"
1875 "Available presets are:",name
,param
);
1876 for(pre
= obj_p
->presets
;(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) ;
1878 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s",pre_name
);
1879 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
1880 return M_OPT_INVALID
;
1885 for(i
= 0 ; in_desc
->fields
[i
].name
; i
++) {
1886 m_option_t
* out_opt
= m_option_list_find(out_desc
->fields
,
1887 in_desc
->fields
[i
].name
);
1889 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
);
1890 return M_OPT_PARSER_ERR
;
1892 m_option_copy(out_opt
,M_ST_MB_P(dst
,out_opt
->p
),M_ST_MB_P(pre
,in_desc
->fields
[i
].p
));
1898 m_option_type_t m_option_type_obj_presets
= {
1911 static int parse_custom_url(m_option_t
* opt
,char *name
,
1912 char *url
, void* dst
, int src
) {
1913 int pos1
, pos2
, r
, v6addr
= 0;
1914 char *ptr1
=NULL
, *ptr2
=NULL
, *ptr3
=NULL
, *ptr4
=NULL
;
1915 m_struct_t
* desc
= opt
->priv
;
1918 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Custom URL needs a pointer to a m_struct_t in the priv field.\n",name
);
1919 return M_OPT_PARSER_ERR
;
1922 // extract the protocol
1923 ptr1
= strstr(url
, "://");
1926 if(m_option_list_find(desc
->fields
,"filename")) {
1927 m_struct_set(desc
,dst
,"filename",url
);
1930 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,"Option %s: URL doesn't have a valid protocol!\n",name
);
1931 return M_OPT_INVALID
;
1933 if(m_option_list_find(desc
->fields
,"string")) {
1934 if(strlen(ptr1
)>3) {
1935 m_struct_set(desc
,dst
,"string",ptr1
+3);
1940 if(dst
&& m_option_list_find(desc
->fields
,"protocol")) {
1942 r
= m_struct_set(desc
,dst
,"protocol",url
);
1945 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting protocol.\n",name
);
1954 // check if a username:password is given
1955 ptr2
= strstr(ptr1
, "@");
1956 ptr3
= strstr(ptr1
, "/");
1957 if( ptr3
!=NULL
&& ptr3
<ptr2
) {
1958 // it isn't really a username but rather a part of the path
1963 // We got something, at least a username...
1964 if(!m_option_list_find(desc
->fields
,"username")) {
1965 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a username part.\n",name
);
1968 ptr3
= strstr(ptr1
, ":");
1969 if( ptr3
!=NULL
&& ptr3
<ptr2
) {
1970 // We also have a password
1971 if(!m_option_list_find(desc
->fields
,"password")) {
1972 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a password part.\n",name
);
1974 } else { // Username and password
1977 r
= m_struct_set(desc
,dst
,"username",ptr1
);
1980 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting username.\n",name
);
1984 r
= m_struct_set(desc
,dst
,"password",ptr3
+1);
1987 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting password.\n",name
);
1992 } else { // User name only
1994 r
= m_struct_set(desc
,dst
,"username",ptr1
);
1997 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting username.\n",name
);
2006 // before looking for a port number check if we have an IPv6 type numeric address
2007 // in an IPv6 URL the numeric address should be inside square braces.
2008 ptr2
= strstr(ptr1
, "[");
2009 ptr3
= strstr(ptr1
, "]");
2010 // If the [] is after the first it isn't the hostname
2011 ptr4
= strstr(ptr1
, "/");
2012 if( ptr2
!=NULL
&& ptr3
!=NULL
&& (ptr2
< ptr3
) && (!ptr4
|| ptr4
> ptr3
)) {
2013 // we have an IPv6 numeric address
2022 // look if the port is given
2023 ptr2
= strstr(ptr2
, ":");
2024 // If the : is after the first / it isn't the port
2025 ptr3
= strstr(ptr1
, "/");
2026 if(ptr3
&& ptr3
- ptr2
< 0) ptr2
= NULL
;
2029 // Look if a path is given
2032 // So we have an URL like http://www.hostname.com
2035 // We have an URL like http://www.hostname.com/file.txt
2039 // We have an URL beginning like http://www.hostname.com:1212
2040 // Get the port number
2041 if(!m_option_list_find(desc
->fields
,"port")) {
2042 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a port part.\n",name
);
2046 int p
= atoi(ptr2
+1);
2048 snprintf(tmp
,99,"%d",p
);
2049 r
= m_struct_set(desc
,dst
,"port",tmp
);
2051 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting port.\n",name
);
2058 if( v6addr
) pos2
--;
2061 if(!m_option_list_find(desc
->fields
,"hostname")) {
2062 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a hostname part.\n",name
);
2065 char tmp
[pos2
-pos1
+1];
2066 strncpy(tmp
,ptr1
, pos2
-pos1
);
2067 tmp
[pos2
-pos1
] = '\0';
2068 r
= m_struct_set(desc
,dst
,"hostname",tmp
);
2070 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting hostname.\n",name
);
2075 // Look if a path is given
2076 ptr2
= strstr(ptr1
, "/");
2078 // A path/filename is given
2079 // check if it's not a trailing '/'
2080 if( strlen(ptr2
)>1 ) {
2081 // copy the path/filename in the URL container
2082 if(!m_option_list_find(desc
->fields
,"filename")) {
2083 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a hostname part.\n",name
);
2087 int l
= strlen(ptr2
+1) + 1;
2088 char* fname
= ptr2
+1;
2091 url_unescape_string(fname
,ptr2
+1);
2093 r
= m_struct_set(desc
,dst
,"filename",fname
);
2097 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting filename.\n",name
);
2107 /// TODO : Write the other needed funcs for 'normal' options
2108 m_option_type_t m_option_type_custom_url
= {