annotate opts.c @ 1106:1e39f273ecd6 libavcodec

per file doxy
author michaelni
date Thu, 06 Mar 2003 11:32:04 +0000
parents 3c3da6edc9a1
children e4762efc3617
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
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
15 extern const AVOption common_options[2];
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
16
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
17 const AVOption common_options[2] = {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
18 AVOPTION_CODEC_INT("common", "test", bit_rate, 0, 10, 0),
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
19 AVOPTION_END()
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
20 };
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
21
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
22 static int parse_bool(const AVOption *c, char *s, int *var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
23 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
24 int b = 1; /* by default -on- when present */
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
25 if (s) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
26 if (!strcasecmp(s, "off") || !strcasecmp(s, "false")
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
27 || !strcmp(s, "0"))
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
28 b = 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
29 else if (!strcasecmp(s, "on") || !strcasecmp(s, "true")
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
30 || !strcmp(s, "1"))
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
31 b = 1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
32 else
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
33 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
34 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
35
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
36 *var = b;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
37 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
38 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
39
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
40 static int parse_double(const AVOption *c, char *s, double *var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
41 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
42 double d;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
43 if (!s)
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
44 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
45 d = atof(s);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
46 if (c->min != c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
47 if (d < c->min || d > c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
48 fprintf(stderr, "Option: %s double value: %f out of range <%f, %f>\n",
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
49 c->name, d, c->min, c->max);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
50 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
51 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
52 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
53 *var = d;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
54 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
55 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
56
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
57 static int parse_int(const AVOption* c, char* s, int* var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
58 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
59 int i;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
60 if (!s)
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
61 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
62 i = atoi(s);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
63 if (c->min != c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
64 if (i < (int)c->min || i > (int)c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
65 fprintf(stderr, "Option: %s integer value: %d out of range <%d, %d>\n",
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
66 c->name, i, (int)c->min, (int)c->max);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
67 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
68 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
69 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
70 *var = i;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
71 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
72 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
73
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
74 static int parse_string(const AVOption *c, char *s, AVCodecContext *avctx, char **var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
75 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
76 if (!s)
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
77 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
78
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
79 if (c->type == FF_OPT_TYPE_RCOVERRIDE) {
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
80 int sf, ef, qs;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
81 float qf;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
82 if (sscanf(s, "%d,%d,%d,%f", &sf, &ef, &qs, &qf) == 4 && sf < ef) {
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
83 RcOverride *o;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
84 avctx->rc_override = av_realloc(avctx->rc_override,
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
85 sizeof(RcOverride) * (avctx->rc_override_count + 1));
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
86 o = avctx->rc_override + avctx->rc_override_count++;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
87 o->start_frame = sf;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
88 o->end_frame = ef;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
89 o->qscale = qs;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
90 o->quality_factor = qf;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
91
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
92 //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
93 } else {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
94 printf("incorrect/unparsable Rc: \"%s\"\n", s);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
95 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
96 } else
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
97 *var = av_strdup(s);
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
98 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
99 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
100
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
101 /**
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
102 *
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
103 * \param codec codec for option parsing
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
104 * \param opts string with options for parsing
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
105 * \param avctx where to store parsed results
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
106 */
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
107 int avcodec_parse(const AVCodec *codec, const char *opts, AVCodecContext *avctx)
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
108 {
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
109 int r = 0;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
110 char* dopts = av_strdup(opts);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
111 if (dopts) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
112 char *str = dopts;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
113
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
114 while (str && *str && r == 0) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
115 const AVOption *stack[FF_OPT_MAX_DEPTH];
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
116 int depth = 0;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
117 const AVOption *c = codec->options;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
118 char* e = strchr(str, ':');
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
119 char* p;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
120 if (e)
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
121 *e++ = 0;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
122
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
123 p = strchr(str, '=');
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
124 if (p)
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
125 *p++ = 0;
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
126
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
127 // going through option structures
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
128 for (;;) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
129 if (!c->name) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
130 if (c->sub) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
131 stack[depth++] = c;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
132 c = c->sub;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
133 assert(depth > FF_OPT_MAX_DEPTH);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
134 } else {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
135 if (depth == 0)
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
136 break; // finished
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
137 c = stack[--depth];
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
138 c++;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
139 }
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
140 } else {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
141 if (!strcmp(c->name, str)) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
142 void* ptr = (char*)avctx + c->offset;
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
143
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
144 switch (c->type & FF_OPT_TYPE_MASK) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
145 case FF_OPT_TYPE_BOOL:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
146 r = parse_bool(c, p, (int*)ptr);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
147 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
148 case FF_OPT_TYPE_DOUBLE:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
149 r = parse_double(c, p, (double*)ptr);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
150 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
151 case FF_OPT_TYPE_INT:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
152 r = parse_int(c, p, (int*)ptr);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
153 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
154 case FF_OPT_TYPE_STRING:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
155 r = parse_string(c, p, avctx, (char**)ptr);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
156 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
157 default:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
158 assert(0 == 1);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
159 }
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
160 }
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
161 c++;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
162 }
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
163 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
164 str = e;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
165 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
166 av_free(dopts);
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
167 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
168 return r;
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
169 }