annotate opts.c @ 1114:e4762efc3617 libavcodec

* more generic avoption_parse * reused help ptr for sub ptr
author kabi
date Fri, 07 Mar 2003 13:48:02 +0000
parents 1e39f273ecd6
children 64c7c76ed17c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
1 /*
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
2 * LGPL
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
3 */
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
4
1106
1e39f273ecd6 per file doxy
michaelni
parents: 1058
diff changeset
5 /**
1e39f273ecd6 per file doxy
michaelni
parents: 1058
diff changeset
6 * @file opts.c
1e39f273ecd6 per file doxy
michaelni
parents: 1058
diff changeset
7 * options parser.
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
8 * typical parsed command line:
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
9 * msmpeg4:bitrate=720000:qmax=16
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
10 *
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
11 */
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
12
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
13 #include "avcodec.h"
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
14
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
15 #ifdef HAVE_MMX
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
16 extern const AVOption common_options[3 + 5];
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
17 #else
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
18 extern const AVOption common_options[3];
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
19 #endif
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
20
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
21 const AVOption common_options[] = {
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
22 AVOPTION_CODEC_FLAG("bit_exact", "use only bit-exact stuff", flags, CODEC_FLAG_BITEXACT, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
23 AVOPTION_CODEC_FLAG("mm_force", "force mm flags", dsp_mask, FF_MM_FORCE, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
24 #ifdef HAVE_MMX
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
25 AVOPTION_CODEC_FLAG("mm_mmx", "mask MMX feature", dsp_mask, FF_MM_MMX, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
26 AVOPTION_CODEC_FLAG("mm_3dnow", "mask 3DNow feature", dsp_mask, FF_MM_3DNOW, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
27 AVOPTION_CODEC_FLAG("mm_mmxext", "mask MMXEXT (MMX2) feature", dsp_mask, FF_MM_MMXEXT, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
28 AVOPTION_CODEC_FLAG("mm_sse", "mask SSE feature", dsp_mask, FF_MM_SSE, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
29 AVOPTION_CODEC_FLAG("mm_sse2", "mask SSE2 feature", dsp_mask, FF_MM_SSE2, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
30 #endif
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
31 AVOPTION_END()
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
32 };
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
33
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
34 static int parse_bool(const AVOption *c, char *s, int *var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
35 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
36 int b = 1; /* by default -on- when present */
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
37 if (s) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
38 if (!strcasecmp(s, "off") || !strcasecmp(s, "false")
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
39 || !strcmp(s, "0"))
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
40 b = 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
41 else if (!strcasecmp(s, "on") || !strcasecmp(s, "true")
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
42 || !strcmp(s, "1"))
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
43 b = 1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
44 else
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
45 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
46 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
47
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
48 *var = b;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
49 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
50 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
51
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
52 static int parse_double(const AVOption *c, char *s, double *var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
53 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
54 double d;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
55 if (!s)
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
56 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
57 d = atof(s);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
58 if (c->min != c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
59 if (d < c->min || d > c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
60 fprintf(stderr, "Option: %s double value: %f out of range <%f, %f>\n",
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
61 c->name, d, c->min, c->max);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
62 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
63 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
64 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
65 *var = d;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
66 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
67 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
68
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
69 static int parse_int(const AVOption* c, char* s, int* var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
70 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
71 int i;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
72 if (!s)
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
73 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
74 i = atoi(s);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
75 if (c->min != c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
76 if (i < (int)c->min || i > (int)c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
77 fprintf(stderr, "Option: %s integer value: %d out of range <%d, %d>\n",
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
78 c->name, i, (int)c->min, (int)c->max);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
79 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
80 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
81 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
82 *var = i;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
83 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
84 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
85
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
86 static int parse_string(const AVOption *c, char *s, void* strct, char **var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
87 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
88 if (!s)
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
89 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
90
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
91 if (c->type == FF_OPT_TYPE_RCOVERRIDE) {
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
92 int sf, ef, qs;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
93 float qf;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
94 if (sscanf(s, "%d,%d,%d,%f", &sf, &ef, &qs, &qf) == 4 && sf < ef) {
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
95 AVCodecContext *avctx = (AVCodecContext *) strct;
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
96 RcOverride *o;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
97 avctx->rc_override = av_realloc(avctx->rc_override,
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
98 sizeof(RcOverride) * (avctx->rc_override_count + 1));
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
99 o = avctx->rc_override + avctx->rc_override_count++;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
100 o->start_frame = sf;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
101 o->end_frame = ef;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
102 o->qscale = qs;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
103 o->quality_factor = qf;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
104
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
105 //printf("parsed Rc: %d,%d,%d,%f (%d)\n", sf,ef,qs,qf, avctx->rc_override_count);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
106 } else {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
107 printf("incorrect/unparsable Rc: \"%s\"\n", s);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
108 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
109 } else
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
110 *var = av_strdup(s);
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
111 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
112 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
113
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
114 int avoption_parse(void* strct, const AVOption* list, const char *opts)
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
115 {
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
116 int r = 0;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
117 char* dopts = av_strdup(opts);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
118 if (dopts) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
119 char *str = dopts;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
120
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
121 while (str && *str && r == 0) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
122 const AVOption *stack[FF_OPT_MAX_DEPTH];
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
123 const AVOption *c = list;
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
124 int depth = 0;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
125 char* e = strchr(str, ':');
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
126 char* p;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
127 if (e)
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
128 *e++ = 0;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
129
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
130 p = strchr(str, '=');
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
131 if (p)
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
132 *p++ = 0;
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
133
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
134 // going through option structures
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
135 for (;;) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
136 if (!c->name) {
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
137 if (c->help) {
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
138 stack[depth++] = c;
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
139 c = (const AVOption*) c->help;
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
140 assert(depth > FF_OPT_MAX_DEPTH);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
141 } else {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
142 if (depth == 0)
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
143 break; // finished
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
144 c = stack[--depth];
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
145 c++;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
146 }
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
147 } else {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
148 if (!strcmp(c->name, str)) {
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
149 void* ptr = (char*)strct + c->offset;
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
150
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
151 switch (c->type & FF_OPT_TYPE_MASK) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
152 case FF_OPT_TYPE_BOOL:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
153 r = parse_bool(c, p, (int*)ptr);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
154 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
155 case FF_OPT_TYPE_DOUBLE:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
156 r = parse_double(c, p, (double*)ptr);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
157 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
158 case FF_OPT_TYPE_INT:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
159 r = parse_int(c, p, (int*)ptr);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
160 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
161 case FF_OPT_TYPE_STRING:
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
162 r = parse_string(c, p, strct, (char**)ptr);
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
163 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
164 default:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
165 assert(0 == 1);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
166 }
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
167 }
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
168 c++;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
169 }
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
170 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
171 str = e;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
172 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
173 av_free(dopts);
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
174 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
175 return r;
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
176 }