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