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