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
= strtoll(param
, &endptr
, 10);
149 tmp_int
= strtoll(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
;
166 if (opt
->type
->size
== sizeof(int64_t))
167 *(int64_t *)dst
= tmp_int
;
175 static char* print_int(const m_option_t
* opt
, const void* val
) {
176 if (opt
->type
->size
== sizeof(int64_t))
177 return dup_printf("%"PRId64
, *(const int64_t *)val
);
178 return dup_printf("%d",VAL(val
));
181 const m_option_type_t m_option_type_int
= {
194 const m_option_type_t m_option_type_int64
= {
210 #define VAL(x) (*(double*)(x))
212 static int parse_double(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
218 return M_OPT_MISSING_PARAM
;
220 tmp_float
= strtod(param
, &endptr
);
225 tmp_float
/= strtod(endptr
+1, &endptr
);
229 /* we also handle floats specified with
230 * non-locale decimal point ::atmos
233 tmp_float
-= 1.0/pow(10,strlen(endptr
+1)) * strtod(endptr
+1, &endptr
);
235 tmp_float
+= 1.0/pow(10,strlen(endptr
+1)) * strtod(endptr
+1, &endptr
);
240 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be a floating point "
241 "number or a ratio (numerator[:/]denominator): %s\n",name
, param
);
242 return M_OPT_INVALID
;
245 if (opt
->flags
& M_OPT_MIN
)
246 if (tmp_float
< opt
->min
) {
247 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be >= %f: %s\n", name
, opt
->min
, param
);
248 return M_OPT_OUT_OF_RANGE
;
251 if (opt
->flags
& M_OPT_MAX
)
252 if (tmp_float
> opt
->max
) {
253 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be <= %f: %s\n", name
, opt
->max
, param
);
254 return M_OPT_OUT_OF_RANGE
;
257 if(dst
) VAL(dst
) = tmp_float
;
261 static char* print_double(const m_option_t
* opt
, const void* val
) {
263 return dup_printf("%f",VAL(val
));
266 const m_option_type_t m_option_type_double
= {
268 "double precission floating point number or ratio (numerator[:/]denominator)",
280 #define VAL(x) (*(float*)(x))
282 static int parse_float(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
284 int r
= parse_double(opt
, name
, param
, &tmp
, src
);
285 if(r
==1 && dst
) VAL(dst
) = tmp
;
289 static char* print_float(const m_option_t
* opt
, const void* val
) {
291 return dup_printf("%f",VAL(val
));
294 const m_option_type_t m_option_type_float
= {
296 "floating point number or ratio (numerator[:/]denominator)",
307 ///////////// Position
309 #define VAL(x) (*(off_t*)(x))
311 static int parse_position(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
316 return M_OPT_MISSING_PARAM
;
317 if (sscanf(param
, sizeof(off_t
) == sizeof(int) ?
318 "%d%c" : "%"PRId64
"%c", &tmp_off
, &dummy
) != 1) {
319 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "The %s option must be an integer: %s\n",opt
->name
,param
);
320 return M_OPT_INVALID
;
323 if (opt
->flags
& M_OPT_MIN
)
324 if (tmp_off
< opt
->min
) {
325 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,
326 "The %s option must be >= %"PRId64
": %s\n",
327 name
, (int64_t) opt
->min
, param
);
328 return M_OPT_OUT_OF_RANGE
;
331 if (opt
->flags
& M_OPT_MAX
)
332 if (tmp_off
> opt
->max
) {
333 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,
334 "The %s option must be <= %"PRId64
": %s\n",
335 name
, (int64_t) opt
->max
, param
);
336 return M_OPT_OUT_OF_RANGE
;
344 static char* print_position(const m_option_t
* opt
, const void* val
) {
345 return dup_printf("%"PRId64
,(int64_t)VAL(val
));
348 const m_option_type_t m_option_type_position
= {
365 #define VAL(x) (*(char**)(x))
367 static int parse_str(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
371 return M_OPT_MISSING_PARAM
;
373 if ((opt
->flags
& M_OPT_MIN
) && (strlen(param
) < opt
->min
)) {
374 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Parameter must be >= %d chars: %s\n",
375 (int) opt
->min
, param
);
376 return M_OPT_OUT_OF_RANGE
;
379 if ((opt
->flags
& M_OPT_MAX
) && (strlen(param
) > opt
->max
)) {
380 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Parameter must be <= %d chars: %s\n",
381 (int) opt
->max
, param
);
382 return M_OPT_OUT_OF_RANGE
;
388 VAL(dst
) = strdup(param
);
395 static char* print_str(const m_option_t
* opt
, const void* val
) {
396 return (val
&& VAL(val
) && strlen(VAL(val
)) > 0) ? strdup(VAL(val
)) : NULL
;
399 static void copy_str(const m_option_t
* opt
,void* dst
, void* src
) {
402 if(VAL(dst
)) free(VAL(dst
)); //FIXME!!!
404 VAL(dst
) = VAL(src
) ? strdup(VAL(src
)) : NULL
;
408 static void free_str(void* src
) {
411 free(VAL(src
)); //FIXME!!!
417 const m_option_type_t m_option_type_string
= {
430 //////////// String list
432 #define LIST_SEPARATOR ','
434 #define VAL(x) (*(char***)(x))
442 static void free_str_list(void* dst
) {
446 if(!dst
|| !VAL(dst
)) return;
451 for(i
= 0 ; d
[i
] != NULL
; i
++)
458 static int str_list_add(char** add
, int n
,void* dst
,int pre
) {
459 char** lst
= VAL(dst
);
462 if(!dst
) return M_OPT_PARSER_ERR
;
465 for(ln
= 0 ; lst
&& lst
[ln
] ; ln
++)
468 lst
= realloc(lst
,(n
+ln
+1)*sizeof(char*));
471 memmove(&lst
[n
],lst
,(ln
+1)*sizeof(char*));
472 memcpy(lst
,add
,n
*sizeof(char*));
474 memcpy(&lst
[ln
],add
,(n
+1)*sizeof(char*));
483 static int str_list_del(char** del
, int n
,void* dst
) {
488 if(!dst
) return M_OPT_PARSER_ERR
;
491 for(ln
= 0 ; lst
&& lst
[ln
] ; ln
++)
495 for(i
= 0 ; del
[i
] != NULL
; i
++) {
496 idx
= strtol(del
[i
], &ep
, 0);
498 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid index: %s\n",del
[i
]);
503 if(idx
< 0 || idx
>= ln
) {
504 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Index %ld is out of range.\n",idx
);
520 d
= calloc(s
+1,sizeof(char*));
521 for(i
= 0, n
= 0 ; i
< ln
; i
++) {
522 if(!lst
[i
]) continue;
534 static char *get_nextsep(char *ptr
, char sep
, int modify
) {
535 char *last_ptr
= ptr
;
537 ptr
= strchr(ptr
, sep
);
538 if(ptr
&& ptr
>last_ptr
&& ptr
[-1]=='\\'){
539 if (modify
) memmove(ptr
-1, ptr
, strlen(ptr
)+1);
547 static int parse_str_list(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
548 int n
= 0,len
= strlen(opt
->name
);
550 char *ptr
= param
, *last_ptr
, **res
;
553 if(opt
->name
[len
-1] == '*' && ((int)strlen(name
) > len
- 1)) {
554 const char* n
= &name
[len
-1];
555 if(strcasecmp(n
,"-add") == 0)
557 else if(strcasecmp(n
,"-pre") == 0)
559 else if(strcasecmp(n
,"-del") == 0)
561 else if(strcasecmp(n
,"-clr") == 0)
564 return M_OPT_UNKNOWN
;
574 // All other ops need a param
575 if (param
== NULL
|| strlen(param
) == 0)
576 return M_OPT_MISSING_PARAM
;
579 while(ptr
[0] != '\0') {
580 ptr
= get_nextsep(ptr
, LIST_SEPARATOR
, 0);
589 return M_OPT_INVALID
;
590 if( ((opt
->flags
& M_OPT_MIN
) && (n
< opt
->min
)) ||
591 ((opt
->flags
& M_OPT_MAX
) && (n
> opt
->max
)) )
592 return M_OPT_OUT_OF_RANGE
;
596 res
= malloc((n
+2)*sizeof(char*));
597 ptr
= str
= strdup(param
);
602 ptr
= get_nextsep(ptr
, LIST_SEPARATOR
, 1);
604 res
[n
] = strdup(last_ptr
);
608 len
= ptr
- last_ptr
;
609 res
[n
] = malloc(len
+ 1);
610 if(len
) strncpy(res
[n
],last_ptr
,len
);
620 return str_list_add(res
,n
,dst
,0);
622 return str_list_add(res
,n
,dst
,1);
624 return str_list_del(res
,n
,dst
);
634 static void copy_str_list(const m_option_t
* opt
,void* dst
, void* src
) {
638 if(!(dst
&& src
)) return;
649 for(n
= 0 ; s
[n
] != NULL
; n
++)
651 d
= malloc((n
+1)*sizeof(char*));
653 d
[n
] = s
[n
] ? strdup(s
[n
]) : NULL
;
658 static char* print_str_list(const m_option_t
* opt
, const void* src
) {
660 char *ret
= NULL
,*last
= NULL
;
663 if(!(src
&& VAL(src
))) return NULL
;
666 for(i
= 0 ; lst
[i
] ; i
++) {
668 ret
= dup_printf("%s,%s",last
,lst
[i
]);
671 ret
= strdup(lst
[i
]);
674 if(last
&& last
!= ret
) free(last
);
678 const m_option_type_t m_option_type_string_list
= {
680 "A list of strings separated by ','\n"
681 "Option with a name ending in an * permits using the following suffix: \n"
682 "\t-add: Add the given parameters at the end of the list.\n"
683 "\t-pre: Add the given parameters at the beginning of the list.\n"
684 "\t-del: Remove the entry at the given indices.\n"
685 "\t-clr: Clear the list.\n"
686 "e.g: -vf-add flip,mirror -vf-del 2,5\n",
688 M_OPT_TYPE_DYNAMIC
| M_OPT_TYPE_ALLOW_WILDCARD
,
698 /////////////////// Func based options
700 // A chained list to save the various calls for func_param and func_full
701 typedef struct m_func_save m_func_save_t
;
709 #define VAL(x) (*(m_func_save_t**)(x))
711 static void free_func_pf(void* src
) {
721 if(s
->param
) free(s
->param
);
728 // Parser for func_param and func_full
729 static int parse_func_pf(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
735 s
= calloc(1,sizeof(m_func_save_t
));
736 s
->name
= strdup(name
);
737 s
->param
= param
? strdup(param
) : NULL
;
741 for( ; p
->next
!= NULL
; p
= p
->next
)
750 static void copy_func_pf(const m_option_t
* opt
,void* dst
, void* src
) {
751 m_func_save_t
*d
= NULL
, *s
,* last
= NULL
;
753 if(!(dst
&& src
)) return;
760 d
= calloc(1,sizeof(m_func_save_t
));
761 d
->name
= strdup(s
->name
);
762 d
->param
= s
->param
? strdup(s
->param
) : NULL
;
774 /////////////////// Func_param
776 static void set_func_param(const m_option_t
* opt
, void* dst
, void* src
) {
785 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,opt
->name
);
786 for( ; s
!= NULL
; s
= s
->next
)
787 ((m_opt_func_param_t
) opt
->p
)(opt
,s
->param
);
790 const m_option_type_t m_option_type_func_param
= {
793 sizeof(m_func_save_t
*),
797 NULL
, // Nothing to do on save
803 /////////////////// Func_full
805 static void set_func_full(const m_option_t
* opt
, void* dst
, void* src
) {
810 for(s
= VAL(src
) ; s
; s
= s
->next
) {
812 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,s
->name
);
813 ((m_opt_func_full_t
) opt
->p
)(opt
,s
->name
,s
->param
);
817 const m_option_type_t m_option_type_func_full
= {
820 sizeof(m_func_save_t
*),
821 M_OPT_TYPE_ALLOW_WILDCARD
|M_OPT_TYPE_INDIRECT
,
824 NULL
, // Nothing to do on save
833 #define VAL(x) (*(int*)(x))
835 static int parse_func(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
841 static void set_func(const m_option_t
* opt
,void* dst
, void* src
) {
843 if(opt
->priv
) ((m_opt_default_func_t
)opt
->priv
)(opt
,opt
->name
);
844 for(i
= 0 ; i
< VAL(src
) ; i
++)
845 ((m_opt_func_t
) opt
->p
)(opt
);
848 const m_option_type_t m_option_type_func
= {
855 NULL
, // Nothing to do on save
861 /////////////////// Print
863 static int parse_print(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
864 if(opt
->type
== CONF_TYPE_PRINT_INDIRECT
)
865 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s", *(char **) opt
->p
);
866 else if(opt
->type
== CONF_TYPE_PRINT_FUNC
)
867 return ((m_opt_func_full_t
) opt
->p
)(opt
,name
,param
);
869 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s", (char *) opt
->p
);
871 if(opt
->priv
== NULL
)
876 const m_option_type_t m_option_type_print
= {
889 const m_option_type_t m_option_type_print_indirect
= {
902 const m_option_type_t m_option_type_print_func
= {
906 M_OPT_TYPE_ALLOW_WILDCARD
,
916 /////////////////////// Subconfig
918 #define VAL(x) (*(char***)(x))
920 static int parse_subconf(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
924 const m_option_t
*subopts
;
928 if (param
== NULL
|| strlen(param
) == 0)
929 return M_OPT_MISSING_PARAM
;
931 subparam
= malloc(strlen(param
)+1);
932 subopt
= malloc(strlen(param
)+1);
940 int optlen
= strcspn(p
, ":=");
942 subopt
[0] = subparam
[0] = 0;
943 av_strlcpy(subopt
, p
, optlen
+ 1);
950 optlen
= strcspn(p
, "\"");
951 av_strlcpy(subparam
, p
, optlen
+ 1);
954 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Terminating '\"' missing for '%s'\n", subopt
);
955 return M_OPT_INVALID
;
958 } else if (p
[0] == '%') {
960 optlen
= (int)strtol(p
, (char**)&p
, 0);
961 if (!p
|| p
[0] != '%' || (optlen
> strlen(p
) - 1)) {
962 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid length %i for '%s'\n", optlen
, subopt
);
963 return M_OPT_INVALID
;
966 av_strlcpy(subparam
, p
, optlen
+ 1);
969 optlen
= strcspn(p
, ":");
970 av_strlcpy(subparam
, p
, optlen
+ 1);
977 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Incorrect termination for '%s'\n", subopt
);
978 return M_OPT_INVALID
;
986 for(i
= 0 ; subopts
[i
].name
; i
++) {
987 if(!strcmp(subopts
[i
].name
,subopt
)) break;
989 if(!subopts
[i
].name
) {
990 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Unknown suboption %s\n",name
,subopt
);
991 return M_OPT_UNKNOWN
;
993 r
= m_option_parse(&subopts
[i
],subopt
,
994 subparam
[0] == 0 ? NULL
: subparam
,NULL
,src
);
997 lst
= (char**)realloc(lst
,2 * (nr
+2) * sizeof(char*));
998 lst
[2*nr
] = strdup(subopt
);
999 lst
[2*nr
+1] = subparam
[0] == 0 ? NULL
: strdup(subparam
);
1000 memset(&lst
[2*(nr
+1)],0,2*sizeof(char*));
1015 const m_option_type_t m_option_type_subconfig
= {
1017 "The syntax is -option opt1=foo:flag:opt2=blah",
1019 M_OPT_TYPE_HAS_CHILD
,
1028 #include "libmpcodecs/img_format.h"
1030 /* FIXME: snyc with img_format.h */
1034 } mp_imgfmt_list
[] = {
1035 {"444p16le", IMGFMT_444P16_LE
},
1036 {"444p16be", IMGFMT_444P16_BE
},
1037 {"422p16le", IMGFMT_422P16_LE
},
1038 {"422p16be", IMGFMT_422P16_BE
},
1039 {"420p16le", IMGFMT_420P16_LE
},
1040 {"420p16be", IMGFMT_420P16_BE
},
1041 {"444p16", IMGFMT_444P16
},
1042 {"422p16", IMGFMT_422P16
},
1043 {"420p16", IMGFMT_420P16
},
1044 {"420a", IMGFMT_420A
},
1045 {"444p", IMGFMT_444P
},
1046 {"422p", IMGFMT_422P
},
1047 {"411p", IMGFMT_411P
},
1048 {"440p", IMGFMT_440P
},
1049 {"yuy2", IMGFMT_YUY2
},
1050 {"uyvy", IMGFMT_UYVY
},
1051 {"yvu9", IMGFMT_YVU9
},
1052 {"if09", IMGFMT_IF09
},
1053 {"yv12", IMGFMT_YV12
},
1054 {"i420", IMGFMT_I420
},
1055 {"iyuv", IMGFMT_IYUV
},
1056 {"clpl", IMGFMT_CLPL
},
1057 {"hm12", IMGFMT_HM12
},
1058 {"y800", IMGFMT_Y800
},
1060 {"nv12", IMGFMT_NV12
},
1061 {"nv21", IMGFMT_NV21
},
1062 {"bgr24", IMGFMT_BGR24
},
1063 {"bgr32", IMGFMT_BGR32
},
1064 {"bgr16", IMGFMT_BGR16
},
1065 {"bgr15", IMGFMT_BGR15
},
1066 {"bgr8", IMGFMT_BGR8
},
1067 {"bgr4", IMGFMT_BGR4
},
1068 {"bg4b", IMGFMT_BG4B
},
1069 {"bgr1", IMGFMT_BGR1
},
1070 {"rgb48be", IMGFMT_RGB48BE
},
1071 {"rgb48le", IMGFMT_RGB48LE
},
1072 {"rgb48ne", IMGFMT_RGB48NE
},
1073 {"rgb24", IMGFMT_RGB24
},
1074 {"rgb32", IMGFMT_RGB32
},
1075 {"rgb16", IMGFMT_RGB16
},
1076 {"rgb15", IMGFMT_RGB15
},
1077 {"rgb8", IMGFMT_RGB8
},
1078 {"rgb4", IMGFMT_RGB4
},
1079 {"rg4b", IMGFMT_RG4B
},
1080 {"rgb1", IMGFMT_RGB1
},
1081 {"rgba", IMGFMT_RGBA
},
1082 {"argb", IMGFMT_ARGB
},
1083 {"bgra", IMGFMT_BGRA
},
1084 {"abgr", IMGFMT_ABGR
},
1085 {"mjpeg", IMGFMT_MJPEG
},
1086 {"mjpg", IMGFMT_MJPEG
},
1090 static int parse_imgfmt(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
1094 if (param
== NULL
|| strlen(param
) == 0)
1095 return M_OPT_MISSING_PARAM
;
1097 if(!strcmp(param
,"help")) {
1098 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available formats:");
1099 for(i
= 0 ; mp_imgfmt_list
[i
].name
; i
++)
1100 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s",mp_imgfmt_list
[i
].name
);
1101 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1102 return M_OPT_EXIT
- 1;
1105 if (sscanf(param
, "0x%x", &fmt
) != 1)
1107 for(i
= 0 ; mp_imgfmt_list
[i
].name
; i
++) {
1108 if(!strcasecmp(param
,mp_imgfmt_list
[i
].name
)) {
1109 fmt
=mp_imgfmt_list
[i
].fmt
;
1113 if(!mp_imgfmt_list
[i
].name
) {
1114 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: unknown format name: '%s'\n",name
,param
);
1115 return M_OPT_INVALID
;
1120 *((uint32_t*)dst
) = fmt
;
1125 const m_option_type_t m_option_type_imgfmt
= {
1127 "Please report any missing colorspaces.",
1138 #include "libaf/af_format.h"
1140 /* FIXME: snyc with af_format.h */
1144 } mp_afmt_list
[] = {
1146 {"mulaw", AF_FORMAT_MU_LAW
},
1147 {"alaw", AF_FORMAT_A_LAW
},
1148 {"mpeg2", AF_FORMAT_MPEG2
},
1149 {"ac3le", AF_FORMAT_AC3_LE
},
1150 {"ac3be", AF_FORMAT_AC3_BE
},
1151 {"ac3ne", AF_FORMAT_AC3_NE
},
1152 {"imaadpcm", AF_FORMAT_IMA_ADPCM
},
1154 {"u8", AF_FORMAT_U8
},
1155 {"s8", AF_FORMAT_S8
},
1156 {"u16le", AF_FORMAT_U16_LE
},
1157 {"u16be", AF_FORMAT_U16_BE
},
1158 {"u16ne", AF_FORMAT_U16_NE
},
1159 {"s16le", AF_FORMAT_S16_LE
},
1160 {"s16be", AF_FORMAT_S16_BE
},
1161 {"s16ne", AF_FORMAT_S16_NE
},
1162 {"u24le", AF_FORMAT_U24_LE
},
1163 {"u24be", AF_FORMAT_U24_BE
},
1164 {"u24ne", AF_FORMAT_U24_NE
},
1165 {"s24le", AF_FORMAT_S24_LE
},
1166 {"s24be", AF_FORMAT_S24_BE
},
1167 {"s24ne", AF_FORMAT_S24_NE
},
1168 {"u32le", AF_FORMAT_U32_LE
},
1169 {"u32be", AF_FORMAT_U32_BE
},
1170 {"u32ne", AF_FORMAT_U32_NE
},
1171 {"s32le", AF_FORMAT_S32_LE
},
1172 {"s32be", AF_FORMAT_S32_BE
},
1173 {"s32ne", AF_FORMAT_S32_NE
},
1174 {"floatle", AF_FORMAT_FLOAT_LE
},
1175 {"floatbe", AF_FORMAT_FLOAT_BE
},
1176 {"floatne", AF_FORMAT_FLOAT_NE
},
1180 static int parse_afmt(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
1184 if (param
== NULL
|| strlen(param
) == 0)
1185 return M_OPT_MISSING_PARAM
;
1187 if(!strcmp(param
,"help")) {
1188 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available formats:");
1189 for(i
= 0 ; mp_afmt_list
[i
].name
; i
++)
1190 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s",mp_afmt_list
[i
].name
);
1191 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1192 return M_OPT_EXIT
- 1;
1195 if (sscanf(param
, "0x%x", &fmt
) != 1)
1197 for(i
= 0 ; mp_afmt_list
[i
].name
; i
++) {
1198 if(!strcasecmp(param
,mp_afmt_list
[i
].name
)) {
1199 fmt
=mp_afmt_list
[i
].fmt
;
1203 if(!mp_afmt_list
[i
].name
) {
1204 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: unknown format name: '%s'\n",name
,param
);
1205 return M_OPT_INVALID
;
1210 *((uint32_t*)dst
) = fmt
;
1215 const m_option_type_t m_option_type_afmt
= {
1217 "Please report any missing formats.",
1229 static double parse_timestring(const char *str
)
1233 if (sscanf(str
, "%d:%d:%lf", &a
, &b
, &d
) == 3)
1234 return 3600*a
+ 60*b
+ d
;
1235 else if (sscanf(str
, "%d:%lf", &a
, &d
) == 2)
1237 else if (sscanf(str
, "%lf", &d
) == 1)
1243 static int parse_time(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
)
1247 if (param
== NULL
|| strlen(param
) == 0)
1248 return M_OPT_MISSING_PARAM
;
1250 time
= parse_timestring(param
);
1251 if (time
== -1e100
) {
1252 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: invalid time: '%s'\n",
1254 return M_OPT_INVALID
;
1258 *(double *)dst
= time
;
1262 const m_option_type_t m_option_type_time
= {
1276 // Time or size (-endpos)
1278 static int parse_time_size(const m_option_t
* opt
,const char *name
, char *param
, void* dst
, int src
) {
1283 if (param
== NULL
|| strlen(param
) == 0)
1284 return M_OPT_MISSING_PARAM
;
1287 /* End at size parsing */
1288 if(sscanf(param
, "%lf%3s", &end_at
, unit
) == 2) {
1289 ts
.type
= END_AT_SIZE
;
1290 if(!strcasecmp(unit
, "b"))
1292 else if(!strcasecmp(unit
, "kb"))
1294 else if(!strcasecmp(unit
, "mb"))
1295 end_at
*= 1024*1024;
1296 else if(!strcasecmp(unit
, "gb"))
1297 end_at
*= 1024*1024*1024;
1299 ts
.type
= END_AT_NONE
;
1301 if (ts
.type
== END_AT_SIZE
) {
1307 /* End at time parsing. This has to be last because the parsing accepts
1308 * even a number followed by garbage */
1309 if ((end_at
= parse_timestring(param
)) == -1e100
) {
1310 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: invalid time or size: '%s'\n",
1312 return M_OPT_INVALID
;
1315 ts
.type
= END_AT_TIME
;
1319 *(m_time_size_t
*)dst
= ts
;
1323 const m_option_type_t m_option_type_time_size
= {
1326 sizeof(m_time_size_t
),
1337 //// Objects (i.e. filters, etc) settings
1339 #include "m_struct.h"
1342 #define VAL(x) (*(m_obj_settings_t**)(x))
1344 static int find_obj_desc(const char* name
,const m_obj_list_t
* l
,const m_struct_t
** ret
) {
1348 for(i
= 0 ; l
->list
[i
] ; i
++) {
1349 n
= M_ST_MB(char*,l
->list
[i
],l
->name_off
);
1350 if(!strcmp(n
,name
)) {
1351 *ret
= M_ST_MB(m_struct_t
*,l
->list
[i
],l
->desc_off
);
1358 static int get_obj_param(const char* opt_name
,const char* obj_name
, const m_struct_t
* desc
,
1359 char* str
,int* nold
,int oldmax
,char** dst
) {
1361 const m_option_t
* opt
;
1364 eq
= strchr(str
,'=');
1370 if(p
[0] == '\0') p
= NULL
;
1372 opt
= m_option_list_find(desc
->fields
,str
);
1374 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s doesn't have a %s parameter.\n",opt_name
,obj_name
,str
);
1375 return M_OPT_UNKNOWN
;
1377 r
= m_option_parse(opt
,str
,p
,NULL
,M_CONFIG_FILE
);
1380 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while parsing %s parameter %s (%s)\n",opt_name
,obj_name
,str
,p
);
1385 dst
[0] = strdup(str
);
1386 dst
[1] = p
? strdup(p
) : NULL
;
1390 if((*nold
) >= oldmax
) {
1391 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s has only %d params, so you can't give more than %d unnamed params.\n",
1392 opt_name
,obj_name
,oldmax
,oldmax
);
1393 return M_OPT_OUT_OF_RANGE
;
1395 opt
= &desc
->fields
[(*nold
)];
1396 r
= m_option_parse(opt
,opt
->name
,str
,NULL
,M_CONFIG_FILE
);
1399 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while parsing %s parameter %s (%s)\n",opt_name
,obj_name
,opt
->name
,str
);
1403 dst
[0] = strdup(opt
->name
);
1404 dst
[1] = strdup(str
);
1411 static int get_obj_params(const char* opt_name
, const char* name
,char* params
,
1412 const m_struct_t
* desc
,char separator
, char*** _ret
) {
1413 int n
= 0,nold
= 0, nopts
,r
;
1414 char* ptr
,*last_ptr
= params
;
1417 if(!strcmp(params
,"help")) { // Help
1418 char min
[50],max
[50];
1420 printf("%s doesn't have any options.\n\n",name
);
1421 return M_OPT_EXIT
- 1;
1423 printf("\n Name Type Min Max\n\n");
1424 for(n
= 0 ; desc
->fields
[n
].name
; n
++) {
1425 const m_option_t
* opt
= &desc
->fields
[n
];
1426 if(opt
->type
->flags
& M_OPT_TYPE_HAS_CHILD
) continue;
1427 if(opt
->flags
& M_OPT_MIN
)
1428 sprintf(min
,"%-8.0f",opt
->min
);
1431 if(opt
->flags
& M_OPT_MAX
)
1432 sprintf(max
,"%-8.0f",opt
->max
);
1435 printf(" %-20.20s %-15.15s %-10.10s %-10.10s\n",
1442 return M_OPT_EXIT
- 1;
1445 for(nopts
= 0 ; desc
->fields
[nopts
].name
; nopts
++)
1448 // TODO : Check that each opt can be parsed
1450 while(last_ptr
&& last_ptr
[0] != '\0') {
1451 ptr
= strchr(last_ptr
,separator
);
1453 r
= get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,NULL
);
1457 if(ptr
== last_ptr
) { // Empty field, count it and go on
1463 r
= get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,NULL
);
1470 if (!last_ptr
[0]) // count an empty field at the end, too
1473 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Too many options for %s\n", name
);
1474 return M_OPT_OUT_OF_RANGE
;
1476 if(!_ret
) // Just test
1478 if (n
== 0) // No options or only empty options
1481 ret
= malloc((n
+2)*2*sizeof(char*));
1485 while(last_ptr
&& last_ptr
[0] != '\0') {
1486 ptr
= strchr(last_ptr
,separator
);
1488 get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,&ret
[n
*2]);
1492 if(ptr
== last_ptr
) { // Empty field, count it and go on
1498 get_obj_param(opt_name
,name
,desc
,last_ptr
,&nold
,nopts
,&ret
[n
*2]);
1502 ret
[n
*2] = ret
[n
*2+1] = NULL
;
1508 static int parse_obj_params(const m_option_t
* opt
,const char *name
,
1509 char *param
, void* dst
, int src
) {
1512 m_obj_params_t
* p
= opt
->priv
;
1513 const m_struct_t
* desc
;
1516 // We need the object desc
1518 return M_OPT_INVALID
;
1521 cpy
= strdup(param
);
1522 r
= get_obj_params(name
,desc
->name
,cpy
,desc
,p
->separator
,dst
? &opts
: NULL
);
1528 if (!opts
) // no arguments given
1531 for(r
= 0 ; opts
[r
] ; r
+= 2)
1532 m_struct_set(desc
,dst
,opts
[r
],opts
[r
+1]);
1538 const m_option_type_t m_option_type_obj_params
= {
1551 /// Some predefined types as a definition would be quite lengthy
1554 static const m_span_t m_span_params_dflts
= { -1, -1 };
1555 static const m_option_t m_span_params_fields
[] = {
1556 {"start", M_ST_OFF(m_span_t
,start
), CONF_TYPE_INT
, M_OPT_MIN
, 1 ,0, NULL
},
1557 {"end", M_ST_OFF(m_span_t
,end
), CONF_TYPE_INT
, M_OPT_MIN
, 1 ,0, NULL
},
1558 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
1560 static const struct m_struct_st m_span_opts
= {
1563 &m_span_params_dflts
,
1564 m_span_params_fields
1566 const m_obj_params_t m_span_params_def
= {
1571 static int parse_obj_settings(const char* opt
,char* str
,const m_obj_list_t
* list
,
1572 m_obj_settings_t
**_ret
, int ret_n
) {
1574 char *param
,**plist
= NULL
;
1575 const m_struct_t
* desc
;
1576 m_obj_settings_t
*ret
= _ret
? *_ret
: NULL
;
1579 // Now check that the object exists
1580 param
= strchr(str
,'=');
1584 if(strlen(param
) <= 0)
1589 if(!find_obj_desc(str
,list
,&desc
)) {
1590 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: %s doesn't exist.\n",opt
,str
);
1591 return M_OPT_INVALID
;
1596 if(!strcmp(param
,"help")) {
1597 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Option %s: %s have no option description.\n",opt
,str
);
1598 return M_OPT_EXIT
- 1;
1600 plist
= calloc(4,sizeof(char*));
1601 plist
[0] = strdup("_oldargs_");
1602 plist
[1] = strdup(param
);
1604 r
= get_obj_params(opt
,str
,param
,desc
,':',_ret
? &plist
: NULL
);
1612 ret
= realloc(ret
,(ret_n
+2)*sizeof(m_obj_settings_t
));
1613 memset(&ret
[ret_n
],0,2*sizeof(m_obj_settings_t
));
1614 ret
[ret_n
].name
= strdup(str
);
1615 ret
[ret_n
].attribs
= plist
;
1621 static void free_obj_settings_list(void* dst
);
1623 static int obj_settings_list_del(const char *opt_name
,char *param
,void* dst
, int src
) {
1624 char** str_list
= NULL
;
1625 int r
,i
,idx_max
= 0;
1626 char* rem_id
= "_removed_marker_";
1627 const m_option_t list_opt
= {opt_name
, NULL
, CONF_TYPE_STRING_LIST
,
1629 m_obj_settings_t
* obj_list
= dst
? VAL(dst
) : NULL
;
1631 if(dst
&& !obj_list
) {
1632 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: the list is empty.\n",opt_name
);
1634 } else if(obj_list
) {
1635 for(idx_max
= 0 ; obj_list
[idx_max
].name
!= NULL
; idx_max
++)
1639 r
= m_option_parse(&list_opt
,opt_name
,param
,&str_list
,src
);
1640 if(r
< 0 || !str_list
)
1643 for(r
= 0 ; str_list
[r
] ; r
++) {
1646 id
= strtol(str_list
[r
],&endptr
,0);
1647 if(endptr
== str_list
[r
]) {
1648 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
);
1649 m_option_free(&list_opt
,&str_list
);
1650 return M_OPT_INVALID
;
1652 if(!obj_list
) continue;
1653 if(id
>= idx_max
|| id
< -idx_max
) {
1654 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: Index %d is out of range.\n",opt_name
,id
);
1659 free(obj_list
[id
].name
);
1660 free_str_list(&(obj_list
[id
].attribs
));
1661 obj_list
[id
].name
= rem_id
;
1665 m_option_free(&list_opt
,&str_list
);
1669 for(i
= 0 ; obj_list
[i
].name
; i
++) {
1670 while(obj_list
[i
].name
== rem_id
) {
1671 memmove(&obj_list
[i
],&obj_list
[i
+1],sizeof(m_obj_settings_t
)*(idx_max
- i
));
1675 obj_list
= realloc(obj_list
,sizeof(m_obj_settings_t
)*(idx_max
+1));
1676 VAL(dst
) = obj_list
;
1681 static int parse_obj_settings_list(const m_option_t
* opt
,const char *name
,
1682 char *param
, void* dst
, int src
) {
1683 int n
= 0,r
,len
= strlen(opt
->name
);
1685 char *ptr
, *last_ptr
;
1686 m_obj_settings_t
*res
= NULL
,*queue
= NULL
,*head
= NULL
;
1689 // We need the objects list
1691 return M_OPT_INVALID
;
1693 if(opt
->name
[len
-1] == '*' && ((int)strlen(name
) > len
- 1)) {
1694 const char* n
= &name
[len
-1];
1695 if(strcasecmp(n
,"-add") == 0)
1697 else if(strcasecmp(n
,"-pre") == 0)
1699 else if(strcasecmp(n
,"-del") == 0)
1701 else if(strcasecmp(n
,"-clr") == 0)
1705 strncpy(prefix
,opt
->name
,len
-1);
1706 prefix
[len
-1] = '\0';
1707 mp_msg(MSGT_VFILTER
,MSGL_ERR
, "Option %s: unknown postfix %s\n"
1708 "Supported postfixes are:\n"
1710 " Append the given list to the current list\n\n"
1712 " Prepend the given list to the current list\n\n"
1714 " Remove the given elements. Take the list element index (starting from 0).\n"
1715 " Negative index can be used (i.e. -1 is the last element)\n\n"
1717 " Clear the current list.\n",name
,n
,prefix
,prefix
,prefix
,prefix
);
1719 return M_OPT_UNKNOWN
;
1723 // Clear the list ??
1726 free_obj_settings_list(dst
);
1730 if (param
== NULL
|| strlen(param
) == 0)
1731 return M_OPT_MISSING_PARAM
;
1735 if(dst
) head
= VAL(dst
);
1738 if(dst
) queue
= VAL(dst
);
1741 return obj_settings_list_del(name
,param
,dst
,src
);
1744 free_obj_settings_list(dst
);
1747 mp_msg(MSGT_VFILTER
,MSGL_ERR
, "Option %s: FIXME\n",name
);
1748 return M_OPT_UNKNOWN
;
1751 if(!strcmp(param
,"help")) {
1752 m_obj_list_t
* ol
= opt
->priv
;
1753 mp_msg(MSGT_VFILTER
,MSGL_INFO
,"Available video filters:\n");
1754 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VIDEO_FILTERS\n");
1755 for(n
= 0 ; ol
->list
[n
] ; n
++)
1756 mp_msg(MSGT_VFILTER
,MSGL_INFO
," %-15s: %s\n",
1757 M_ST_MB(char*,ol
->list
[n
],ol
->name_off
),
1758 M_ST_MB(char*,ol
->list
[n
],ol
->info_off
));
1759 mp_msg(MSGT_VFILTER
,MSGL_INFO
,"\n");
1760 return M_OPT_EXIT
- 1;
1762 ptr
= str
= strdup(param
);
1764 while(ptr
[0] != '\0') {
1766 ptr
= get_nextsep(ptr
, LIST_SEPARATOR
, 1);
1769 r
= parse_obj_settings(name
,last_ptr
,opt
->priv
,dst
? &res
: NULL
,n
);
1778 r
= parse_obj_settings(name
,last_ptr
,opt
->priv
,dst
? &res
: NULL
,n
);
1788 return M_OPT_INVALID
;
1790 if( ((opt
->flags
& M_OPT_MIN
) && (n
< opt
->min
)) ||
1791 ((opt
->flags
& M_OPT_MAX
) && (n
> opt
->max
)) )
1792 return M_OPT_OUT_OF_RANGE
;
1797 for(qsize
= 0 ; queue
[qsize
].name
; qsize
++)
1799 res
= realloc(res
,(qsize
+n
+1)*sizeof(m_obj_settings_t
));
1800 memcpy(&res
[n
],queue
,(qsize
+1)*sizeof(m_obj_settings_t
));
1806 for(hsize
= 0 ; head
[hsize
].name
; hsize
++)
1808 head
= realloc(head
,(hsize
+n
+1)*sizeof(m_obj_settings_t
));
1809 memcpy(&head
[hsize
],res
,(n
+1)*sizeof(m_obj_settings_t
));
1818 static void free_obj_settings_list(void* dst
) {
1820 m_obj_settings_t
*d
;
1822 if(!dst
|| !VAL(dst
)) return;
1826 for(n
= 0 ; d
[n
].name
; n
++) {
1828 free_str_list(&(d
[n
].attribs
));
1835 static void copy_obj_settings_list(const m_option_t
* opt
,void* dst
, void* src
) {
1836 m_obj_settings_t
*d
,*s
;
1845 free_obj_settings_list(dst
);
1850 for(n
= 0 ; s
[n
].name
; n
++)
1852 d
= malloc((n
+1)*sizeof(m_obj_settings_t
));
1853 for(n
= 0 ; s
[n
].name
; n
++) {
1854 d
[n
].name
= strdup(s
[n
].name
);
1855 d
[n
].attribs
= NULL
;
1856 copy_str_list(NULL
,&(d
[n
].attribs
),&(s
[n
].attribs
));
1859 d
[n
].attribs
= NULL
;
1863 const m_option_type_t m_option_type_obj_settings_list
= {
1864 "Object settings list",
1866 sizeof(m_obj_settings_t
*),
1867 M_OPT_TYPE_DYNAMIC
|M_OPT_TYPE_ALLOW_WILDCARD
,
1868 parse_obj_settings_list
,
1870 copy_obj_settings_list
,
1871 copy_obj_settings_list
,
1872 copy_obj_settings_list
,
1873 free_obj_settings_list
,
1878 static int parse_obj_presets(const m_option_t
* opt
,const char *name
,
1879 char *param
, void* dst
, int src
) {
1880 m_obj_presets_t
* obj_p
= (m_obj_presets_t
*)opt
->priv
;
1881 m_struct_t
*in_desc
,*out_desc
;
1884 char* pre_name
= NULL
;
1887 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Presets need a pointer to a m_obj_presets_t in the priv field.\n",name
);
1888 return M_OPT_PARSER_ERR
;
1892 return M_OPT_MISSING_PARAM
;
1894 pre
= obj_p
->presets
;
1895 in_desc
= obj_p
->in_desc
;
1896 out_desc
= obj_p
->out_desc
? obj_p
->out_desc
: obj_p
->in_desc
;
1899 if(!strcmp(param
,"help")) {
1900 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "Available presets for %s->%s:",out_desc
->name
,name
);
1901 for(pre
= obj_p
->presets
;(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) ;
1903 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s",pre_name
);
1904 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
1905 return M_OPT_EXIT
- 1;
1908 for(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
) ; pre_name
;
1909 pre
+= s
, pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) {
1910 if(!strcmp(pre_name
,param
)) break;
1913 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: There is no preset named %s\n"
1914 "Available presets are:",name
,param
);
1915 for(pre
= obj_p
->presets
;(pre_name
= M_ST_MB(char*,pre
,obj_p
->name_off
)) ;
1917 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, " %s",pre_name
);
1918 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "\n");
1919 return M_OPT_INVALID
;
1924 for(i
= 0 ; in_desc
->fields
[i
].name
; i
++) {
1925 const m_option_t
* out_opt
= m_option_list_find(out_desc
->fields
,
1926 in_desc
->fields
[i
].name
);
1928 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
);
1929 return M_OPT_PARSER_ERR
;
1931 m_option_copy(out_opt
,M_ST_MB_P(dst
,out_opt
->p
),M_ST_MB_P(pre
,in_desc
->fields
[i
].p
));
1937 const m_option_type_t m_option_type_obj_presets
= {
1950 static int parse_custom_url(const m_option_t
* opt
,const char *name
,
1951 char *url
, void* dst
, int src
) {
1952 int pos1
, pos2
, r
, v6addr
= 0;
1953 char *ptr1
=NULL
, *ptr2
=NULL
, *ptr3
=NULL
, *ptr4
=NULL
;
1954 m_struct_t
* desc
= opt
->priv
;
1957 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Custom URL needs a pointer to a m_struct_t in the priv field.\n",name
);
1958 return M_OPT_PARSER_ERR
;
1961 // extract the protocol
1962 ptr1
= strstr(url
, "://");
1965 if(m_option_list_find(desc
->fields
,"filename")) {
1966 m_struct_set(desc
,dst
,"filename",url
);
1969 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,"Option %s: URL doesn't have a valid protocol!\n",name
);
1970 return M_OPT_INVALID
;
1972 if(m_option_list_find(desc
->fields
,"string")) {
1973 if(strlen(ptr1
)>3) {
1974 m_struct_set(desc
,dst
,"string",ptr1
+3);
1979 if(dst
&& m_option_list_find(desc
->fields
,"protocol")) {
1981 r
= m_struct_set(desc
,dst
,"protocol",url
);
1984 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting protocol.\n",name
);
1993 // check if a username:password is given
1994 ptr2
= strstr(ptr1
, "@");
1995 ptr3
= strstr(ptr1
, "/");
1996 if( ptr3
!=NULL
&& ptr3
<ptr2
) {
1997 // it isn't really a username but rather a part of the path
2002 // We got something, at least a username...
2003 if(!m_option_list_find(desc
->fields
,"username")) {
2004 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a username part.\n",name
);
2007 ptr3
= strstr(ptr1
, ":");
2008 if( ptr3
!=NULL
&& ptr3
<ptr2
) {
2009 // We also have a password
2010 if(!m_option_list_find(desc
->fields
,"password")) {
2011 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a password part.\n",name
);
2013 } else { // Username and password
2016 r
= m_struct_set(desc
,dst
,"username",ptr1
);
2019 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting username.\n",name
);
2023 r
= m_struct_set(desc
,dst
,"password",ptr3
+1);
2026 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting password.\n",name
);
2031 } else { // User name only
2033 r
= m_struct_set(desc
,dst
,"username",ptr1
);
2036 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting username.\n",name
);
2045 // before looking for a port number check if we have an IPv6 type numeric address
2046 // in an IPv6 URL the numeric address should be inside square braces.
2047 ptr2
= strstr(ptr1
, "[");
2048 ptr3
= strstr(ptr1
, "]");
2049 // If the [] is after the first it isn't the hostname
2050 ptr4
= strstr(ptr1
, "/");
2051 if( ptr2
!=NULL
&& ptr3
!=NULL
&& (ptr2
< ptr3
) && (!ptr4
|| ptr4
> ptr3
)) {
2052 // we have an IPv6 numeric address
2061 // look if the port is given
2062 ptr2
= strstr(ptr2
, ":");
2063 // If the : is after the first / it isn't the port
2064 ptr3
= strstr(ptr1
, "/");
2065 if(ptr3
&& ptr3
- ptr2
< 0) ptr2
= NULL
;
2068 // Look if a path is given
2071 // So we have an URL like http://www.hostname.com
2074 // We have an URL like http://www.hostname.com/file.txt
2078 // We have an URL beginning like http://www.hostname.com:1212
2079 // Get the port number
2080 if(!m_option_list_find(desc
->fields
,"port")) {
2081 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a port part.\n",name
);
2085 int p
= atoi(ptr2
+1);
2087 snprintf(tmp
,99,"%d",p
);
2088 r
= m_struct_set(desc
,dst
,"port",tmp
);
2090 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting port.\n",name
);
2097 if( v6addr
) pos2
--;
2100 if(!m_option_list_find(desc
->fields
,"hostname")) {
2101 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a hostname part.\n",name
);
2104 char tmp
[pos2
-pos1
+1];
2105 strncpy(tmp
,ptr1
, pos2
-pos1
);
2106 tmp
[pos2
-pos1
] = '\0';
2107 r
= m_struct_set(desc
,dst
,"hostname",tmp
);
2109 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting hostname.\n",name
);
2114 // Look if a path is given
2115 ptr2
= strstr(ptr1
, "/");
2117 // A path/filename is given
2118 // check if it's not a trailing '/'
2119 if( strlen(ptr2
)>1 ) {
2120 // copy the path/filename in the URL container
2121 if(!m_option_list_find(desc
->fields
,"filename")) {
2122 mp_msg(MSGT_CFGPARSER
, MSGL_WARN
, "Option %s: This URL doesn't have a hostname part.\n",name
);
2126 int l
= strlen(ptr2
+1) + 1;
2127 char* fname
= ptr2
+1;
2130 url_unescape_string(fname
,ptr2
+1);
2132 r
= m_struct_set(desc
,dst
,"filename",fname
);
2136 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "Option %s: Error while setting filename.\n",name
);
2146 /// TODO : Write the other needed funcs for 'normal' options
2147 const m_option_type_t m_option_type_custom_url
= {