Mercurial > mplayer.hg
annotate codec-cfg.c @ 6960:87deea511b1f
continuing paragraph reformatting
author | gabucino |
---|---|
date | Sat, 10 Aug 2002 20:26:43 +0000 |
parents | 0145bba6e201 |
children | 28677d779205 |
rev | line source |
---|---|
319 | 1 /* |
2 * codec.conf parser | |
3 * by Szabolcs Berecz <szabi@inf.elte.hu> | |
4 * (C) 2001 | |
4676 | 5 * |
6 * to compile tester app: gcc -Iloader/ -DTESTING -o codec-cfg codec-cfg.c | |
7 * to compile CODECS2HTML: gcc -Iloader/ -DCODECS2HTML -o codecs2html codecs-cfg.c | |
8 * | |
9 * TODO: implement informat in CODECS2HTML too | |
319 | 10 */ |
303 | 11 |
319 | 12 #define DEBUG |
303 | 13 |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
14 //disable asserts |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
15 #define NDEBUG |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
16 |
297 | 17 #include <stdio.h> |
18 #include <stdlib.h> | |
19 #include <fcntl.h> | |
20 #include <unistd.h> | |
21 #include <errno.h> | |
22 #include <ctype.h> | |
23 #include <assert.h> | |
24 #include <string.h> | |
25 | |
5284
0a58c2ef1da1
added missing #include config.h, removed LIBVO2 ifdef.
arpi
parents:
5263
diff
changeset
|
26 #include "config.h" |
5937 | 27 #include "mp_msg.h" |
5284
0a58c2ef1da1
added missing #include config.h, removed LIBVO2 ifdef.
arpi
parents:
5263
diff
changeset
|
28 |
2052 | 29 // for mmioFOURCC: |
1305
0a8237e28ce0
Use FOURCC macro to encode fcc values. Avoids accessing 32-bit data from
jkeil
parents:
1297
diff
changeset
|
30 #include "wine/avifmt.h" |
0a8237e28ce0
Use FOURCC macro to encode fcc values. Avoids accessing 32-bit data from
jkeil
parents:
1297
diff
changeset
|
31 |
408 | 32 #include "libvo/img_format.h" |
297 | 33 #include "codec-cfg.h" |
34 | |
5937 | 35 #define PRINT_LINENUM mp_msg(MSGT_CODECCFG,MSGL_ERR," at line %d\n", line_num) |
328 | 36 |
319 | 37 #define MAX_NR_TOKEN 16 |
297 | 38 |
39 #define MAX_LINE_LEN 1000 | |
40 | |
41 #define RET_EOF -1 | |
42 #define RET_EOL -2 | |
43 | |
328 | 44 #define TYPE_VIDEO 0 |
45 #define TYPE_AUDIO 1 | |
297 | 46 |
303 | 47 static int add_to_fourcc(char *s, char *alias, unsigned int *fourcc, |
297 | 48 unsigned int *map) |
49 { | |
319 | 50 int i, j, freeslots; |
51 unsigned int tmp; | |
52 | |
53 /* find first unused slot */ | |
54 for (i = 0; i < CODECS_MAX_FOURCC && fourcc[i] != 0xffffffff; i++) | |
55 /* NOTHING */; | |
56 freeslots = CODECS_MAX_FOURCC - i; | |
57 if (!freeslots) | |
328 | 58 goto err_out_too_many; |
319 | 59 |
60 do { | |
1305
0a8237e28ce0
Use FOURCC macro to encode fcc values. Avoids accessing 32-bit data from
jkeil
parents:
1297
diff
changeset
|
61 tmp = mmioFOURCC(s[0], s[1], s[2], s[3]); |
319 | 62 for (j = 0; j < i; j++) |
63 if (tmp == fourcc[j]) | |
328 | 64 goto err_out_duplicated; |
319 | 65 fourcc[i] = tmp; |
2681 | 66 map[i] = alias ? mmioFOURCC(alias[0], alias[1], alias[2], alias[3]) : tmp; |
319 | 67 s += 4; |
68 i++; | |
69 } while ((*(s++) == ',') && --freeslots); | |
70 | |
71 if (!freeslots) | |
328 | 72 goto err_out_too_many; |
319 | 73 if (*(--s) != '\0') |
361 | 74 goto err_out_parse_error; |
319 | 75 return 1; |
328 | 76 err_out_duplicated: |
5937 | 77 mp_msg(MSGT_CODECCFG,MSGL_ERR,"duplicated fourcc/format"); |
319 | 78 return 0; |
328 | 79 err_out_too_many: |
5937 | 80 mp_msg(MSGT_CODECCFG,MSGL_ERR,"too many fourcc/format..."); |
361 | 81 return 0; |
82 err_out_parse_error: | |
5937 | 83 mp_msg(MSGT_CODECCFG,MSGL_ERR,"parse error"); |
319 | 84 return 0; |
85 } | |
86 | |
87 static int add_to_format(char *s, unsigned int *fourcc, unsigned int *fourccmap) | |
88 { | |
89 int i, j; | |
361 | 90 char *endptr; |
297 | 91 |
92 /* find first unused slot */ | |
93 for (i = 0; i < CODECS_MAX_FOURCC && fourcc[i] != 0xffffffff; i++) | |
94 /* NOTHING */; | |
95 if (i == CODECS_MAX_FOURCC) { | |
5937 | 96 mp_msg(MSGT_CODECCFG,MSGL_ERR,"too many fourcc/format..."); |
297 | 97 return 0; |
98 } | |
99 | |
361 | 100 fourcc[i]=fourccmap[i]=strtoul(s,&endptr,0); |
101 if (*endptr != '\0') { | |
5937 | 102 mp_msg(MSGT_CODECCFG,MSGL_ERR,"parse error"); |
361 | 103 return 0; |
104 } | |
319 | 105 for (j = 0; j < i; j++) |
106 if (fourcc[j] == fourcc[i]) { | |
5937 | 107 mp_msg(MSGT_CODECCFG,MSGL_ERR,"duplicated fourcc/format"); |
319 | 108 return 0; |
109 } | |
300 | 110 |
297 | 111 return 1; |
112 } | |
113 | |
408 | 114 static struct { |
115 const char *name; | |
116 const unsigned int num; | |
117 } fmt_table[] = { | |
415 | 118 {"YV12", IMGFMT_YV12}, |
119 {"I420", IMGFMT_I420}, | |
120 {"IYUV", IMGFMT_IYUV}, | |
6489
37fb529873d7
yvu9 support, 0l to me becouse i forget to commit it (0l becouse i've drinken 1litre of bier, yet ;)
alex
parents:
6343
diff
changeset
|
121 {"YVU9", IMGFMT_YVU9}, |
6526 | 122 {"IF09", IMGFMT_IF09}, |
6863 | 123 {"444P", IMGFMT_444P}, |
124 {"422P", IMGFMT_422P}, | |
125 {"411P", IMGFMT_411P}, | |
408 | 126 |
415 | 127 {"YUY2", IMGFMT_YUY2}, |
128 {"UYVY", IMGFMT_UYVY}, | |
129 {"YVYU", IMGFMT_YVYU}, | |
408 | 130 |
415 | 131 {"RGB8", IMGFMT_RGB|8}, |
132 {"RGB15", IMGFMT_RGB|15}, | |
133 {"RGB16", IMGFMT_RGB|16}, | |
134 {"RGB24", IMGFMT_RGB|24}, | |
135 {"RGB32", IMGFMT_RGB|32}, | |
136 {"BGR8", IMGFMT_BGR|8}, | |
137 {"BGR15", IMGFMT_BGR|15}, | |
138 {"BGR16", IMGFMT_BGR|16}, | |
139 {"BGR24", IMGFMT_BGR|24}, | |
140 {"BGR32", IMGFMT_BGR|32}, | |
1871 | 141 |
142 {"MPES", IMGFMT_MPEGPES}, | |
415 | 143 {NULL, 0} |
297 | 144 }; |
408 | 145 |
607 | 146 |
4675 | 147 static int add_to_inout(char *sfmt, char *sflags, unsigned int *outfmt, |
607 | 148 unsigned char *outflags) |
149 { | |
150 | |
299 | 151 static char *flagstr[] = { |
152 "flip", | |
153 "noflip", | |
154 "yuvhack", | |
5249 | 155 "query", |
6103 | 156 "static", |
299 | 157 NULL |
158 }; | |
159 | |
319 | 160 int i, j, freeslots; |
297 | 161 unsigned char flags; |
162 | |
163 for (i = 0; i < CODECS_MAX_OUTFMT && outfmt[i] != 0xffffffff; i++) | |
164 /* NOTHING */; | |
319 | 165 freeslots = CODECS_MAX_OUTFMT - i; |
166 if (!freeslots) | |
328 | 167 goto err_out_too_many; |
297 | 168 |
319 | 169 flags = 0; |
361 | 170 if(sflags) { |
171 do { | |
172 for (j = 0; flagstr[j] != NULL; j++) | |
173 if (!strncmp(sflags, flagstr[j], | |
174 strlen(flagstr[j]))) | |
175 break; | |
176 if (flagstr[j] == NULL) | |
177 goto err_out_parse_error; | |
178 flags|=(1<<j); | |
179 sflags+=strlen(flagstr[j]); | |
180 } while (*(sflags++) == ','); | |
181 | |
182 if (*(--sflags) != '\0') | |
183 goto err_out_parse_error; | |
184 } | |
297 | 185 |
186 do { | |
408 | 187 for (j = 0; fmt_table[j].name != NULL; j++) |
188 if (!strncmp(sfmt, fmt_table[j].name, strlen(fmt_table[j].name))) | |
297 | 189 break; |
408 | 190 if (fmt_table[j].name == NULL) |
361 | 191 goto err_out_parse_error; |
408 | 192 outfmt[i] = fmt_table[j].num; |
297 | 193 outflags[i] = flags; |
299 | 194 ++i; |
408 | 195 sfmt+=strlen(fmt_table[j].name); |
319 | 196 } while ((*(sfmt++) == ',') && --freeslots); |
197 | |
198 if (!freeslots) | |
328 | 199 goto err_out_too_many; |
319 | 200 |
361 | 201 if (*(--sfmt) != '\0') |
202 goto err_out_parse_error; | |
299 | 203 |
297 | 204 return 1; |
328 | 205 err_out_too_many: |
5937 | 206 mp_msg(MSGT_CODECCFG,MSGL_ERR,"too many out..."); |
361 | 207 return 0; |
208 err_out_parse_error: | |
5937 | 209 mp_msg(MSGT_CODECCFG,MSGL_ERR,"parse error"); |
319 | 210 return 0; |
297 | 211 } |
212 | |
303 | 213 static short get_driver(char *s,int audioflag) |
297 | 214 { |
301 | 215 static char *audiodrv[] = { |
1293 | 216 "null", |
301 | 217 "mp3lib", |
218 "pcm", | |
219 "libac3", | |
220 "acm", | |
221 "alaw", | |
222 "msgsm", | |
223 "dshow", | |
401 | 224 "dvdpcm", |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1488
diff
changeset
|
225 "hwac3", |
1828 | 226 "libvorbis", |
1929 | 227 "ffmpeg", |
2415 | 228 "libmad", |
3787 | 229 "msadpcm", |
3400 | 230 "liba52", |
231 "g72x", | |
3787 | 232 "imaadpcm", |
4854
4a6dde59834c
fixed, strengthened, rewrote, and renamed a variety of the ADPCM decoders
melanson
parents:
4676
diff
changeset
|
233 "dk4adpcm", |
4a6dde59834c
fixed, strengthened, rewrote, and renamed a variety of the ADPCM decoders
melanson
parents:
4676
diff
changeset
|
234 "dk3adpcm", |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4301
diff
changeset
|
235 "roqaudio", |
5190
59df6b778d78
Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 video in qt to ffmpeg4 although it's still buggy in decoding
atmos4
parents:
5029
diff
changeset
|
236 "faad", |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6200
diff
changeset
|
237 "realaud", |
6927 | 238 "libdv", |
301 | 239 NULL |
240 }; | |
241 static char *videodrv[] = { | |
1293 | 242 "null", |
301 | 243 "libmpeg2", |
244 "vfw", | |
245 "odivx", | |
246 "dshow", | |
1248 | 247 "ffmpeg", |
1297 | 248 "vfwex", |
1349 | 249 "divx4", |
1488 | 250 "raw", |
5193
abea2deab4d6
MPlayer now has a Microsoft RLE decoder to call its own...only supports
melanson
parents:
5190
diff
changeset
|
251 "msrle", |
2379 | 252 "xanim", |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2681
diff
changeset
|
253 "msvidc", |
3172 | 254 "fli", |
3643
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3408
diff
changeset
|
255 "cinepak", |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3667
diff
changeset
|
256 "qtrle", |
3804
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3798
diff
changeset
|
257 "nuv", |
3969 | 258 "cyuv", |
4227 | 259 "qtsmc", |
4301
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
260 "ducktm1", |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4301
diff
changeset
|
261 "roqvideo", |
4615
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4450
diff
changeset
|
262 "qtrpza", |
4656 | 263 "mpng", |
5029 | 264 "ijpg", |
5235
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5193
diff
changeset
|
265 "huffyuv", |
5263 | 266 "zlib", |
5478 | 267 "mpegpes", |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6200
diff
changeset
|
268 "realvid", |
6506 | 269 "svq1", |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6565
diff
changeset
|
270 "xvid", |
6927 | 271 "libdv", |
301 | 272 NULL |
273 }; | |
274 char **drv=audioflag?audiodrv:videodrv; | |
275 int i; | |
6863 | 276 |
1293 | 277 for(i=0;drv[i];i++) if(!strcmp(s,drv[i])) return i; |
301 | 278 |
1293 | 279 return -1; |
297 | 280 } |
281 | |
328 | 282 static int validate_codec(codecs_t *c, int type) |
319 | 283 { |
5937 | 284 unsigned int i; |
3408 | 285 char *tmp_name = strdup(c->name); |
328 | 286 |
3408 | 287 for (i = 0; i < strlen(tmp_name) && isalnum(tmp_name[i]); i++) |
328 | 288 /* NOTHING */; |
3408 | 289 |
290 if (i < strlen(tmp_name)) { | |
5937 | 291 mp_msg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) name is not valid!\n", c->name); |
328 | 292 return 0; |
293 } | |
3408 | 294 |
328 | 295 if (!c->info) |
3408 | 296 c->info = strdup(c->name); |
297 | |
298 #if 0 | |
328 | 299 if (c->fourcc[0] == 0xffffffff) { |
5937 | 300 mp_msg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) does not have fourcc/format!\n", c->name); |
328 | 301 return 0; |
302 } | |
3408 | 303 |
304 /* XXX fix this: shitty with 'null' codec */ | |
328 | 305 if (!c->driver) { |
5937 | 306 mp_msg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) does not have a driver!\n", c->name); |
328 | 307 return 0; |
308 } | |
3408 | 309 #endif |
310 | |
311 #if 0 | |
328 | 312 #warning codec->driver == 4;... <- ezt nem kellene belehegeszteni... |
313 #warning HOL VANNAK DEFINIALVA???????????? | |
314 if (!c->dll && (c->driver == 4 || | |
315 (c->driver == 2 && type == TYPE_VIDEO))) { | |
5937 | 316 mp_msg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) needs a 'dll'!\n", c->name); |
328 | 317 return 0; |
318 } | |
319 #warning guid.f1 lehet 0? honnan lehet tudni, hogy nem adtak meg? | |
320 // if (!(codec->flags & CODECS_FLAG_AUDIO) && codec->driver == 4) | |
321 | |
322 if (type == TYPE_VIDEO) | |
323 if (c->outfmt[0] == 0xffffffff) { | |
5937 | 324 mp_msg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) needs an 'outfmt'!\n", c->name); |
328 | 325 return 0; |
326 } | |
329 | 327 #endif |
319 | 328 return 1; |
329 } | |
330 | |
331 static int add_comment(char *s, char **d) | |
332 { | |
333 int pos; | |
334 | |
335 if (!*d) | |
336 pos = 0; | |
337 else { | |
338 pos = strlen(*d); | |
339 (*d)[pos++] = '\n'; | |
340 } | |
341 if (!(*d = (char *) realloc(*d, pos + strlen(s) + 1))) { | |
5937 | 342 mp_msg(MSGT_CODECCFG,MSGL_FATAL,"can't allocate mem for comment. "); |
319 | 343 return 0; |
344 } | |
345 strcpy(*d + pos, s); | |
346 return 1; | |
347 } | |
297 | 348 |
361 | 349 static short get_cpuflags(char *s) |
350 { | |
351 static char *flagstr[] = { | |
352 "mmx", | |
353 "sse", | |
354 "3dnow", | |
355 NULL | |
356 }; | |
357 int i; | |
358 short flags = 0; | |
359 | |
360 do { | |
361 for (i = 0; flagstr[i]; i++) | |
362 if (!strncmp(s, flagstr[i], strlen(flagstr[i]))) | |
363 break; | |
364 if (!flagstr[i]) | |
365 goto err_out_parse_error; | |
366 flags |= 1<<i; | |
367 s += strlen(flagstr[i]); | |
368 } while (*(s++) == ','); | |
369 | |
370 if (*(--s) != '\0') | |
371 goto err_out_parse_error; | |
372 | |
373 return flags; | |
374 err_out_parse_error: | |
375 return 0; | |
376 } | |
377 | |
328 | 378 static FILE *fp; |
379 static int line_num = 0; | |
380 static char *line; | |
381 static char *token[MAX_NR_TOKEN]; | |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
382 static int read_nextline = 1; |
328 | 383 |
384 static int get_token(int min, int max) | |
297 | 385 { |
328 | 386 static int line_pos; |
387 int i; | |
388 char c; | |
389 | |
390 if (max >= MAX_NR_TOKEN) { | |
5937 | 391 mp_msg(MSGT_CODECCFG,MSGL_ERR,"get_token(): max >= MAX_NR_TOKEN!"); |
328 | 392 goto out_eof; |
393 } | |
394 | |
395 memset(token, 0x00, sizeof(*token) * max); | |
396 | |
397 if (read_nextline) { | |
398 if (!fgets(line, MAX_LINE_LEN, fp)) | |
399 goto out_eof; | |
400 line_pos = 0; | |
401 ++line_num; | |
402 read_nextline = 0; | |
403 } | |
404 for (i = 0; i < max; i++) { | |
405 while (isspace(line[line_pos])) | |
406 ++line_pos; | |
407 if (line[line_pos] == '\0' || line[line_pos] == '#' || | |
408 line[line_pos] == ';') { | |
409 read_nextline = 1; | |
410 if (i >= min) | |
411 goto out_ok; | |
412 goto out_eol; | |
413 } | |
414 token[i] = line + line_pos; | |
415 c = line[line_pos]; | |
416 if (c == '"' || c == '\'') { | |
417 token[i]++; | |
418 while (line[++line_pos] != c && line[line_pos]) | |
419 /* NOTHING */; | |
420 } else { | |
421 for (/* NOTHING */; !isspace(line[line_pos]) && | |
422 line[line_pos]; line_pos++) | |
423 /* NOTHING */; | |
424 } | |
425 if (!line[line_pos]) { | |
426 read_nextline = 1; | |
427 if (i >= min - 1) | |
428 goto out_ok; | |
429 goto out_eol; | |
430 } | |
431 line[line_pos] = '\0'; | |
432 line_pos++; | |
433 } | |
434 out_ok: | |
435 return i; | |
436 out_eof: | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
437 read_nextline = 1; |
328 | 438 return RET_EOF; |
439 out_eol: | |
440 return RET_EOL; | |
441 } | |
442 | |
443 static codecs_t *video_codecs=NULL; | |
444 static codecs_t *audio_codecs=NULL; | |
445 static int nr_vcodecs = 0; | |
446 static int nr_acodecs = 0; | |
447 | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
448 int parse_codec_cfg(char *cfgfile) |
328 | 449 { |
450 codecs_t *codec = NULL; // current codec | |
451 codecs_t **codecsp = NULL;// points to audio_codecs or to video_codecs | |
335 | 452 char *endptr; // strtoul()... |
328 | 453 int *nr_codecsp; |
454 int codec_type; /* TYPE_VIDEO/TYPE_AUDIO */ | |
297 | 455 int tmp, i; |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
456 |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
457 // in case we call it secont time |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
458 if(video_codecs!=NULL)free(video_codecs); |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
459 else video_codecs=NULL; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
460 |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
461 if(audio_codecs!=NULL)free(audio_codecs); |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
462 else audio_codecs=NULL; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
463 |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
464 nr_vcodecs = 0; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
465 nr_acodecs = 0; |
297 | 466 |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
467 if(cfgfile==NULL)return 0; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
468 |
5937 | 469 mp_msg(MSGT_CODECCFG,MSGL_INFO,"Reading %s: ", cfgfile); |
297 | 470 |
301 | 471 if ((fp = fopen(cfgfile, "r")) == NULL) { |
5937 | 472 mp_msg(MSGT_CODECCFG,MSGL_ERR,"can't open '%s': %s\n", cfgfile, strerror(errno)); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
473 return 0; |
297 | 474 } |
475 | |
301 | 476 if ((line = (char *) malloc(MAX_LINE_LEN + 1)) == NULL) { |
5937 | 477 mp_msg(MSGT_CODECCFG,MSGL_FATAL,"can't get memory for 'line': %s\n", strerror(errno)); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
478 return 0; |
297 | 479 } |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
480 read_nextline = 1; |
297 | 481 |
328 | 482 /* |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
483 * this only catches release lines at the start of |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
484 * codecs.conf, before audiocodecs and videocodecs. |
328 | 485 */ |
486 while ((tmp = get_token(1, 1)) == RET_EOL) | |
487 /* NOTHING */; | |
361 | 488 if (tmp == RET_EOF) |
489 goto out; | |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
490 if (!strcmp(token[0], "release")) { |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
491 if (get_token(1, 2) < 0) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
492 goto err_out_parse_error; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
493 tmp = atoi(token[0]); |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
494 if (tmp < CODEC_CFG_MIN) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
495 goto err_out_release_num; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
496 while ((tmp = get_token(1, 1)) == RET_EOL) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
497 /* NOTHING */; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
498 if (tmp == RET_EOF) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
499 goto out; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
500 } else |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
501 goto err_out_release_num; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
502 |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
503 /* |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
504 * check if the next block starts with 'audiocodec' or |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
505 * with 'videocodec' |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
506 */ |
361 | 507 if (!strcmp(token[0], "audiocodec") || !strcmp(token[0], "videocodec")) |
328 | 508 goto loop_enter; |
361 | 509 goto err_out_parse_error; |
328 | 510 |
319 | 511 while ((tmp = get_token(1, 1)) != RET_EOF) { |
297 | 512 if (tmp == RET_EOL) |
513 continue; | |
328 | 514 if (!strcmp(token[0], "audiocodec") || |
515 !strcmp(token[0], "videocodec")) { | |
516 if (!validate_codec(codec, codec_type)) | |
517 goto err_out_not_valid; | |
518 loop_enter: | |
519 if (*token[0] == 'v') { | |
520 codec_type = TYPE_VIDEO; | |
521 nr_codecsp = &nr_vcodecs; | |
522 codecsp = &video_codecs; | |
523 } else if (*token[0] == 'a') { | |
524 codec_type = TYPE_AUDIO; | |
525 nr_codecsp = &nr_acodecs; | |
526 codecsp = &audio_codecs; | |
361 | 527 #ifdef DEBUG |
328 | 528 } else { |
5937 | 529 mp_msg(MSGT_CODECCFG,MSGL_ERR,"picsba\n"); |
328 | 530 goto err_out; |
361 | 531 #endif |
328 | 532 } |
533 if (!(*codecsp = (codecs_t *) realloc(*codecsp, | |
332 | 534 sizeof(codecs_t) * (*nr_codecsp + 2)))) { |
5937 | 535 mp_msg(MSGT_CODECCFG,MSGL_FATAL,"can't realloc '*codecsp': %s\n", strerror(errno)); |
300 | 536 goto err_out; |
537 } | |
328 | 538 codec=*codecsp + *nr_codecsp; |
539 ++*nr_codecsp; | |
300 | 540 memset(codec,0,sizeof(codecs_t)); |
541 memset(codec->fourcc, 0xff, sizeof(codec->fourcc)); | |
542 memset(codec->outfmt, 0xff, sizeof(codec->outfmt)); | |
4675 | 543 memset(codec->infmt, 0xff, sizeof(codec->infmt)); |
300 | 544 |
319 | 545 if (get_token(1, 1) < 0) |
328 | 546 goto err_out_parse_error; |
547 for (i = 0; i < *nr_codecsp - 1; i++) { | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
548 if(( (*codecsp)[i].name!=NULL) && |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
549 (!strcmp(token[0], (*codecsp)[i].name)) ) { |
5937 | 550 mp_msg(MSGT_CODECCFG,MSGL_ERR,"codec name '%s' isn't unique", token[0]); |
361 | 551 goto err_out_print_linenum; |
319 | 552 } |
553 } | |
328 | 554 if (!(codec->name = strdup(token[0]))) { |
5937 | 555 mp_msg(MSGT_CODECCFG,MSGL_ERR,"can't strdup -> 'name': %s\n", strerror(errno)); |
328 | 556 goto err_out; |
557 } | |
319 | 558 } else if (!strcmp(token[0], "info")) { |
328 | 559 if (codec->info || get_token(1, 1) < 0) |
560 goto err_out_parse_error; | |
561 if (!(codec->info = strdup(token[0]))) { | |
5937 | 562 mp_msg(MSGT_CODECCFG,MSGL_ERR,"can't strdup -> 'info': %s\n", strerror(errno)); |
328 | 563 goto err_out; |
564 } | |
319 | 565 } else if (!strcmp(token[0], "comment")) { |
566 if (get_token(1, 1) < 0) | |
328 | 567 goto err_out_parse_error; |
361 | 568 add_comment(token[0], &codec->comment); |
319 | 569 } else if (!strcmp(token[0], "fourcc")) { |
570 if (get_token(1, 2) < 0) | |
328 | 571 goto err_out_parse_error; |
319 | 572 if (!add_to_fourcc(token[0], token[1], |
300 | 573 codec->fourcc, |
574 codec->fourccmap)) | |
361 | 575 goto err_out_print_linenum; |
319 | 576 } else if (!strcmp(token[0], "format")) { |
577 if (get_token(1, 1) < 0) | |
328 | 578 goto err_out_parse_error; |
319 | 579 if (!add_to_format(token[0], codec->fourcc,codec->fourccmap)) |
361 | 580 goto err_out_print_linenum; |
319 | 581 } else if (!strcmp(token[0], "driver")) { |
582 if (get_token(1, 1) < 0) | |
328 | 583 goto err_out_parse_error; |
1293 | 584 if ((codec->driver = get_driver(token[0],codec_type))<0) |
361 | 585 goto err_out_parse_error; |
319 | 586 } else if (!strcmp(token[0], "dll")) { |
587 if (get_token(1, 1) < 0) | |
328 | 588 goto err_out_parse_error; |
589 if (!(codec->dll = strdup(token[0]))) { | |
5937 | 590 mp_msg(MSGT_CODECCFG,MSGL_ERR,"can't strdup -> 'dll': %s\n", strerror(errno)); |
328 | 591 goto err_out; |
592 } | |
319 | 593 } else if (!strcmp(token[0], "guid")) { |
328 | 594 if (get_token(11, 11) < 0) |
595 goto err_out_parse_error; | |
335 | 596 codec->guid.f1=strtoul(token[0],&endptr,0); |
361 | 597 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
598 *endptr != '\0') | |
335 | 599 goto err_out_parse_error; |
600 codec->guid.f2=strtoul(token[1],&endptr,0); | |
361 | 601 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
602 *endptr != '\0') | |
335 | 603 goto err_out_parse_error; |
604 codec->guid.f3=strtoul(token[2],&endptr,0); | |
361 | 605 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
606 *endptr != '\0') | |
335 | 607 goto err_out_parse_error; |
608 for (i = 0; i < 8; i++) { | |
609 codec->guid.f4[i]=strtoul(token[i + 3],&endptr,0); | |
361 | 610 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
611 *endptr != '\0') | |
328 | 612 goto err_out_parse_error; |
297 | 613 } |
319 | 614 } else if (!strcmp(token[0], "out")) { |
615 if (get_token(1, 2) < 0) | |
328 | 616 goto err_out_parse_error; |
4675 | 617 if (!add_to_inout(token[0], token[1], codec->outfmt, |
300 | 618 codec->outflags)) |
361 | 619 goto err_out_print_linenum; |
4675 | 620 } else if (!strcmp(token[0], "in")) { |
621 if (get_token(1, 2) < 0) | |
622 goto err_out_parse_error; | |
623 if (!add_to_inout(token[0], token[1], codec->infmt, | |
624 codec->inflags)) | |
625 goto err_out_print_linenum; | |
319 | 626 } else if (!strcmp(token[0], "flags")) { |
627 if (get_token(1, 1) < 0) | |
328 | 628 goto err_out_parse_error; |
321 | 629 if (!strcmp(token[0], "seekable")) |
630 codec->flags |= CODECS_FLAG_SEEKABLE; | |
631 else | |
6565 | 632 if (!strcmp(token[0], "align16")) |
633 codec->flags |= CODECS_FLAG_ALIGN16; | |
634 else | |
328 | 635 goto err_out_parse_error; |
319 | 636 } else if (!strcmp(token[0], "status")) { |
637 if (get_token(1, 1) < 0) | |
328 | 638 goto err_out_parse_error; |
332 | 639 if (!strcasecmp(token[0], "working")) |
316 | 640 codec->status = CODECS_STATUS_WORKING; |
332 | 641 else if (!strcasecmp(token[0], "crashing")) |
316 | 642 codec->status = CODECS_STATUS_NOT_WORKING; |
332 | 643 else if (!strcasecmp(token[0], "untested")) |
316 | 644 codec->status = CODECS_STATUS_UNTESTED; |
332 | 645 else if (!strcasecmp(token[0], "buggy")) |
316 | 646 codec->status = CODECS_STATUS_PROBLEMS; |
647 else | |
328 | 648 goto err_out_parse_error; |
361 | 649 } else if (!strcmp(token[0], "cpuflags")) { |
650 if (get_token(1, 1) < 0) | |
651 goto err_out_parse_error; | |
652 if (!(codec->cpuflags = get_cpuflags(token[0]))) | |
653 goto err_out_parse_error; | |
3667
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3643
diff
changeset
|
654 } else if (!strcasecmp(token[0], "priority")) { |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3643
diff
changeset
|
655 if (get_token(1, 1) < 0) |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3643
diff
changeset
|
656 goto err_out_parse_error; |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3643
diff
changeset
|
657 //printf("\n\n!!!cfg-parse: priority %s (%d) found!!!\n\n", token[0], atoi(token[0])); // ::atmos |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3643
diff
changeset
|
658 codec->priority = atoi(token[0]); |
297 | 659 } else |
328 | 660 goto err_out_parse_error; |
297 | 661 } |
328 | 662 if (!validate_codec(codec, codec_type)) |
663 goto err_out_not_valid; | |
5937 | 664 mp_msg(MSGT_CODECCFG,MSGL_INFO,"%d audio & %d video codecs\n", nr_acodecs, nr_vcodecs); |
895 | 665 if(video_codecs) video_codecs[nr_vcodecs].name = NULL; |
666 if(audio_codecs) audio_codecs[nr_acodecs].name = NULL; | |
297 | 667 out: |
668 free(line); | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
669 line=NULL; |
297 | 670 fclose(fp); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
671 return 1; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
672 |
328 | 673 err_out_parse_error: |
5937 | 674 mp_msg(MSGT_CODECCFG,MSGL_ERR,"parse error"); |
361 | 675 err_out_print_linenum: |
297 | 676 PRINT_LINENUM; |
677 err_out: | |
328 | 678 if (audio_codecs) |
679 free(audio_codecs); | |
680 if (video_codecs) | |
681 free(video_codecs); | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
682 video_codecs=NULL; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
683 audio_codecs=NULL; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
684 |
328 | 685 free(line); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
686 line=NULL; |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
687 line_num = 0; |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
688 fclose(fp); |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
689 return 0; |
328 | 690 err_out_not_valid: |
5937 | 691 mp_msg(MSGT_CODECCFG,MSGL_ERR,"codec is not defined correctly"); |
361 | 692 goto err_out_print_linenum; |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
693 err_out_release_num: |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
694 mp_msg(MSGT_CODECCFG,MSGL_ERR,"this codecs.conf is too old, incompatible with this mplayer release!"); |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
695 goto err_out_print_linenum; |
297 | 696 } |
697 | |
332 | 698 codecs_t *find_audio_codec(unsigned int fourcc, unsigned int *fourccmap, |
699 codecs_t *start) | |
328 | 700 { |
332 | 701 return find_codec(fourcc, fourccmap, start, 1); |
328 | 702 } |
703 | |
332 | 704 codecs_t *find_video_codec(unsigned int fourcc, unsigned int *fourccmap, |
705 codecs_t *start) | |
328 | 706 { |
332 | 707 return find_codec(fourcc, fourccmap, start, 0); |
328 | 708 } |
709 | |
332 | 710 codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap, |
711 codecs_t *start, int audioflag) | |
328 | 712 { |
713 int i, j; | |
714 codecs_t *c; | |
715 | |
628 | 716 #if 0 |
332 | 717 if (start) { |
718 for (/* NOTHING */; start->name; start++) { | |
719 for (j = 0; j < CODECS_MAX_FOURCC; j++) { | |
720 if (start->fourcc[j] == fourcc) { | |
721 if (fourccmap) | |
722 *fourccmap = start->fourccmap[j]; | |
723 return start; | |
724 } | |
725 } | |
726 } | |
628 | 727 } else |
728 #endif | |
729 { | |
332 | 730 if (audioflag) { |
731 i = nr_acodecs; | |
732 c = audio_codecs; | |
733 } else { | |
734 i = nr_vcodecs; | |
735 c = video_codecs; | |
736 } | |
895 | 737 if(!i) return NULL; |
332 | 738 for (/* NOTHING */; i--; c++) { |
628 | 739 if(start && c<=start) continue; |
332 | 740 for (j = 0; j < CODECS_MAX_FOURCC; j++) { |
1391 | 741 if (c->fourcc[j]==fourcc || c->driver==0) { |
332 | 742 if (fourccmap) |
743 *fourccmap = c->fourccmap[j]; | |
744 return c; | |
745 } | |
328 | 746 } |
747 } | |
748 } | |
749 return NULL; | |
303 | 750 } |
751 | |
5325
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
752 void codecs_reset_selection(int audioflag){ |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
753 int i; |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
754 codecs_t *c; |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
755 if (audioflag) { |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
756 i = nr_acodecs; |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
757 c = audio_codecs; |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
758 } else { |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
759 i = nr_vcodecs; |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
760 c = video_codecs; |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
761 } |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
762 if(i) |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
763 for (/* NOTHING */; i--; c++) |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
764 c->flags&=(~CODECS_FLAG_SELECTED); |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
765 } |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
766 |
1983 | 767 void list_codecs(int audioflag){ |
2050 | 768 int i; |
1983 | 769 codecs_t *c; |
770 | |
771 if (audioflag) { | |
772 i = nr_acodecs; | |
773 c = audio_codecs; | |
5937 | 774 mp_msg(MSGT_CODECCFG,MSGL_INFO,"ac: afm: status: info: [lib/dll]\n"); |
1983 | 775 } else { |
776 i = nr_vcodecs; | |
777 c = video_codecs; | |
5937 | 778 mp_msg(MSGT_CODECCFG,MSGL_INFO,"vc: vfm: status: info: [lib/dll]\n"); |
1983 | 779 } |
2050 | 780 if(!i) return; |
1983 | 781 for (/* NOTHING */; i--; c++) { |
1984 | 782 char* s="unknown "; |
783 switch(c->status){ | |
784 case CODECS_STATUS_WORKING: s="working ";break; | |
785 case CODECS_STATUS_PROBLEMS: s="problems";break; | |
786 case CODECS_STATUS_NOT_WORKING: s="crashing";break; | |
787 case CODECS_STATUS_UNTESTED: s="untested";break; | |
788 } | |
1983 | 789 if(c->dll) |
5937 | 790 mp_msg(MSGT_CODECCFG,MSGL_INFO,"%-11s%2d %s %s [%s]\n",c->name,c->driver,s,c->info,c->dll); |
1983 | 791 else |
5937 | 792 mp_msg(MSGT_CODECCFG,MSGL_INFO,"%-11s%2d %s %s\n",c->name,c->driver,s,c->info); |
1983 | 793 |
794 } | |
795 | |
796 } | |
797 | |
798 | |
799 | |
607 | 800 #ifdef CODECS2HTML |
801 | |
802 void wrapline(FILE *f2,char *s){ | |
803 int c; | |
804 if(!s){ | |
805 fprintf(f2,"-"); | |
806 return; | |
807 } | |
808 while((c=*s++)){ | |
809 if(c==',') fprintf(f2,"<br>"); else fputc(c,f2); | |
810 } | |
811 } | |
812 | |
813 void parsehtml(FILE *f1,FILE *f2,codecs_t *codec,int section,int dshow){ | |
814 int c,d; | |
815 while((c=fgetc(f1))>=0){ | |
816 if(c!='%'){ | |
817 fputc(c,f2); | |
818 continue; | |
819 } | |
820 d=fgetc(f1); | |
821 | |
822 switch(d){ | |
823 case '.': | |
613 | 824 return; // end of section |
607 | 825 case 'n': |
826 wrapline(f2,codec->name); break; | |
827 case 'i': | |
828 wrapline(f2,codec->info); break; | |
829 case 'c': | |
830 wrapline(f2,codec->comment); break; | |
831 case 'd': | |
832 wrapline(f2,codec->dll); break; | |
833 case 'D': | |
834 fprintf(f2,"%c",codec->driver==dshow?'+':'-'); break; | |
835 case 'F': | |
836 for(d=0;d<CODECS_MAX_FOURCC;d++) | |
1944
4d8123ae7b4b
Fixed vfwex section, null codec and other fourcc issues and improved codecs-in.html usability.
atmos4
parents:
1929
diff
changeset
|
837 if(!d || codec->fourcc[d]!=0xFFFFFFFF) |
4d8123ae7b4b
Fixed vfwex section, null codec and other fourcc issues and improved codecs-in.html usability.
atmos4
parents:
1929
diff
changeset
|
838 fprintf(f2,"%s%.4s",d?"<br>":"",(codec->fourcc[d]==0xFFFFFFFF || codec->fourcc[d]<0x20202020)?!d?"-":"":(char*) &codec->fourcc[d]); |
607 | 839 break; |
840 case 'f': | |
841 for(d=0;d<CODECS_MAX_FOURCC;d++) | |
842 if(codec->fourcc[d]!=0xFFFFFFFF) | |
843 fprintf(f2,"%s0x%X",d?"<br>":"",codec->fourcc[d]); | |
844 break; | |
845 case 'Y': | |
846 for(d=0;d<CODECS_MAX_OUTFMT;d++) | |
847 if(codec->outfmt[d]!=0xFFFFFFFF){ | |
848 for (c=0; fmt_table[c].name; c++) | |
849 if(fmt_table[c].num==codec->outfmt[d]) break; | |
850 if(fmt_table[c].name) | |
851 fprintf(f2,"%s%s",d?"<br>":"",fmt_table[c].name); | |
852 } | |
853 break; | |
854 default: | |
855 fputc(c,f2); | |
856 fputc(d,f2); | |
857 } | |
858 } | |
859 | |
860 } | |
861 | |
862 void skiphtml(FILE *f1){ | |
863 int c,d; | |
864 while((c=fgetc(f1))>=0){ | |
865 if(c!='%'){ | |
866 continue; | |
867 } | |
868 d=fgetc(f1); | |
869 if(d=='.') return; // end of section | |
870 } | |
871 } | |
872 | |
873 int main(void) | |
874 { | |
4027 | 875 codecs_t *cl; |
607 | 876 FILE *f1; |
877 FILE *f2; | |
878 int c,d,i; | |
879 int pos; | |
880 int section=-1; | |
881 int nr_codecs; | |
882 int win32=-1; | |
883 int dshow=-1; | |
1944
4d8123ae7b4b
Fixed vfwex section, null codec and other fourcc issues and improved codecs-in.html usability.
atmos4
parents:
1929
diff
changeset
|
884 int win32ex=-1; |
607 | 885 |
4027 | 886 if (!(nr_codecs = parse_codec_cfg("etc/codecs.conf"))) |
607 | 887 return 0; |
888 | |
889 f1=fopen("DOCS/codecs-in.html","rb"); if(!f1) exit(1); | |
1689 | 890 f2=fopen("DOCS/codecs-status.html","wb"); if(!f2) exit(1); |
607 | 891 |
892 while((c=fgetc(f1))>=0){ | |
893 if(c!='%'){ | |
894 fputc(c,f2); | |
895 continue; | |
896 } | |
897 d=fgetc(f1); | |
898 if(d>='0' && d<='9'){ | |
899 // begin section | |
900 section=d-'0'; | |
901 printf("BEGIN %d\n",section); | |
902 if(section>=5){ | |
903 // audio | |
4027 | 904 cl = audio_codecs; |
607 | 905 nr_codecs = nr_acodecs; |
906 dshow=7;win32=4; | |
907 } else { | |
908 // video | |
4027 | 909 cl = video_codecs; |
607 | 910 nr_codecs = nr_vcodecs; |
1944
4d8123ae7b4b
Fixed vfwex section, null codec and other fourcc issues and improved codecs-in.html usability.
atmos4
parents:
1929
diff
changeset
|
911 dshow=4;win32=2;win32ex=6; |
607 | 912 } |
913 pos=ftell(f1); | |
914 for(i=0;i<nr_codecs;i++){ | |
915 fseek(f1,pos,SEEK_SET); | |
916 switch(section){ | |
917 case 0: | |
918 case 5: | |
919 if(cl[i].status==CODECS_STATUS_WORKING) | |
1944
4d8123ae7b4b
Fixed vfwex section, null codec and other fourcc issues and improved codecs-in.html usability.
atmos4
parents:
1929
diff
changeset
|
920 if(!(cl[i].driver==win32 || cl[i].driver==dshow || cl[i].driver==win32ex)) |
607 | 921 parsehtml(f1,f2,&cl[i],section,dshow); |
922 break; | |
923 case 1: | |
924 case 6: | |
925 if(cl[i].status==CODECS_STATUS_WORKING) | |
1944
4d8123ae7b4b
Fixed vfwex section, null codec and other fourcc issues and improved codecs-in.html usability.
atmos4
parents:
1929
diff
changeset
|
926 if(cl[i].driver==win32 || cl[i].driver==dshow || cl[i].driver==win32ex) |
607 | 927 parsehtml(f1,f2,&cl[i],section,dshow); |
928 break; | |
929 case 2: | |
930 case 7: | |
931 if(cl[i].status==CODECS_STATUS_PROBLEMS) | |
932 parsehtml(f1,f2,&cl[i],section,dshow); | |
933 break; | |
934 case 3: | |
935 case 8: | |
936 if(cl[i].status==CODECS_STATUS_NOT_WORKING) | |
937 parsehtml(f1,f2,&cl[i],section,dshow); | |
938 break; | |
939 case 4: | |
940 case 9: | |
941 if(cl[i].status==CODECS_STATUS_UNTESTED) | |
942 parsehtml(f1,f2,&cl[i],section,dshow); | |
943 break; | |
944 default: | |
945 printf("Warning! unimplemented section: %d\n",section); | |
946 } | |
947 } | |
948 fseek(f1,pos,SEEK_SET); | |
949 skiphtml(f1); | |
950 //void parsehtml(FILE *f1,FILE *f2,codecs_t *codec,int section,int dshow){ | |
951 | |
952 continue; | |
953 } | |
954 fputc(c,f2); | |
955 fputc(d,f2); | |
956 } | |
957 | |
958 fclose(f2); | |
959 fclose(f1); | |
960 return 0; | |
961 } | |
962 | |
963 #endif | |
964 | |
297 | 965 #ifdef TESTING |
966 int main(void) | |
967 { | |
4676 | 968 codecs_t *c; |
328 | 969 int i,j, nr_codecs, state; |
297 | 970 |
4676 | 971 if (!(parse_codec_cfg("etc/codecs.conf"))) |
319 | 972 return 0; |
4676 | 973 if (!video_codecs) |
328 | 974 printf("no videoconfig.\n"); |
4676 | 975 if (!audio_codecs) |
328 | 976 printf("no audioconfig.\n"); |
977 | |
978 printf("videocodecs:\n"); | |
4676 | 979 c = video_codecs; |
328 | 980 nr_codecs = nr_vcodecs; |
981 state = 0; | |
982 next: | |
983 if (c) { | |
4676 | 984 printf("number of %scodecs: %d\n", state==0?"video":"audio", |
985 nr_codecs); | |
328 | 986 for(i=0;i<nr_codecs;i++, c++){ |
4676 | 987 printf("\n============== %scodec %02d ===============\n", |
988 state==0?"video":"audio",i); | |
328 | 989 printf("name='%s'\n",c->name); |
990 printf("info='%s'\n",c->info); | |
991 printf("comment='%s'\n",c->comment); | |
992 printf("dll='%s'\n",c->dll); | |
361 | 993 printf("flags=%X driver=%d status=%d cpuflags=%d\n", |
994 c->flags, c->driver, c->status, c->cpuflags); | |
300 | 995 |
328 | 996 for(j=0;j<CODECS_MAX_FOURCC;j++){ |
997 if(c->fourcc[j]!=0xFFFFFFFF){ | |
361 | 998 printf("fourcc %02d: %08X (%.4s) ===> %08X (%.4s)\n",j,c->fourcc[j],(char *) &c->fourcc[j],c->fourccmap[j],(char *) &c->fourccmap[j]); |
328 | 999 } |
1000 } | |
1001 | |
1002 for(j=0;j<CODECS_MAX_OUTFMT;j++){ | |
1003 if(c->outfmt[j]!=0xFFFFFFFF){ | |
361 | 1004 printf("outfmt %02d: %08X (%.4s) flags: %d\n",j,c->outfmt[j],(char *) &c->outfmt[j],c->outflags[j]); |
328 | 1005 } |
1006 } | |
300 | 1007 |
4676 | 1008 for(j=0;j<CODECS_MAX_INFMT;j++){ |
1009 if(c->infmt[j]!=0xFFFFFFFF){ | |
1010 printf("infmt %02d: %08X (%.4s) flags: %d\n",j,c->infmt[j],(char *) &c->infmt[j],c->inflags[j]); | |
1011 } | |
1012 } | |
1013 | |
328 | 1014 printf("GUID: %08lX %04X %04X",c->guid.f1,c->guid.f2,c->guid.f3); |
1015 for(j=0;j<8;j++) printf(" %02X",c->guid.f4[j]); | |
1016 printf("\n"); | |
300 | 1017 |
328 | 1018 |
1019 } | |
1020 } | |
1021 if (!state) { | |
1022 printf("audiocodecs:\n"); | |
4676 | 1023 c = audio_codecs; |
328 | 1024 nr_codecs = nr_acodecs; |
1025 state = 1; | |
1026 goto next; | |
1027 } | |
297 | 1028 return 0; |
1029 } | |
1030 | |
1031 #endif |