annotate opts.c @ 1128:300961b1ef4f libavcodec

* moved os_support.h into libavcodec * added few more functions for os2
author kabi
date Wed, 12 Mar 2003 18:57:33 +0000
parents 0980ae063f4e
children daa70b33fc44
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"
1128
300961b1ef4f * moved os_support.h into libavcodec
kabi
parents: 1125
diff changeset
14 #include "os_support.h"
1125
0980ae063f4e restoring OS/2 compatibility patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents: 1124
diff changeset
15
1124
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
16 const AVOption avoptions_common[] = {
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
17 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
18 AVOPTION_CODEC_FLAG("mm_force", "force mm flags", dsp_mask, FF_MM_FORCE, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
19 #ifdef HAVE_MMX
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
20 AVOPTION_CODEC_FLAG("mm_mmx", "mask MMX feature", dsp_mask, FF_MM_MMX, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
21 AVOPTION_CODEC_FLAG("mm_3dnow", "mask 3DNow feature", dsp_mask, FF_MM_3DNOW, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
22 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
23 AVOPTION_CODEC_FLAG("mm_sse", "mask SSE feature", dsp_mask, FF_MM_SSE, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
24 AVOPTION_CODEC_FLAG("mm_sse2", "mask SSE2 feature", dsp_mask, FF_MM_SSE2, 0),
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
25 #endif
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
26 AVOPTION_END()
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
27 };
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
28
1124
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
29 const AVOption avoptions_workaround_bug[] = {
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
30 AVOPTION_CODEC_FLAG("bug_autodetect", "workaround bug autodetection", workaround_bugs, FF_BUG_AUTODETECT, 1),
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
31 AVOPTION_CODEC_FLAG("bug_old_msmpeg4", "workaround old msmpeg4 bug", workaround_bugs, FF_BUG_OLD_MSMPEG4, 0),
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
32 AVOPTION_CODEC_FLAG("bug_xvid_ilace", "workaround XviD interlace bug", workaround_bugs, FF_BUG_XVID_ILACE, 0),
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
33 AVOPTION_CODEC_FLAG("bug_ump4", "workaround ump4 bug", workaround_bugs, FF_BUG_UMP4, 0),
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
34 AVOPTION_CODEC_FLAG("bug_no_padding", "workaround padding bug", workaround_bugs, FF_BUG_NO_PADDING, 0),
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
35 AVOPTION_CODEC_FLAG("bug_ac_vlc", "workaround ac VLC bug", workaround_bugs, FF_BUG_AC_VLC, 0),
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
36 AVOPTION_CODEC_FLAG("bug_qpel_chroma", "workaround qpel chroma bug", workaround_bugs, FF_BUG_QPEL_CHROMA, 0),
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
37 AVOPTION_CODEC_FLAG("bug_std_qpel", "workaround std qpel bug", workaround_bugs, FF_BUG_STD_QPEL, 0),
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
38 AVOPTION_CODEC_FLAG("bug_qpel_chroma2", "workaround qpel chroma2 bug", workaround_bugs, FF_BUG_QPEL_CHROMA2, 0),
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
39 AVOPTION_CODEC_FLAG("bug_direct_blocksize", "workaround direct blocksize bug", workaround_bugs, FF_BUG_DIRECT_BLOCKSIZE, 0),
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
40 AVOPTION_END()
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
41 };
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
42
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
43
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
44 static int parse_bool(const AVOption *c, char *s, int *var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
45 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
46 int b = 1; /* by default -on- when present */
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
47 if (s) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
48 if (!strcasecmp(s, "off") || !strcasecmp(s, "false")
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
49 || !strcmp(s, "0"))
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
50 b = 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
51 else if (!strcasecmp(s, "on") || !strcasecmp(s, "true")
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
52 || !strcmp(s, "1"))
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
53 b = 1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
54 else
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
55 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
56 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
57
1124
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
58 if (c->type == FF_OPT_TYPE_FLAG) {
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
59 if (b)
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
60 *var |= (int)c->min;
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
61 else
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
62 *var &= ~(int)c->min;
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
63 } else
64c7c76ed17c * 'externaly' visible option list begins avoptions_ prefix
kabi
parents: 1114
diff changeset
64 *var = b;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
65 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
66 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
67
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
68 static int parse_double(const AVOption *c, char *s, double *var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
69 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
70 double d;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
71 if (!s)
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
72 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
73 d = atof(s);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
74 if (c->min != c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
75 if (d < c->min || d > c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
76 fprintf(stderr, "Option: %s double value: %f out of range <%f, %f>\n",
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
77 c->name, d, c->min, c->max);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
78 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
79 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
80 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
81 *var = d;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
82 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
83 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
84
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
85 static int parse_int(const AVOption* c, char* s, int* var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
86 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
87 int i;
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 i = atoi(s);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
91 if (c->min != c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
92 if (i < (int)c->min || i > (int)c->max) {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
93 fprintf(stderr, "Option: %s integer value: %d out of range <%d, %d>\n",
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
94 c->name, i, (int)c->min, (int)c->max);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
95 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
96 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
97 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
98 *var = i;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
99 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
100 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
101
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
102 static int parse_string(const AVOption *c, char *s, void* strct, char **var)
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
103 {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
104 if (!s)
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
105 return -1;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
106
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
107 if (c->type == FF_OPT_TYPE_RCOVERRIDE) {
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
108 int sf, ef, qs;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
109 float qf;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
110 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
111 AVCodecContext *avctx = (AVCodecContext *) strct;
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
112 RcOverride *o;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
113 avctx->rc_override = av_realloc(avctx->rc_override,
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
114 sizeof(RcOverride) * (avctx->rc_override_count + 1));
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
115 o = avctx->rc_override + avctx->rc_override_count++;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
116 o->start_frame = sf;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
117 o->end_frame = ef;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
118 o->qscale = qs;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
119 o->quality_factor = qf;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
120
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
121 //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
122 } else {
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
123 printf("incorrect/unparsable Rc: \"%s\"\n", s);
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
124 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
125 } else
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
126 *var = av_strdup(s);
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
127 return 0;
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
128 }
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
129
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
130 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
131 {
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
132 int r = 0;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
133 char* dopts = av_strdup(opts);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
134 if (dopts) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
135 char *str = dopts;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
136
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
137 while (str && *str && r == 0) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
138 const AVOption *stack[FF_OPT_MAX_DEPTH];
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
139 const AVOption *c = list;
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
140 int depth = 0;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
141 char* e = strchr(str, ':');
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
142 char* p;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
143 if (e)
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
144 *e++ = 0;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
145
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
146 p = strchr(str, '=');
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
147 if (p)
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
148 *p++ = 0;
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
149
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
150 // going through option structures
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
151 for (;;) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
152 if (!c->name) {
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
153 if (c->help) {
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
154 stack[depth++] = c;
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
155 c = (const AVOption*) c->help;
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
156 assert(depth > FF_OPT_MAX_DEPTH);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
157 } else {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
158 if (depth == 0)
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
159 break; // finished
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
160 c = stack[--depth];
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 }
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
163 } else {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
164 if (!strcmp(c->name, str)) {
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
165 void* ptr = (char*)strct + c->offset;
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
166
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
167 switch (c->type & FF_OPT_TYPE_MASK) {
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
168 case FF_OPT_TYPE_BOOL:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
169 r = parse_bool(c, p, (int*)ptr);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
170 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
171 case FF_OPT_TYPE_DOUBLE:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
172 r = parse_double(c, p, (double*)ptr);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
173 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
174 case FF_OPT_TYPE_INT:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
175 r = parse_int(c, p, (int*)ptr);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
176 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
177 case FF_OPT_TYPE_STRING:
1114
e4762efc3617 * more generic avoption_parse
kabi
parents: 1106
diff changeset
178 r = parse_string(c, p, strct, (char**)ptr);
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
179 break;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
180 default:
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
181 assert(0 == 1);
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
182 }
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
183 }
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
184 c++;
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
185 }
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
186 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
187 str = e;
1019
ef905ded19fe * code for parsing options
kabi
parents: 962
diff changeset
188 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
189 av_free(dopts);
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
190 }
1058
3c3da6edc9a1 * still unfinished code for Options
kabi
parents: 1019
diff changeset
191 return r;
962
c5aef83c6a3f * first shot for generaly usable option parser for codecs
kabi
parents:
diff changeset
192 }