16 //#include "m_config.h"
18 #include "stream/url.h"
19 #include "libavutil/avstring.h"
21 // Don't free for 'production' atm
26 const m_option_t
* m_option_list_find(const m_option_t
* list
,const char* name
) {
29 for(i
= 0 ; list
[i
].name
; i
++) {
30 int l
= strlen(list
[i
].name
) - 1;
31 if((list
[i
].type
->flags
& M_OPT_TYPE_ALLOW_WILDCARD
) &&
32 (l
> 0) && (list
[i
].name
[l
] == '*')) {
33 if(strncasecmp(list
[i
].name
,name
,l
) == 0)
35 } else if(strcasecmp(list
[i
].name
,name
) == 0)
41 // Default function that just does a memcpy
43 static void copy_opt(const m_option_t
* opt
,void* dst
,void* src
) {
45 memcpy(dst
,src
,opt
->type
->size
);
48 // Helper for the print funcs (from man printf)
49 static char* dup_printf(const char *fmt
, ...) {
50 /* Guess we need no more than 50 bytes. */
54 if ((p
= malloc (size
)) == NULL
)
57 /* Try to print in the allocated space. */
59 n
= vsnprintf (p
, size
, fmt
, ap
);
61 /* If that worked, return the string. */
62 if (n
> -1 && n
< size
)
64 /* Else try again with more space. */
65 if (n
> -1) /* glibc 2.1 */
66 size
= n
+1; /* precisely what is needed */
68 size
*= 2; /* twice the old size */
69 if ((p
= realloc (p
, size
)) == NULL
)
77 #define VAL(x) (*(int*)(x))
79 static int parse_flag(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
80 if (src
== M_CONFIG_FILE
) {
81 if(!param
) return M_OPT_MISSING_PARAM
;
82 if (!strcasecmp(param
, "yes") || /* any other language? */
83 !strcasecmp(param
, "on") ||
84 !strcasecmp(param
, "ja") ||
85 !strcasecmp(param
, "si") ||
86 !strcasecmp(param
, "igen") ||
87 !strcasecmp(param
, "y") ||
88 !strcasecmp(param
, "j") ||
89 !strcasecmp(param
, "i") ||
90 !strcasecmp(param
, "tak") ||
91 !strcasecmp(param
, "ja") ||
92 !strcasecmp(param
, "true") ||
93 !strcmp(param
, "1")) {
94 if(dst
) VAL(dst
) = opt
->max
;
95 } else if (!strcasecmp(param
, "no") ||
96 !strcasecmp(param
, "off") ||
97 !strcasecmp(param
, "nein") ||
98 !strcasecmp(param
, "nicht") ||
99 !strcasecmp(param
, "nem") ||
100 !strcasecmp(param
, "n") ||
101 !strcasecmp(param
, "nie") ||
102 !strcasecmp(param
, "nej") ||
103 !strcasecmp(param
, "false") ||
104 !strcmp(param
, "0")) {
105 if(dst
) VAL(dst
) = opt
->min
;
107 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid parameter for %s flag: %s\n",name
, param
);
108 return M_OPT_INVALID
;
112 if(dst
) VAL(dst
) = opt
->max
;
117 static char* print_flag(const m_option_t
* opt
, const void* val
) {
118 if(VAL(val
) == opt
->min
)
121 return strdup("yes");
124 const m_option_type_t m_option_type_flag
= {
126 "need yes or no in config files",
139 static int parse_int(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
145 return M_OPT_MISSING_PARAM
;
147 tmp_int
= strtol(param
, &endptr
, 10);
149 tmp_int
= strtol(param
, &endptr
, 0);
151 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be an integer: %s\n",name
, param
);
152 return M_OPT_INVALID
;
155 if ((opt
->flags
& M_OPT_MIN
) && (tmp_int
< opt
->min
)) {
156 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be >= %d: %s\n", name
, (int) opt
->min
, param
);
157 return M_OPT_OUT_OF_RANGE
;
160 if ((opt
->flags
& M_OPT_MAX
) && (tmp_int
> opt
->max
)) {
161 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be <= %d: %s\n",name
, (int) opt
->max
, param
);
162 return M_OPT_OUT_OF_RANGE
;
165 if(dst
) VAL(dst
) = tmp_int
;
170 static char* print_int(const m_option_t
* opt
, const void* val
) {
172 return dup_printf("%d",VAL(val
));
175 const m_option_type_t m_option_type_int
= {
191 #define VAL(x) (*(double*)(x))
193 static int parse_double(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
199 return M_OPT_MISSING_PARAM
;
201 tmp_float
= strtod(param
, &endptr
);
206 tmp_float
/= strtod(endptr
+1, &endptr
);
210 /* we also handle floats specified with
211 * non-locale decimal point ::atmos
214 tmp_float
-= 1.0/pow(10,strlen(endptr
+1)) * strtod(endptr
+1, &endptr
);
216 tmp_float
+= 1.0/pow(10,strlen(endptr
+1)) * strtod(endptr
+1, &endptr
);
221 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be a floating point "
222 "number or a ratio (numerator[:/]denominator): %s\n",name
, param
);
223 return M_OPT_INVALID
;
226 if (opt
->flags
& M_OPT_MIN
)
227 if (tmp_float
< opt
->min
) {
228 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be >= %f: %s\n", name
, opt
->min
, param
);
229 return M_OPT_OUT_OF_RANGE
;
232 if (opt
->flags
& M_OPT_MAX
)
233 if (tmp_float
> opt
->max
) {
234 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be <= %f: %s\n", name
, opt
->max
, param
);
235 return M_OPT_OUT_OF_RANGE
;
238 if(dst
) VAL(dst
) = tmp_float
;
242 static char* print_double(const m_option_t
* opt
, const void* val
) {
244 return dup_printf("%f",VAL(val
));
247 const m_option_type_t m_option_type_double
= {
249 "double precission floating point number or ratio (numerator[:/]denominator)",
261 #define VAL(x) (*(float*)(x))
263 static int parse_float(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
265 int r
= parse_double(opt
, name
, param
, &tmp
, src
);
266 if(r
==1 && dst
) VAL(dst
) = tmp
;
270 static char* print_float(const m_option_t
* opt
, const void* val
) {
272 return dup_printf("%f",VAL(val
));
275 const m_option_type_t m_option_type_float
= {
277 "floating point number or ratio (numerator[:/]denominator)",
288 ///////////// Position
290 #define VAL(x) (*(off_t*)(x))
292 static int parse_position(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
297 return M_OPT_MISSING_PARAM
;
298 if (sscanf(param
, sizeof(off_t
) == sizeof(int) ?
299 "%d%c" : "%"PRId64
"%c", &tmp_off
, &dummy
) != 1) {
300 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be an integer: %s\n",opt
->name
,param
);
301 return M_OPT_INVALID
;
304 if (opt
->flags
& M_OPT_MIN
)
305 if (tmp_off
< opt
->min
) {
306 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,
307 "The %s option must be >= %"PRId64
": %s\n",
308 name
, (int64_t) opt
->min
, param
);
309 return M_OPT_OUT_OF_RANGE
;
312 if (opt
->flags
& M_OPT_MAX
)
313 if (tmp_off
> opt
->max
) {
314 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,
315 "The %s option must be <= %"PRId64
": %s\n",
316 name
, (int64_t) opt
->max
, param
);
317 return M_OPT_OUT_OF_RANGE
;
325 static char* print_position(const m_option_t
* opt
, const void* val
) {
326 return dup_printf("%"PRId64
,(int64_t)VAL(val
));
329 const m_option_type_t m_option_type_position
= {
346 #define VAL(x) (*(char**)(x))
348 static int parse_str(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
352 return M_OPT_MISSING_PARAM
;
354 if ((opt
->flags
& M_OPT_MIN
) && (strlen(param
) < opt
->min
)) {
355 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Parameter must be >= %d chars: %s\n",
356 (int) opt
->min
, param
);
357 return M_OPT_OUT_OF_RANGE
;
360 if ((opt
->flags
& M_OPT_MAX
) && (strlen(param
) > opt
->max
)) {
361 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Parameter must be <= %d chars: %s\n",
362 (int) opt
->max
, param
);
363 return M_OPT_OUT_OF_RANGE
;
369 VAL(dst
) = strdup(param
);
376 static char* print_str(const m_option_t
* opt
, const void* val
) {
377 return (val
&& VAL(val
) && strlen(VAL(val
)) > 0) ? strdup(VAL(val
)) : NULL
;
380 static void copy_str(const m_option_t
* opt
,void* dst
, void* src
) {
383 if(VAL(dst
)) free(VAL(dst
)); //FIXME!!!
385 VAL(dst
) = VAL(src
) ? strdup(VAL(src
)) : NULL
;
389 static void free_str(void* src
) {
392 free(VAL(src
)); //FIXME!!!
398 const m_option_type_t m_option_type_string
= {
411 //////////// String list
413 #define LIST_SEPARATOR ','
415 #define VAL(x) (*(char***)(x))
423 static void free_str_list(void* dst
) {
427 if(!dst
|| !VAL(dst
)) return;
432 for(i
= 0 ; d
[i
] != NULL
; i
++)
439 static int str_list_add(char** add
, int n
,void* dst
,int pre
) {
440 char** lst
= VAL(dst
);
443 if(!dst
) return M_OPT_PARSER_ERR
;
446 for(ln
= 0 ; lst
&& lst
[ln
] ; ln
++)
449 lst
= realloc(lst
,(n
+ln
+1)*sizeof(char*));
452 memmove(&lst
[n
],lst
,(ln
+1)*sizeof(char*));
453 memcpy(lst
,add
,n
*sizeof(char*));
455 memcpy(&lst
[ln
],add
,(n
+1)*sizeof(char*));
464 static int str_list_del(char** del
, int n
,void* dst
) {
469 if(!dst
) return M_OPT_PARSER_ERR
;
472 for(ln
= 0 ; lst
&& lst
[ln
] ; ln
++)
476 for(i
= 0 ; del
[i
] != NULL
; i
++) {
477 idx
= strtol(del
[i
], &ep
, 0);
479 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid index: %s\n",del
[i
]);
484 if(idx
< 0 || idx
>= ln
) {
485 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Index %ld is out of range.\n",idx
);
501 d
= calloc(s
+1,sizeof(char*));
502 for(i
= 0, n
= 0 ; i
< ln
; i
++) {
503 if(!lst
[i
]) continue;
515 static char *get_nextsep(char *ptr
, char sep
, int modify
) {
516 char *last_ptr
= ptr
;
518 ptr
= strchr(ptr
, sep
);
519 if(ptr
&& ptr
>last_ptr
&& ptr
[-1]=='\\'){
520 if (modify
) memmove(ptr
-1, ptr
, strlen(ptr
)+1);
528 static int parse_str_list(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
529 int n
= 0,len
= strlen(opt
->name
);
531 char *ptr
= param
, *last_ptr
, **res
;
534 if(opt
->name
[len
-1] == '*' && ((int)strlen(name
) > len
- 1)) {
535 const char* n
= &name
[len
-1];
536 if(strcasecmp(n
,"-add") == 0)
538 else if(strcasecmp(n
,"-pre") == 0)
540 else if(strcasecmp(n
,"-del") == 0)
542 else if(strcasecmp(n
,"-clr") == 0)
545 return M_OPT_UNKNOWN
;
555 // All other ops need a param
556 if (param
== NULL
|| strlen(param
) == 0)
557 return M_OPT_MISSING_PARAM
;
560 while(ptr
[0] != '\0') {
561 ptr
= get_nextsep(ptr
, LIST_SEPARATOR
, 0);
570 return M_OPT_INVALID
;
571 if( ((opt
->flags
& M_OPT_MIN
) && (n
< opt
->min
)) ||
572 ((opt
->flags
& M_OPT_MAX
) && (n
> opt
->max
)) )
573 return M_OPT_OUT_OF_RANGE
;
577 res
= malloc((n
+2)*sizeof(char*));
578 ptr
= str
= strdup(param
);
583 ptr
= get_nextsep(ptr
, LIST_SEPARATOR
, 1);
585 res
[n
] = strdup(last_ptr
);
589 len
= ptr
- last_ptr
;
590 res
[n
] = malloc(len
+ 1);
591 if(len
) strncpy(res
[n
],last_ptr
,len
);
601 return str_list_add(res
,n
,dst
,0);
603 return str_list_add(res
,n
,dst
,1);
605 return str_list_del(res
,n
,dst
);
615 static void copy_str_list(const m_option_t
* opt
,void* dst
, void* src
) {
619 if(!(dst
&& src
)) return;
630 for(n
= 0 ; s
[n
] != NULL
; n
++)
632 d
= malloc((n
+1)*sizeof(char*));
634 d
[n
] = s
[n
] ? strdup(s
[n
]) : NULL
;
639 static char* print_str_list(const m_option_t
* opt
, const void* src
) {
641 char *ret
= NULL
,*last
= NULL
;
644 if(!(src
&& VAL(src
))) return NULL
;
647 for(i
= 0 ; lst
[i
] ; i
++) {
649 ret
= dup_printf("%s,%s",last
,lst
[i
]);
652 ret
= strdup(lst
[i
]);
655 if(last
&& last
!= ret
) free(last
);
659 const m_option_type_t m_option_type_string_list
= {
661 "A list of strings separated by ','\n"
662 "Option with a name ending in an * permits using the following suffix: \n"
663 "\t-add: Add the given parameters at the end of the list.\n"
664 "\t-pre: Add the given parameters at the beginning of the list.\n"
665 "\t-del: Remove the entry at the given indices.\n"
666 "\t-clr: Clear the list.\n"
667 "e.g: -vf-add flip,mirror -vf-del 2,5\n",
669 M_OPT_TYPE_DYNAMIC
| M_OPT_TYPE_ALLOW_WILDCARD
,
679 /////////////////// Func based options
681 // A chained list to save the various calls for func_param and func_full
682 typedef struct m_func_save m_func_save_t
;
690 #define VAL(x) (*(m_func_save_t**)(x))
692 static void free_func_pf(void* src
) {
702 if(s
->param
) free(s
->param
);
709 // Parser for func_param and func_full
710 static int parse_func_pf(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
716 s
= calloc(1,sizeof(m_func_save_t
));
717 s
->name
= strdup(name
);
718 s
->param
= param
? strdup(param
) : NULL
;
722 for( ; p
->next
!= NULL
; p
= p
->next
)
731 static void copy_func_pf(const m_option_t
* opt
,void* dst
, void* src
) {
732 m_func_save_t
*d
= NULL
, *s
,* last
= NULL
;
734 if(!(dst
&& src
)) return;
741 d
= calloc(1,sizeof(m_func_save_t
));
742 d
->name
= strdup(s
->name
);
743 d
->param
= s
->param
? strdup(s
->param
) : NULL
;
755 /////////////////// Func_param
757 static void set_func_param(const m_option_t
* opt
, void* dst
, void* src
) {
766 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,opt
->name
);
767 for( ; s
!= NULL
; s
= s
->next
)
768 ((m_opt_func_param_t
) opt
->p
)(opt
,s
->param
);
771 const m_option_type_t m_option_type_func_param
= {
774 sizeof(m_func_save_t
*),
778 NULL
, // Nothing to do on save
784 /////////////////// Func_full
786 static void set_func_full(const m_option_t
* opt
, void* dst
, void* src
) {
791 for(s
= VAL(src
) ; s
; s
= s
->next
) {
793 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,s
->name
);
794 ((m_opt_func_full_t
) opt
->p
)(opt
,s
->name
,s
->param
);
798 const m_option_type_t m_option_type_func_full
= {
801 sizeof(m_func_save_t
*),
802 M_OPT_TYPE_ALLOW_WILDCARD
|M_OPT_TYPE_INDIRECT
,
805 NULL
, // Nothing to do on save
814 #define VAL(x) (*(int*)(x))
816 static int parse_func(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
822 static void set_func(const m_option_t
* opt
,void* dst
, void* src
) {
824 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,opt
->name
);
825 for(i
= 0 ; i
< VAL(src
) ; i
++)
826 ((m_opt_func_t
) opt
->p
)(opt
);
829 const m_option_type_t m_option_type_func
= {
836 NULL
, // Nothing to do on save
842 /////////////////// Print
844 static int parse_print(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
845 if(opt
->type
== CONF_TYPE_PRINT_INDIRECT
)
846 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s", *(char **) opt
->p
);
847 else if(opt
->type
== CONF_TYPE_PRINT_FUNC
)
848 return ((m_opt_func_full_t
) opt
->p
)(opt
,name
,param
);
850 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s", (char *) opt
->p
);
852 if(opt
->priv
== NULL
)
857 const m_option_type_t m_option_type_print
= {
870 const m_option_type_t m_option_type_print_indirect
= {
883 const m_option_type_t m_option_type_print_func
= {
887 M_OPT_TYPE_ALLOW_WILDCARD
,
897 /////////////////////// Subconfig
899 #define VAL(x) (*(char***)(x))
901 static int parse_subconf(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
905 const m_option_t
*subopts
;
909 if (param
== NULL
|| strlen(param
) == 0)
910 return M_OPT_MISSING_PARAM
;
912 subparam
= malloc(strlen(param
)+1);
913 subopt
= malloc(strlen(param
)+1);
921 int optlen
= strcspn(p
, ":=");
923 subopt
[0] = subparam
[0] = 0;
924 av_strlcpy(subopt
, p
, optlen
+ 1);
931 optlen
= strcspn(p
, "\"");
932 av_strlcpy(subparam
, p
, optlen
+ 1);
935 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Terminating '\"' missing for '%s'\n", subopt
);
936 return M_OPT_INVALID
;
939 } else if (p
[0] == '%') {
941 optlen
= (int)strtol(p
, (char**)&p
, 0);
942 if (!p
|| p
[0] != '%' || (optlen
> strlen(p
) - 1)) {
943 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid length %i for '%s'\n", optlen
, subopt
);
944 return M_OPT_INVALID
;
947 av_strlcpy(subparam
, p
, optlen
+ 1);
950 optlen
= strcspn(p
, ":");
951 av_strlcpy(subparam
, p
, optlen
+ 1);
958 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Incorrect termination for '%s'\n", subopt
);
959 return M_OPT_INVALID
;
967 for(i
= 0 ; subopts
[i
].name
; i
++) {
968 if(!strcmp(subopts
[i
].name
,subopt
)) break;
970 if(!subopts
[i
].name
) {
971 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Unknown suboption %s\n",name
,subopt
);
972 return M_OPT_UNKNOWN
;
974 r
= m_option_parse(&subopts
[i
],subopt
,
975 subparam
[0] == 0 ? NULL
: subparam
,NULL
,src
);
978 lst
= (char**)realloc(lst
,2 * (nr
+2) * sizeof(char*));
979 lst
[2*nr
] = strdup(subopt
);
980 lst
[2*nr
+1] = subparam
[0] == 0 ? NULL
: strdup(subparam
);
981 memset(&lst
[2*(nr
+1)],0,2*sizeof(char*));
996 const m_option_type_t m_option_type_subconfig
= {
998 "The syntax is -option opt1=foo:flag:opt2=blah",
1000 M_OPT_TYPE_HAS_CHILD
,
1009 #include "libmpcodecs/img_format.h"
1011 /* FIXME: snyc with img_format.h */
1015 } mp_imgfmt_list
[] = {
1016 {"444p", IMGFMT_444P
},
1017 {"422p", IMGFMT_422P
},
1018 {"411p", IMGFMT_411P
},
1019 {"yuy2", IMGFMT_YUY2
},
1020 {"uyvy", IMGFMT_UYVY
},
1021 {"yvu9", IMGFMT_YVU9
},
1022 {"if09", IMGFMT_IF09
},
1023 {"yv12", IMGFMT_YV12
},
1024 {"i420", IMGFMT_I420
},
1025 {"iyuv", IMGFMT_IYUV
},
1026 {"clpl", IMGFMT_CLPL
},
1027 {"hm12", IMGFMT_HM12
},
1028 {"y800", IMGFMT_Y800
},
1030 {"nv12", IMGFMT_NV12
},
1031 {"nv21", IMGFMT_NV21
},
1032 {"bgr24", IMGFMT_BGR24
},
1033 {"bgr32", IMGFMT_BGR32
},
1034 {"bgr16", IMGFMT_BGR16
},
1035 {"bgr15", IMGFMT_BGR15
},
1036 {"bgr8", IMGFMT_BGR8
},
1037 {"bgr4", IMGFMT_BGR4
},
1038 {"bg4b", IMGFMT_BG4B
},
1039 {"bgr1", IMGFMT_BGR1
},
1040 {"rgb24", IMGFMT_RGB24
},
1041 {"rgb32", IMGFMT_RGB32
},
1042 {"rgb16", IMGFMT_RGB16
},
1043 {"rgb15", IMGFMT_RGB15
},
1044 {"rgb8", IMGFMT_RGB8
},
1045 {"rgb4", IMGFMT_RGB4
},
1046 {"rg4b", IMGFMT_RG4B
},
1047 {"rgb1", IMGFMT_RGB1
},
1048 {"rgba", IMGFMT_RGBA
},
1049 {"argb", IMGFMT_ARGB
},
1050 {"bgra", IMGFMT_BGRA
},
1051 {"abgr", IMGFMT_ABGR
},
1052 {"mjpeg", IMGFMT_MJPEG
},
1053 {"mjpg", IMGFMT_MJPEG
},
1057 static int parse_imgfmt(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
1061 if (param
== NULL
|| strlen(param
) == 0)
1062 return M_OPT_MISSING_PARAM
;
1064 if(!strcmp(param
,"help")) {
1065 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available formats:");
1066 for(i
= 0 ; mp_imgfmt_list
[i
].name
; i
++)
1067 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s",mp_imgfmt_list
[i
].name
);
1068 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1069 return M_OPT_EXIT
- 1;
1072 if (sscanf(param
, "0x%x", &fmt
) != 1)
1074 for(i
= 0 ; mp_imgfmt_list
[i
].name
; i
++) {
1075 if(!strcasecmp(param
,mp_imgfmt_list
[i
].name
)) {
1076 fmt
=mp_imgfmt_list
[i
].fmt
;
1080 if(!mp_imgfmt_list
[i
].name
) {
1081 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: unknown format name: '%s'\n",name
,param
);
1082 return M_OPT_INVALID
;
1087 *((uint32_t*)dst
) = fmt
;
1092 const m_option_type_t m_option_type_imgfmt
= {
1094 "Please report any missing colorspaces.",
1105 #include "libaf/af_format.h"
1107 /* FIXME: snyc with af_format.h */
1111 } mp_afmt_list
[] = {
1113 {"mulaw", AF_FORMAT_MU_LAW
},
1114 {"alaw", AF_FORMAT_A_LAW
},
1115 {"mpeg2", AF_FORMAT_MPEG2
},
1116 {"ac3", AF_FORMAT_AC3
},
1117 {"imaadpcm", AF_FORMAT_IMA_ADPCM
},
1119 {"u8", AF_FORMAT_U8
},
1120 {"s8", AF_FORMAT_S8
},
1121 {"u16le", AF_FORMAT_U16_LE
},
1122 {"u16be", AF_FORMAT_U16_BE
},
1123 {"u16ne", AF_FORMAT_U16_NE
},
1124 {"s16le", AF_FORMAT_S16_LE
},
1125 {"s16be", AF_FORMAT_S16_BE
},
1126 {"s16ne", AF_FORMAT_S16_NE
},
1127 {"u24le", AF_FORMAT_U24_LE
},
1128 {"u24be", AF_FORMAT_U24_BE
},
1129 {"u24ne", AF_FORMAT_U24_NE
},
1130 {"s24le", AF_FORMAT_S24_LE
},
1131 {"s24be", AF_FORMAT_S24_BE
},
1132 {"s24ne", AF_FORMAT_S24_NE
},
1133 {"u32le", AF_FORMAT_U32_LE
},
1134 {"u32be", AF_FORMAT_U32_BE
},
1135 {"u32ne", AF_FORMAT_U32_NE
},
1136 {"s32le", AF_FORMAT_S32_LE
},
1137 {"s32be", AF_FORMAT_S32_BE
},
1138 {"s32ne", AF_FORMAT_S32_NE
},
1139 {"floatle", AF_FORMAT_FLOAT_LE
},
1140 {"floatbe", AF_FORMAT_FLOAT_BE
},
1141 {"floatne", AF_FORMAT_FLOAT_NE
},
1145 static int parse_afmt(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
1149 if (param
== NULL
|| strlen(param
) == 0)
1150 return M_OPT_MISSING_PARAM
;
1152 if(!strcmp(param
,"help")) {
1153 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available formats:");
1154 for(i
= 0 ; mp_afmt_list
[i
].name
; i
++)
1155 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s",mp_afmt_list
[i
].name
);
1156 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1157 return M_OPT_EXIT
- 1;
1160 if (sscanf(param
, "0x%x", &fmt
) != 1)
1162 for(i
= 0 ; mp_afmt_list
[i
].name
; i
++) {
1163 if(!strcasecmp(param
,mp_afmt_list
[i
].name
)) {
1164 fmt
=mp_afmt_list
[i
].fmt
;
1168 if(!mp_afmt_list
[i
].name
) {
1169 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: unknown format name: '%s'\n",name
,param
);
1170 return M_OPT_INVALID
;
1175 *((uint32_t*)dst
) = fmt
;
1180 const m_option_type_t m_option_type_afmt
= {
1182 "Please report any missing formats.",
1194 static double parse_timestring(const char *str
)
1198 if (sscanf(str
, "%d:%d:%lf", &a
, &b
, &d
) == 3)
1199 return 3600*a
+ 60*b
+ d
;
1200 else if (sscanf(str
, "%d:%lf", &a
, &d
) == 2)
1202 else if (sscanf(str
, "%lf", &d
) == 1)
1208 static int parse_time(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
)
1212 if (param
== NULL
|| strlen(param
) == 0)
1213 return M_OPT_MISSING_PARAM
;
1215 time
= parse_timestring(param
);
1216 if (time
== -1e100
) {
1217 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: invalid time: '%s'\n",
1219 return M_OPT_INVALID
;
1223 *(double *)dst
= time
;
1227 const m_option_type_t m_option_type_time
= {
1241 // Time or size (-endpos)
1243 static int parse_time_size(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
1248 if (param
== NULL
|| strlen(param
) == 0)
1249 return M_OPT_MISSING_PARAM
;
1252 /* End at size parsing */
1253 if(sscanf(param
, "%lf%3s", &end_at
, unit
) == 2) {
1254 ts
.type
= END_AT_SIZE
;
1255 if(!strcasecmp(unit
, "b"))
1257 else if(!strcasecmp(unit
, "kb"))
1259 else if(!strcasecmp(unit
, "mb"))
1260 end_at
*= 1024*1024;
1261 else if(!strcasecmp(unit
, "gb"))
1262 end_at
*= 1024*1024*1024;
1264 ts
.type
= END_AT_NONE
;
1266 if (ts
.type
== END_AT_SIZE
) {
1272 /* End at time parsing. This has to be last because the parsing accepts
1273 * even a number followed by garbage */
1274 if ((end_at
= parse_timestring(param
)) == -1e100
) {
1275 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: invalid time or size: '%s'\n",
1277 return M_OPT_INVALID
;
1280 ts
.type
= END_AT_TIME
;
1284 *(m_time_size_t
*)dst
= ts
;
1288 const m_option_type_t m_option_type_time_size
= {
1291 sizeof(m_time_size_t
),
1302 //// Objects (i.e. filters, etc) settings
1304 #include "m_struct.h"
1307 #define VAL(x) (*(m_obj_settings_t**)(x))
1309 static int find_obj_desc(const char* name
,const m_obj_list_t
* l
,const m_struct_t
** ret
) {
1313 for(i
= 0 ; l
->list
[i
] ; i
++) {
1314 n
= M_ST_MB(char*,l
->list
[i
],l
->name_off
);
1315 if(!strcmp(n
,name
)) {
1316 *ret
= M_ST_MB(m_struct_t
*,l
->list
[i
],l
->desc_off
);
1323 static int get_obj_param(const char* opt_name
,const char* obj_name
, const m_struct_t
* desc
,
1324 char* str
,int* nold
,int oldmax
,char** dst
) {
1326 const m_option_t
* opt
;
1329 eq
= strchr(str
,'=');
1335 if(p
[0] == '\0') p
= NULL
;
1337 opt
= m_option_list_find(desc
->fields
,str
);
1339 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s doesn't have a %s parameter.\n",opt_name
,obj_name
,str
);
1340 return M_OPT_UNKNOWN
;
1342 r
= m_option_parse(opt
,str
,p
,NULL
,M_CONFIG_FILE
);
1345 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while parsing %s parameter %s (%s)\n",opt_name
,obj_name
,str
,p
);
1350 dst
[0] = strdup(str
);
1351 dst
[1] = p
? strdup(p
) : NULL
;
1355 if((*nold
) >= oldmax
) {
1356 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s has only %d params, so you can't give more than %d unnamed params.\n",
1357 opt_name
,obj_name
,oldmax
,oldmax
);
1358 return M_OPT_OUT_OF_RANGE
;
1360 opt
= &desc
->fields
[(*nold
)];
1361 r
= m_option_parse(opt
,opt
->name
,str
,NULL
,M_CONFIG_FILE
);
1364 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while parsing %s parameter %s (%s)\n",opt_name
,obj_name
,opt
->name
,str
);
1368 dst
[0] = strdup(opt
->name
);
1369 dst
[1] = strdup(str
);
1376 static int get_obj_params(const char* opt_name
, const char* name
,char* params
,
1377 const m_struct_t
* desc
,char separator
, char*** _ret
) {
1378 int n
= 0,nold
= 0, nopts
,r
;
1379 char* ptr
,*last_ptr
= params
;
1382 if(!strcmp(params
,"help")) { // Help
1383 char min
[50],max
[50];
1385 printf("%s doesn't have any options.\n\n",name
);
1386 return M_OPT_EXIT
- 1;
1388 printf("\n Name Type Min Max\n\n");
1389 for(n
= 0 ; desc
->fields
[n
].name
; n
++) {
1390 const m_option_t
* opt
= &desc
->fields
[n
];
1391 if(opt
->type
->flags
& M_OPT_TYPE_HAS_CHILD
) continue;
1392 if(opt
->flags
& M_OPT_MIN
)
1393 sprintf(min
,"%-8.0f",opt
->min
);
1396 if(opt
->flags
& M_OPT_MAX
)
1397 sprintf(max
,"%-8.0f",opt
->max
);
1400 printf(" %-20.20s %-15.15s %-10.10s %-10.10s\n",
1407 return M_OPT_EXIT
- 1;
1410 for(nopts
= 0 ; desc
->fields
[nopts
].name
; nopts
++)
1413 // TODO : Check that each opt can be parsed
1415 while(last_ptr
&& last_ptr
[0] != '\0') {
1416 ptr
= strchr(last_ptr
,separator
);
1418 r
= get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,NULL
);
1422 if(ptr
== last_ptr
) { // Empty field, count it and go on
1428 r
= get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,NULL
);
1435 if (!last_ptr
[0]) // count an empty field at the end, too
1438 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Too many options for %s\n", name
);
1439 return M_OPT_OUT_OF_RANGE
;
1441 if(!_ret
) // Just test
1443 if (n
== 0) // No options or only empty options
1446 ret
= malloc((n
+2)*2*sizeof(char*));
1450 while(last_ptr
&& last_ptr
[0] != '\0') {
1451 ptr
= strchr(last_ptr
,separator
);
1453 get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,&ret
[n
*2]);
1457 if(ptr
== last_ptr
) { // Empty field, count it and go on
1463 get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,&ret
[n
*2]);
1467 ret
[n
*2] = ret
[n
*2+1] = NULL
;
1473 static int parse_obj_params(const m_option_t
* opt
,const char *name
,
1474 char *param
, void* dst
, int src
) {
1477 m_obj_params_t
* p
= opt
->priv
;
1478 const m_struct_t
* desc
;
1479 char* cpy
= strdup(param
);
1481 // We need the object desc
1483 return M_OPT_INVALID
;
1486 r
= get_obj_params(name
,desc
->name
,cpy
,desc
,p
->separator
,dst
? &opts
: NULL
);
1492 if (!opts
) // no arguments given
1495 for(r
= 0 ; opts
[r
] ; r
+= 2)
1496 m_struct_set(desc
,dst
,opts
[r
],opts
[r
+1]);
1502 const m_option_type_t m_option_type_obj_params
= {
1515 /// Some predefined types as a definition would be quite lengthy
1518 static const m_span_t m_span_params_dflts
= { -1, -1 };
1519 static const m_option_t m_span_params_fields
[] = {
1520 {"start", M_ST_OFF(m_span_t
,start
), CONF_TYPE_INT
, M_OPT_MIN
, 1 ,0, NULL
},
1521 {"end", M_ST_OFF(m_span_t
,end
), CONF_TYPE_INT
, M_OPT_MIN
, 1 ,0, NULL
},
1522 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
1524 static const struct m_struct_st m_span_opts
= {
1527 &m_span_params_dflts
,
1528 m_span_params_fields
1530 const m_obj_params_t m_span_params_def
= {
1535 static int parse_obj_settings(const char* opt
,char* str
,const m_obj_list_t
* list
,
1536 m_obj_settings_t
**_ret
, int ret_n
) {
1538 char *param
,**plist
= NULL
;
1539 const m_struct_t
* desc
;
1540 m_obj_settings_t
*ret
= _ret
? *_ret
: NULL
;
1543 // Now check that the object exists
1544 param
= strchr(str
,'=');
1548 if(strlen(param
) <= 0)
1553 if(!find_obj_desc(str
,list
,&desc
)) {
1554 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s doesn't exist.\n",opt
,str
);
1555 return M_OPT_INVALID
;
1560 if(!strcmp(param
,"help")) {
1561 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Option %s: %s have no option description.\n",opt
,str
);
1562 return M_OPT_EXIT
- 1;
1564 plist
= calloc(4,sizeof(char*));
1565 plist
[0] = strdup("_oldargs_");
1566 plist
[1] = strdup(param
);
1568 r
= get_obj_params(opt
,str
,param
,desc
,':',_ret
? &plist
: NULL
);
1576 ret
= realloc(ret
,(ret_n
+2)*sizeof(m_obj_settings_t
));
1577 memset(&ret
[ret_n
],0,2*sizeof(m_obj_settings_t
));
1578 ret
[ret_n
].name
= strdup(str
);
1579 ret
[ret_n
].attribs
= plist
;
1585 static void free_obj_settings_list(void* dst
);
1587 static int obj_settings_list_del(const char *opt_name
,char *param
,void* dst
, int src
) {
1588 char** str_list
= NULL
;
1589 int r
,i
,idx_max
= 0;
1590 char* rem_id
= "_removed_marker_";
1591 const m_option_t list_opt
= {opt_name
, NULL
, CONF_TYPE_STRING_LIST
,
1593 m_obj_settings_t
* obj_list
= dst
? VAL(dst
) : NULL
;
1595 if(dst
&& !obj_list
) {
1596 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: the list is empty.\n",opt_name
);
1598 } else if(obj_list
) {
1599 for(idx_max
= 0 ; obj_list
[idx_max
].name
!= NULL
; idx_max
++)
1603 r
= m_option_parse(&list_opt
,opt_name
,param
,&str_list
,src
);
1604 if(r
< 0 || !str_list
)
1607 for(r
= 0 ; str_list
[r
] ; r
++) {
1610 id
= strtol(str_list
[r
],&endptr
,0);
1611 if(endptr
== str_list
[r
]) {
1612 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
);
1613 m_option_free(&list_opt
,&str_list
);
1614 return M_OPT_INVALID
;
1616 if(!obj_list
) continue;
1617 if(id
>= idx_max
|| id
< -idx_max
) {
1618 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: Index %d is out of range.\n",opt_name
,id
);
1623 free(obj_list
[id
].name
);
1624 free_str_list(&(obj_list
[id
].attribs
));
1625 obj_list
[id
].name
= rem_id
;
1629 m_option_free(&list_opt
,&str_list
);
1633 for(i
= 0 ; obj_list
[i
].name
; i
++) {
1634 while(obj_list
[i
].name
== rem_id
) {
1635 memmove(&obj_list
[i
],&obj_list
[i
+1],sizeof(m_obj_settings_t
)*(idx_max
- i
));
1639 obj_list
= realloc(obj_list
,sizeof(m_obj_settings_t
)*(idx_max
+1));
1640 VAL(dst
) = obj_list
;
1645 static int parse_obj_settings_list(const m_option_t
* opt
,const char *name
,
1646 char *param
, void* dst
, int src
) {
1647 int n
= 0,r
,len
= strlen(opt
->name
);
1649 char *ptr
, *last_ptr
;
1650 m_obj_settings_t
*res
= NULL
,*queue
= NULL
,*head
= NULL
;
1653 // We need the objects list
1655 return M_OPT_INVALID
;
1657 if(opt
->name
[len
-1] == '*' && ((int)strlen(name
) > len
- 1)) {
1658 const char* n
= &name
[len
-1];
1659 if(strcasecmp(n
,"-add") == 0)
1661 else if(strcasecmp(n
,"-pre") == 0)
1663 else if(strcasecmp(n
,"-del") == 0)
1665 else if(strcasecmp(n
,"-clr") == 0)
1669 strncpy(prefix
,opt
->name
,len
-1);
1670 prefix
[len
-1] = '\0';
1671 mp_msg(MSGT_VFILTER
,MSGL_ERR
, "Option %s: unknown postfix %s\n"
1672 "Supported postfixes are:\n"
1674 " Append the given list to the current list\n\n"
1676 " Prepend the given list to the current list\n\n"
1678 " Remove the given elements. Take the list element index (starting from 0).\n"
1679 " Negative index can be used (i.e. -1 is the last element)\n\n"
1681 " Clear the current list.\n",name
,n
,prefix
,prefix
,prefix
,prefix
);
1683 return M_OPT_UNKNOWN
;
1687 // Clear the list ??
1690 free_obj_settings_list(dst
);
1694 if (param
== NULL
|| strlen(param
) == 0)
1695 return M_OPT_MISSING_PARAM
;
1699 if(dst
) head
= VAL(dst
);
1702 if(dst
) queue
= VAL(dst
);
1705 return obj_settings_list_del(name
,param
,dst
,src
);
1708 free_obj_settings_list(dst
);
1711 mp_msg(MSGT_VFILTER
,MSGL_ERR
, "Option %s: FIXME\n",name
);
1712 return M_OPT_UNKNOWN
;
1715 if(!strcmp(param
,"help")) {
1716 m_obj_list_t
* ol
= opt
->priv
;
1717 mp_msg(MSGT_VFILTER
,MSGL_INFO
,"Available video filters:\n");
1718 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VIDEO_FILTERS\n");
1719 for(n
= 0 ; ol
->list
[n
] ; n
++)
1720 mp_msg(MSGT_VFILTER
,MSGL_INFO
," %-15s: %s\n",
1721 M_ST_MB(char*,ol
->list
[n
],ol
->name_off
),
1722 M_ST_MB(char*,ol
->list
[n
],ol
->info_off
));
1723 mp_msg(MSGT_VFILTER
,MSGL_INFO
,"\n");
1724 return M_OPT_EXIT
- 1;
1726 ptr
= str
= strdup(param
);
1728 while(ptr
[0] != '\0') {
1730 ptr
= get_nextsep(ptr
, LIST_SEPARATOR
, 1);
1733 r
= parse_obj_settings(name
,last_ptr
,opt
->priv
,dst
? &res
: NULL
,n
);
1742 r
= parse_obj_settings(name
,last_ptr
,opt
->priv
,dst
? &res
: NULL
,n
);
1752 return M_OPT_INVALID
;
1754 if( ((opt
->flags
& M_OPT_MIN
) && (n
< opt
->min
)) ||
1755 ((opt
->flags
& M_OPT_MAX
) && (n
> opt
->max
)) )
1756 return M_OPT_OUT_OF_RANGE
;
1761 for(qsize
= 0 ; queue
[qsize
].name
; qsize
++)
1763 res
= realloc(res
,(qsize
+n
+1)*sizeof(m_obj_settings_t
));
1764 memcpy(&res
[n
],queue
,(qsize
+1)*sizeof(m_obj_settings_t
));
1770 for(hsize
= 0 ; head
[hsize
].name
; hsize
++)
1772 head
= realloc(head
,(hsize
+n
+1)*sizeof(m_obj_settings_t
));
1773 memcpy(&head
[hsize
],res
,(n
+1)*sizeof(m_obj_settings_t
));
1782 static void free_obj_settings_list(void* dst
) {
1784 m_obj_settings_t
*d
;
1786 if(!dst
|| !VAL(dst
)) return;
1790 for(n
= 0 ; d
[n
].name
; n
++) {
1792 free_str_list(&(d
[n
].attribs
));
1799 static void copy_obj_settings_list(const m_option_t
* opt
,void* dst
, void* src
) {
1800 m_obj_settings_t
*d
,*s
;
1809 free_obj_settings_list(dst
);
1814 for(n
= 0 ; s
[n
].name
; n
++)
1816 d
= malloc((n
+1)*sizeof(m_obj_settings_t
));
1817 for(n
= 0 ; s
[n
].name
; n
++) {
1818 d
[n
].name
= strdup(s
[n
].name
);
1819 d
[n
].attribs
= NULL
;
1820 copy_str_list(NULL
,&(d
[n
].attribs
),&(s
[n
].attribs
));
1823 d
[n
].attribs
= NULL
;
1827 const m_option_type_t m_option_type_obj_settings_list
= {
1828 "Object settings list",
1830 sizeof(m_obj_settings_t
*),
1831 M_OPT_TYPE_DYNAMIC
|M_OPT_TYPE_ALLOW_WILDCARD
,
1832 parse_obj_settings_list
,
1834 copy_obj_settings_list
,
1835 copy_obj_settings_list
,
1836 copy_obj_settings_list
,
1837 free_obj_settings_list
,
1842 static int parse_obj_presets(const m_option_t
* opt
,const char *name
,
1843 char *param
, void* dst
, int src
) {
1844 m_obj_presets_t
* obj_p
= (m_obj_presets_t
*)opt
->priv
;
1845 m_struct_t
*in_desc
,*out_desc
;
1848 char* pre_name
= NULL
;
1851 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Presets need a pointer to a m_obj_presets_t in the priv field.\n",name
);
1852 return M_OPT_PARSER_ERR
;
1856 return M_OPT_MISSING_PARAM
;
1858 pre
= obj_p
->presets
;
1859 in_desc
= obj_p
->in_desc
;
1860 out_desc
= obj_p
->out_desc
? obj_p
->out_desc
: obj_p
->in_desc
;
1863 if(!strcmp(param
,"help")) {
1864 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available presets for %s->%s:",out_desc
->name
,name
);
1865 for(pre
= obj_p
->presets
;(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) ;
1867 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s",pre_name
);
1868 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
1869 return M_OPT_EXIT
- 1;
1872 for(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
) ; pre_name
;
1873 pre
+= s
, pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) {
1874 if(!strcmp(pre_name
,param
)) break;
1877 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: There is no preset named %s\n"
1878 "Available presets are:",name
,param
);
1879 for(pre
= obj_p
->presets
;(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) ;
1881 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s",pre_name
);
1882 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
1883 return M_OPT_INVALID
;
1888 for(i
= 0 ; in_desc
->fields
[i
].name
; i
++) {
1889 const m_option_t
* out_opt
= m_option_list_find(out_desc
->fields
,
1890 in_desc
->fields
[i
].name
);
1892 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
);
1893 return M_OPT_PARSER_ERR
;
1895 m_option_copy(out_opt
,M_ST_MB_P(dst
,out_opt
->p
),M_ST_MB_P(pre
,in_desc
->fields
[i
].p
));
1901 const m_option_type_t m_option_type_obj_presets
= {
1914 static int parse_custom_url(const m_option_t
* opt
,const char *name
,
1915 char *url
, void* dst
, int src
) {
1916 int pos1
, pos2
, r
, v6addr
= 0;
1917 char *ptr1
=NULL
, *ptr2
=NULL
, *ptr3
=NULL
, *ptr4
=NULL
;
1918 m_struct_t
* desc
= opt
->priv
;
1921 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Custom URL needs a pointer to a m_struct_t in the priv field.\n",name
);
1922 return M_OPT_PARSER_ERR
;
1925 // extract the protocol
1926 ptr1
= strstr(url
, "://");
1929 if(m_option_list_find(desc
->fields
,"filename")) {
1930 m_struct_set(desc
,dst
,"filename",url
);
1933 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,"Option %s: URL doesn't have a valid protocol!\n",name
);
1934 return M_OPT_INVALID
;
1936 if(m_option_list_find(desc
->fields
,"string")) {
1937 if(strlen(ptr1
)>3) {
1938 m_struct_set(desc
,dst
,"string",ptr1
+3);
1943 if(dst
&& m_option_list_find(desc
->fields
,"protocol")) {
1945 r
= m_struct_set(desc
,dst
,"protocol",url
);
1948 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting protocol.\n",name
);
1957 // check if a username:password is given
1958 ptr2
= strstr(ptr1
, "@");
1959 ptr3
= strstr(ptr1
, "/");
1960 if( ptr3
!=NULL
&& ptr3
<ptr2
) {
1961 // it isn't really a username but rather a part of the path
1966 // We got something, at least a username...
1967 if(!m_option_list_find(desc
->fields
,"username")) {
1968 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a username part.\n",name
);
1971 ptr3
= strstr(ptr1
, ":");
1972 if( ptr3
!=NULL
&& ptr3
<ptr2
) {
1973 // We also have a password
1974 if(!m_option_list_find(desc
->fields
,"password")) {
1975 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a password part.\n",name
);
1977 } else { // Username and password
1980 r
= m_struct_set(desc
,dst
,"username",ptr1
);
1983 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting username.\n",name
);
1987 r
= m_struct_set(desc
,dst
,"password",ptr3
+1);
1990 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting password.\n",name
);
1995 } else { // User name only
1997 r
= m_struct_set(desc
,dst
,"username",ptr1
);
2000 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting username.\n",name
);
2009 // before looking for a port number check if we have an IPv6 type numeric address
2010 // in an IPv6 URL the numeric address should be inside square braces.
2011 ptr2
= strstr(ptr1
, "[");
2012 ptr3
= strstr(ptr1
, "]");
2013 // If the [] is after the first it isn't the hostname
2014 ptr4
= strstr(ptr1
, "/");
2015 if( ptr2
!=NULL
&& ptr3
!=NULL
&& (ptr2
< ptr3
) && (!ptr4
|| ptr4
> ptr3
)) {
2016 // we have an IPv6 numeric address
2025 // look if the port is given
2026 ptr2
= strstr(ptr2
, ":");
2027 // If the : is after the first / it isn't the port
2028 ptr3
= strstr(ptr1
, "/");
2029 if(ptr3
&& ptr3
- ptr2
< 0) ptr2
= NULL
;
2032 // Look if a path is given
2035 // So we have an URL like http://www.hostname.com
2038 // We have an URL like http://www.hostname.com/file.txt
2042 // We have an URL beginning like http://www.hostname.com:1212
2043 // Get the port number
2044 if(!m_option_list_find(desc
->fields
,"port")) {
2045 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a port part.\n",name
);
2049 int p
= atoi(ptr2
+1);
2051 snprintf(tmp
,99,"%d",p
);
2052 r
= m_struct_set(desc
,dst
,"port",tmp
);
2054 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting port.\n",name
);
2061 if( v6addr
) pos2
--;
2064 if(!m_option_list_find(desc
->fields
,"hostname")) {
2065 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a hostname part.\n",name
);
2068 char tmp
[pos2
-pos1
+1];
2069 strncpy(tmp
,ptr1
, pos2
-pos1
);
2070 tmp
[pos2
-pos1
] = '\0';
2071 r
= m_struct_set(desc
,dst
,"hostname",tmp
);
2073 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting hostname.\n",name
);
2078 // Look if a path is given
2079 ptr2
= strstr(ptr1
, "/");
2081 // A path/filename is given
2082 // check if it's not a trailing '/'
2083 if( strlen(ptr2
)>1 ) {
2084 // copy the path/filename in the URL container
2085 if(!m_option_list_find(desc
->fields
,"filename")) {
2086 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a hostname part.\n",name
);
2090 int l
= strlen(ptr2
+1) + 1;
2091 char* fname
= ptr2
+1;
2094 url_unescape_string(fname
,ptr2
+1);
2096 r
= m_struct_set(desc
,dst
,"filename",fname
);
2100 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting filename.\n",name
);
2110 /// TODO : Write the other needed funcs for 'normal' options
2111 const m_option_type_t m_option_type_custom_url
= {