3 * by Szabolcs Berecz <szabi@inf.elte.hu>
6 * to compile test application:
7 * cc -I. -DTESTING -o codec-cfg-test codec-cfg.c mp_msg.o osdep/getch2.o -ltermcap
8 * to compile CODECS2HTML:
9 * gcc -DCODECS2HTML -o codecs2html codec-cfg.c mp_msg.o
11 * TODO: implement informat in CODECS2HTML too
32 #define mp_msg(t, l, m, args...) fprintf(stderr, m, ##args)
34 #define mp_msg(t, l, ...) fprintf(stderr, __VA_ARGS__)
41 #include "libmpdemux/aviheader.h"
43 #include "libmpcodecs/img_format.h"
44 #include "codec-cfg.h"
47 #include "codecs.conf.h"
50 #define PRINT_LINENUM mp_msg(MSGT_CODECCFG,MSGL_ERR," at line %d\n", line_num)
52 #define MAX_NR_TOKEN 16
54 #define MAX_LINE_LEN 1000
62 char * codecs_file
= NULL
;
64 static int add_to_fourcc(char *s
, char *alias
, unsigned int *fourcc
,
70 /* find first unused slot */
71 for (i
= 0; i
< CODECS_MAX_FOURCC
&& fourcc
[i
] != 0xffffffff; i
++)
73 freeslots
= CODECS_MAX_FOURCC
- i
;
75 goto err_out_too_many
;
78 tmp
= mmioFOURCC(s
[0], s
[1], s
[2], s
[3]);
79 for (j
= 0; j
< i
; j
++)
81 goto err_out_duplicated
;
83 map
[i
] = alias
? mmioFOURCC(alias
[0], alias
[1], alias
[2], alias
[3]) : tmp
;
86 } while ((*(s
++) == ',') && --freeslots
);
89 goto err_out_too_many
;
91 goto err_out_parse_error
;
94 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_DuplicateFourcc
);
97 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_TooManyFourccs
);
100 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_ParseError
);
104 static int add_to_format(char *s
, char *alias
,unsigned int *fourcc
, unsigned int *fourccmap
)
109 /* find first unused slot */
110 for (i
= 0; i
< CODECS_MAX_FOURCC
&& fourcc
[i
] != 0xffffffff; i
++)
112 if (i
== CODECS_MAX_FOURCC
) {
113 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_TooManyFourccs
);
117 fourcc
[i
]=strtoul(s
,&endptr
,0);
118 if (*endptr
!= '\0') {
119 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_ParseErrorFIDNotNumber
);
124 fourccmap
[i
]=strtoul(alias
,&endptr
,0);
125 if (*endptr
!= '\0') {
126 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_ParseErrorFIDAliasNotNumber
);
130 fourccmap
[i
]=fourcc
[i
];
132 for (j
= 0; j
< i
; j
++)
133 if (fourcc
[j
] == fourcc
[i
]) {
134 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_DuplicateFID
);
141 static const struct {
143 const unsigned int num
;
145 // note: due to parser deficiencies/simplicity, if one format
146 // name matches the beginning of another, the longer one _must_
147 // come first in this list.
148 {"YV12", IMGFMT_YV12
},
149 {"I420", IMGFMT_I420
},
150 {"IYUV", IMGFMT_IYUV
},
151 {"NV12", IMGFMT_NV12
},
152 {"NV21", IMGFMT_NV21
},
153 {"YVU9", IMGFMT_YVU9
},
154 {"IF09", IMGFMT_IF09
},
155 {"444P", IMGFMT_444P
},
156 {"422P", IMGFMT_422P
},
157 {"411P", IMGFMT_411P
},
158 {"Y800", IMGFMT_Y800
},
161 {"YUY2", IMGFMT_YUY2
},
162 {"UYVY", IMGFMT_UYVY
},
163 {"YVYU", IMGFMT_YVYU
},
165 {"RGB48LE", IMGFMT_RGB48LE
},
166 {"RGB48BE", IMGFMT_RGB48BE
},
167 {"RGB4", IMGFMT_RGB4
},
168 {"RGB8", IMGFMT_RGB8
},
169 {"RGB15", IMGFMT_RGB15
},
170 {"RGB16", IMGFMT_RGB16
},
171 {"RGB24", IMGFMT_RGB24
},
172 {"RGB32", IMGFMT_RGB32
},
173 {"BGR4", IMGFMT_BGR4
},
174 {"BGR8", IMGFMT_BGR8
},
175 {"BGR15", IMGFMT_BGR15
},
176 {"BGR16", IMGFMT_BGR16
},
177 {"BGR24", IMGFMT_BGR24
},
178 {"BGR32", IMGFMT_BGR32
},
179 {"RGB1", IMGFMT_RGB1
},
180 {"BGR1", IMGFMT_BGR1
},
182 {"MPES", IMGFMT_MPEGPES
},
183 {"ZRMJPEGNI", IMGFMT_ZRMJPEGNI
},
184 {"ZRMJPEGIT", IMGFMT_ZRMJPEGIT
},
185 {"ZRMJPEGIB", IMGFMT_ZRMJPEGIB
},
187 {"IDCT_MPEG2",IMGFMT_XVMC_IDCT_MPEG2
},
188 {"MOCO_MPEG2",IMGFMT_XVMC_MOCO_MPEG2
},
190 {"VDPAU_MPEG1",IMGFMT_VDPAU_MPEG1
},
191 {"VDPAU_MPEG2",IMGFMT_VDPAU_MPEG2
},
192 {"VDPAU_H264",IMGFMT_VDPAU_H264
},
193 {"VDPAU_WMV3",IMGFMT_VDPAU_WMV3
},
194 {"VDPAU_VC1",IMGFMT_VDPAU_VC1
},
200 static int add_to_inout(char *sfmt
, char *sflags
, unsigned int *outfmt
,
201 unsigned char *outflags
)
204 static char *flagstr
[] = {
216 for (i
= 0; i
< CODECS_MAX_OUTFMT
&& outfmt
[i
] != 0xffffffff; i
++)
218 freeslots
= CODECS_MAX_OUTFMT
- i
;
220 goto err_out_too_many
;
225 for (j
= 0; flagstr
[j
] != NULL
; j
++)
226 if (!strncmp(sflags
, flagstr
[j
],
229 if (flagstr
[j
] == NULL
)
230 goto err_out_parse_error
;
232 sflags
+=strlen(flagstr
[j
]);
233 } while (*(sflags
++) == ',');
235 if (*(--sflags
) != '\0')
236 goto err_out_parse_error
;
240 for (j
= 0; fmt_table
[j
].name
!= NULL
; j
++)
241 if (!strncmp(sfmt
, fmt_table
[j
].name
, strlen(fmt_table
[j
].name
)))
243 if (fmt_table
[j
].name
== NULL
)
244 goto err_out_parse_error
;
245 outfmt
[i
] = fmt_table
[j
].num
;
248 sfmt
+=strlen(fmt_table
[j
].name
);
249 } while ((*(sfmt
++) == ',') && --freeslots
);
252 goto err_out_too_many
;
254 if (*(--sfmt
) != '\0')
255 goto err_out_parse_error
;
259 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_TooManyOut
);
262 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_ParseError
);
267 static short get_driver(char *s
,int audioflag
)
269 static char *audiodrv
[] = {
295 static char *videodrv
[] = {
325 char **drv
=audioflag
?audiodrv
:videodrv
;
328 for(i
=0;drv
[i
];i
++) if(!strcmp(s
,drv
[i
])) return i
;
334 static int validate_codec(codecs_t
*c
, int type
)
337 char *tmp_name
= c
->name
;
339 for (i
= 0; i
< strlen(tmp_name
) && isalnum(tmp_name
[i
]); i
++)
342 if (i
< strlen(tmp_name
)) {
343 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_InvalidCodecName
, c
->name
);
348 c
->info
= strdup(c
->name
);
351 if (c
->fourcc
[0] == 0xffffffff) {
352 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecLacksFourcc
, c
->name
);
358 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecLacksDriver
, c
->name
);
363 #warning codec->driver == 4;... <- this should not be put in here...
364 #warning Where are they defined ????????????
365 if (!c
->dll
&& (c
->driver
== 4 ||
366 (c
->driver
== 2 && type
== TYPE_VIDEO
))) {
367 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecNeedsDLL
, c
->name
);
370 #warning Can guid.f1 be 0? How does one know that it was not given?
371 // if (!(codec->flags & CODECS_FLAG_AUDIO) && codec->driver == 4)
373 if (type
== TYPE_VIDEO
)
374 if (c
->outfmt
[0] == 0xffffffff) {
375 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecNeedsOutfmt
, c
->name
);
382 static int add_comment(char *s
, char **d
)
392 if (!(*d
= realloc(*d
, pos
+ strlen(s
) + 1))) {
393 mp_msg(MSGT_CODECCFG
,MSGL_FATAL
,MSGTR_CantAllocateComment
);
400 static short get_cpuflags(char *s
)
402 static char *flagstr
[] = {
412 for (i
= 0; flagstr
[i
]; i
++)
413 if (!strncmp(s
, flagstr
[i
], strlen(flagstr
[i
])))
416 goto err_out_parse_error
;
418 s
+= strlen(flagstr
[i
]);
419 } while (*(s
++) == ',');
422 goto err_out_parse_error
;
430 static int line_num
= 0;
432 static char *token
[MAX_NR_TOKEN
];
433 static int read_nextline
= 1;
435 static int get_token(int min
, int max
)
441 if (max
>= MAX_NR_TOKEN
) {
442 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_GetTokenMaxNotLessThanMAX_NR_TOKEN
);
446 memset(token
, 0x00, sizeof(*token
) * max
);
449 if (!fgets(line
, MAX_LINE_LEN
, fp
))
455 for (i
= 0; i
< max
; i
++) {
456 while (isspace(line
[line_pos
]))
458 if (line
[line_pos
] == '\0' || line
[line_pos
] == '#' ||
459 line
[line_pos
] == ';') {
465 token
[i
] = line
+ line_pos
;
467 if (c
== '"' || c
== '\'') {
469 while (line
[++line_pos
] != c
&& line
[line_pos
])
472 for (/* NOTHING */; !isspace(line
[line_pos
]) &&
473 line
[line_pos
]; line_pos
++)
476 if (!line
[line_pos
]) {
482 line
[line_pos
] = '\0';
494 static codecs_t
*video_codecs
=NULL
;
495 static codecs_t
*audio_codecs
=NULL
;
496 static int nr_vcodecs
= 0;
497 static int nr_acodecs
= 0;
499 int parse_codec_cfg(const char *cfgfile
)
501 codecs_t
*codec
= NULL
; // current codec
502 codecs_t
**codecsp
= NULL
;// points to audio_codecs or to video_codecs
503 char *endptr
; // strtoul()...
505 int codec_type
; /* TYPE_VIDEO/TYPE_AUDIO */
508 // in case we call it a second time
509 codecs_uninit_free();
518 video_codecs
= builtin_video_codecs
;
519 audio_codecs
= builtin_audio_codecs
;
520 nr_vcodecs
= sizeof(builtin_video_codecs
)/sizeof(codecs_t
);
521 nr_acodecs
= sizeof(builtin_audio_codecs
)/sizeof(codecs_t
);
526 mp_msg(MSGT_CODECCFG
,MSGL_V
,MSGTR_ReadingFile
, cfgfile
);
528 if ((fp
= fopen(cfgfile
, "r")) == NULL
) {
529 mp_msg(MSGT_CODECCFG
,MSGL_V
,MSGTR_CantOpenFileError
, cfgfile
, strerror(errno
));
533 if ((line
= malloc(MAX_LINE_LEN
+ 1)) == NULL
) {
534 mp_msg(MSGT_CODECCFG
,MSGL_FATAL
,MSGTR_CantGetMemoryForLine
, strerror(errno
));
540 * this only catches release lines at the start of
541 * codecs.conf, before audiocodecs and videocodecs.
543 while ((tmp
= get_token(1, 1)) == RET_EOL
)
547 if (!strcmp(token
[0], "release")) {
548 if (get_token(1, 2) < 0)
549 goto err_out_parse_error
;
550 tmp
= atoi(token
[0]);
551 if (tmp
< CODEC_CFG_MIN
)
552 goto err_out_release_num
;
553 while ((tmp
= get_token(1, 1)) == RET_EOL
)
558 goto err_out_release_num
;
561 * check if the next block starts with 'audiocodec' or
564 if (!strcmp(token
[0], "audiocodec") || !strcmp(token
[0], "videocodec"))
566 goto err_out_parse_error
;
568 while ((tmp
= get_token(1, 1)) != RET_EOF
) {
571 if (!strcmp(token
[0], "audiocodec") ||
572 !strcmp(token
[0], "videocodec")) {
573 if (!validate_codec(codec
, codec_type
))
574 goto err_out_not_valid
;
576 if (*token
[0] == 'v') {
577 codec_type
= TYPE_VIDEO
;
578 nr_codecsp
= &nr_vcodecs
;
579 codecsp
= &video_codecs
;
580 } else if (*token
[0] == 'a') {
581 codec_type
= TYPE_AUDIO
;
582 nr_codecsp
= &nr_acodecs
;
583 codecsp
= &audio_codecs
;
586 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,"picsba\n");
590 if (!(*codecsp
= realloc(*codecsp
,
591 sizeof(codecs_t
) * (*nr_codecsp
+ 2)))) {
592 mp_msg(MSGT_CODECCFG
,MSGL_FATAL
,MSGTR_CantReallocCodecsp
, strerror(errno
));
595 codec
=*codecsp
+ *nr_codecsp
;
597 memset(codec
,0,sizeof(codecs_t
));
598 memset(codec
->fourcc
, 0xff, sizeof(codec
->fourcc
));
599 memset(codec
->outfmt
, 0xff, sizeof(codec
->outfmt
));
600 memset(codec
->infmt
, 0xff, sizeof(codec
->infmt
));
602 if (get_token(1, 1) < 0)
603 goto err_out_parse_error
;
604 for (i
= 0; i
< *nr_codecsp
- 1; i
++) {
605 if(( (*codecsp
)[i
].name
!=NULL
) &&
606 (!strcmp(token
[0], (*codecsp
)[i
].name
)) ) {
607 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecNameNotUnique
, token
[0]);
608 goto err_out_print_linenum
;
611 if (!(codec
->name
= strdup(token
[0]))) {
612 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CantStrdupName
, strerror(errno
));
615 } else if (!strcmp(token
[0], "info")) {
616 if (codec
->info
|| get_token(1, 1) < 0)
617 goto err_out_parse_error
;
618 if (!(codec
->info
= strdup(token
[0]))) {
619 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CantStrdupInfo
, strerror(errno
));
622 } else if (!strcmp(token
[0], "comment")) {
623 if (get_token(1, 1) < 0)
624 goto err_out_parse_error
;
625 add_comment(token
[0], &codec
->comment
);
626 } else if (!strcmp(token
[0], "fourcc")) {
627 if (get_token(1, 2) < 0)
628 goto err_out_parse_error
;
629 if (!add_to_fourcc(token
[0], token
[1],
632 goto err_out_print_linenum
;
633 } else if (!strcmp(token
[0], "format")) {
634 if (get_token(1, 2) < 0)
635 goto err_out_parse_error
;
636 if (!add_to_format(token
[0], token
[1],
637 codec
->fourcc
,codec
->fourccmap
))
638 goto err_out_print_linenum
;
639 } else if (!strcmp(token
[0], "driver")) {
640 if (get_token(1, 1) < 0)
641 goto err_out_parse_error
;
642 if (!(codec
->drv
= strdup(token
[0]))) {
643 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CantStrdupDriver
, strerror(errno
));
646 } else if (!strcmp(token
[0], "dll")) {
647 if (get_token(1, 1) < 0)
648 goto err_out_parse_error
;
649 if (!(codec
->dll
= strdup(token
[0]))) {
650 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CantStrdupDLL
, strerror(errno
));
653 } else if (!strcmp(token
[0], "guid")) {
654 if (get_token(11, 11) < 0)
655 goto err_out_parse_error
;
656 codec
->guid
.f1
=strtoul(token
[0],&endptr
,0);
657 if ((*endptr
!= ',' || *(endptr
+ 1) != '\0') &&
659 goto err_out_parse_error
;
660 codec
->guid
.f2
=strtoul(token
[1],&endptr
,0);
661 if ((*endptr
!= ',' || *(endptr
+ 1) != '\0') &&
663 goto err_out_parse_error
;
664 codec
->guid
.f3
=strtoul(token
[2],&endptr
,0);
665 if ((*endptr
!= ',' || *(endptr
+ 1) != '\0') &&
667 goto err_out_parse_error
;
668 for (i
= 0; i
< 8; i
++) {
669 codec
->guid
.f4
[i
]=strtoul(token
[i
+ 3],&endptr
,0);
670 if ((*endptr
!= ',' || *(endptr
+ 1) != '\0') &&
672 goto err_out_parse_error
;
674 } else if (!strcmp(token
[0], "out")) {
675 if (get_token(1, 2) < 0)
676 goto err_out_parse_error
;
677 if (!add_to_inout(token
[0], token
[1], codec
->outfmt
,
679 goto err_out_print_linenum
;
680 } else if (!strcmp(token
[0], "in")) {
681 if (get_token(1, 2) < 0)
682 goto err_out_parse_error
;
683 if (!add_to_inout(token
[0], token
[1], codec
->infmt
,
685 goto err_out_print_linenum
;
686 } else if (!strcmp(token
[0], "flags")) {
687 if (get_token(1, 1) < 0)
688 goto err_out_parse_error
;
689 if (!strcmp(token
[0], "seekable"))
690 codec
->flags
|= CODECS_FLAG_SEEKABLE
;
692 if (!strcmp(token
[0], "align16"))
693 codec
->flags
|= CODECS_FLAG_ALIGN16
;
695 goto err_out_parse_error
;
696 } else if (!strcmp(token
[0], "status")) {
697 if (get_token(1, 1) < 0)
698 goto err_out_parse_error
;
699 if (!strcasecmp(token
[0], "working"))
700 codec
->status
= CODECS_STATUS_WORKING
;
701 else if (!strcasecmp(token
[0], "crashing"))
702 codec
->status
= CODECS_STATUS_NOT_WORKING
;
703 else if (!strcasecmp(token
[0], "untested"))
704 codec
->status
= CODECS_STATUS_UNTESTED
;
705 else if (!strcasecmp(token
[0], "buggy"))
706 codec
->status
= CODECS_STATUS_PROBLEMS
;
708 goto err_out_parse_error
;
709 } else if (!strcmp(token
[0], "cpuflags")) {
710 if (get_token(1, 1) < 0)
711 goto err_out_parse_error
;
712 if (!(codec
->cpuflags
= get_cpuflags(token
[0])))
713 goto err_out_parse_error
;
715 goto err_out_parse_error
;
717 if (!validate_codec(codec
, codec_type
))
718 goto err_out_not_valid
;
719 mp_msg(MSGT_CODECCFG
,MSGL_INFO
,MSGTR_AudioVideoCodecTotals
, nr_acodecs
, nr_vcodecs
);
720 if(video_codecs
) video_codecs
[nr_vcodecs
].name
= NULL
;
721 if(audio_codecs
) audio_codecs
[nr_acodecs
].name
= NULL
;
729 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_ParseError
);
730 err_out_print_linenum
:
733 codecs_uninit_free();
741 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecDefinitionIncorrect
);
742 goto err_out_print_linenum
;
744 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_OutdatedCodecsConf
);
745 goto err_out_print_linenum
;
748 static void codecs_free(codecs_t
* codecs
,int count
) {
750 for ( i
= 0; i
< count
; i
++)
751 if ( codecs
[i
].name
) {
753 free(codecs
[i
].name
);
755 free(codecs
[i
].info
);
756 if( codecs
[i
].comment
)
757 free(codecs
[i
].comment
);
767 void codecs_uninit_free(void) {
769 codecs_free(video_codecs
,nr_vcodecs
);
772 codecs_free(audio_codecs
,nr_acodecs
);
776 codecs_t
*find_audio_codec(unsigned int fourcc
, unsigned int *fourccmap
,
777 codecs_t
*start
, int force
)
779 return find_codec(fourcc
, fourccmap
, start
, 1, force
);
782 codecs_t
*find_video_codec(unsigned int fourcc
, unsigned int *fourccmap
,
783 codecs_t
*start
, int force
)
785 return find_codec(fourcc
, fourccmap
, start
, 0, force
);
788 codecs_t
* find_codec(unsigned int fourcc
,unsigned int *fourccmap
,
789 codecs_t
*start
, int audioflag
, int force
)
796 for (/* NOTHING */; start
->name
; start
++) {
797 for (j
= 0; j
< CODECS_MAX_FOURCC
; j
++) {
798 if (start
->fourcc
[j
] == fourcc
) {
800 *fourccmap
= start
->fourccmap
[j
];
816 for (/* NOTHING */; i
--; c
++) {
817 if(start
&& c
<=start
) continue;
818 for (j
= 0; j
< CODECS_MAX_FOURCC
; j
++) {
819 // FIXME: do NOT hardwire 'null' name here:
820 if (c
->fourcc
[j
]==fourcc
|| !strcmp(c
->drv
,"null")) {
822 *fourccmap
= c
->fourccmap
[j
];
832 void stringset_init(stringset_t
*set
) {
833 *set
= calloc(1, sizeof(char *));
836 void stringset_free(stringset_t
*set
) {
838 while ((*set
)[count
]) free((*set
)[count
++]);
843 void stringset_add(stringset_t
*set
, const char *str
) {
845 while ((*set
)[count
]) count
++;
847 *set
= realloc(*set
, sizeof(char *) * (count
+ 1));
848 (*set
)[count
- 1] = strdup(str
);
849 (*set
)[count
] = NULL
;
852 int stringset_test(stringset_t
*set
, const char *str
) {
854 for (s
= *set
; *s
; s
++)
855 if (strcmp(*s
, str
) == 0)
860 void list_codecs(int audioflag
){
867 mp_msg(MSGT_CODECCFG
,MSGL_INFO
,"ac: afm: status: info: [lib/dll]\n");
871 mp_msg(MSGT_CODECCFG
,MSGL_INFO
,"vc: vfm: status: info: [lib/dll]\n");
874 for (/* NOTHING */; i
--; c
++) {
877 case CODECS_STATUS_WORKING
: s
="working ";break;
878 case CODECS_STATUS_PROBLEMS
: s
="problems";break;
879 case CODECS_STATUS_NOT_WORKING
: s
="crashing";break;
880 case CODECS_STATUS_UNTESTED
: s
="untested";break;
883 mp_msg(MSGT_CODECCFG
,MSGL_INFO
,"%-11s %-9s %s %s [%s]\n",c
->name
,c
->drv
,s
,c
->info
,c
->dll
);
885 mp_msg(MSGT_CODECCFG
,MSGL_INFO
,"%-11s %-9s %s %s\n",c
->name
,c
->drv
,s
,c
->info
);
894 void wrapline(FILE *f2
,char *s
){
901 if(c
==',') fprintf(f2
,"<br>"); else fputc(c
,f2
);
905 void parsehtml(FILE *f1
,FILE *f2
,codecs_t
*codec
,int section
,int dshow
){
907 while((c
=fgetc(f1
))>=0){
916 return; // end of section
918 wrapline(f2
,codec
->name
); break;
920 wrapline(f2
,codec
->info
); break;
922 wrapline(f2
,codec
->comment
); break;
924 wrapline(f2
,codec
->dll
); break;
926 fprintf(f2
,"%c",!strcmp(codec
->drv
,"dshow")?'+':'-'); break;
928 for(d
=0;d
<CODECS_MAX_FOURCC
;d
++)
929 if(!d
|| codec
->fourcc
[d
]!=0xFFFFFFFF)
930 fprintf(f2
,"%s%.4s",d
?"<br>":"",(codec
->fourcc
[d
]==0xFFFFFFFF || codec
->fourcc
[d
]<0x20202020)?!d
?"-":"":(char*) &codec
->fourcc
[d
]);
933 for(d
=0;d
<CODECS_MAX_FOURCC
;d
++)
934 if(codec
->fourcc
[d
]!=0xFFFFFFFF)
935 fprintf(f2
,"%s0x%X",d
?"<br>":"",codec
->fourcc
[d
]);
938 for(d
=0;d
<CODECS_MAX_OUTFMT
;d
++)
939 if(codec
->outfmt
[d
]!=0xFFFFFFFF){
940 for (c
=0; fmt_table
[c
].name
; c
++)
941 if(fmt_table
[c
].num
==codec
->outfmt
[d
]) break;
942 if(fmt_table
[c
].name
)
943 fprintf(f2
,"%s%s",d
?"<br>":"",fmt_table
[c
].name
);
954 void skiphtml(FILE *f1
){
956 while((c
=fgetc(f1
))>=0){
961 if(d
=='.') return; // end of section
965 static void print_int_array(const unsigned int* a
, int size
)
970 printf("%d%s", *a
++, size
?", ":"");
972 printf("0x%X%s", *a
++, size
?", ":"");
976 static void print_char_array(const unsigned char* a
, int size
)
981 printf("%d%s", *a
++, size
?", ":"");
983 printf("0x%02x%s", *a
++, size
?", ":"");
987 static void print_string(const char* s
)
989 if (!s
) printf("NULL");
990 else printf("\"%s\"", s
);
993 int main(int argc
, char* argv
[])
1007 * Take path to codecs.conf from command line, or fall back on
1010 if (!(nr_codecs
= parse_codec_cfg((argc
>1)?argv
[1]:"etc/codecs.conf")))
1019 nm
[0] = "builtin_video_codecs";
1020 cod
[0] = video_codecs
;
1023 nm
[1] = "builtin_audio_codecs";
1024 cod
[1] = audio_codecs
;
1027 printf("/* GENERATED FROM %s, DO NOT EDIT! */\n\n",argv
[1]);
1028 printf("#include <stddef.h>\n",argv
[1]);
1029 printf("#include \"codec-cfg.h\"\n\n",argv
[1]);
1031 for (i
=0; i
<2; i
++) {
1032 printf("const codecs_t %s[] = {\n", nm
[i
]);
1033 for (j
= 0; j
< nr
[i
]; j
++) {
1036 print_int_array(cod
[i
][j
].fourcc
, CODECS_MAX_FOURCC
);
1037 printf(", /* fourcc */\n");
1039 print_int_array(cod
[i
][j
].fourccmap
, CODECS_MAX_FOURCC
);
1040 printf(", /* fourccmap */\n");
1042 print_int_array(cod
[i
][j
].outfmt
, CODECS_MAX_OUTFMT
);
1043 printf(", /* outfmt */\n");
1045 print_char_array(cod
[i
][j
].outflags
, CODECS_MAX_OUTFMT
);
1046 printf(", /* outflags */\n");
1048 print_int_array(cod
[i
][j
].infmt
, CODECS_MAX_INFMT
);
1049 printf(", /* infmt */\n");
1051 print_char_array(cod
[i
][j
].inflags
, CODECS_MAX_INFMT
);
1052 printf(", /* inflags */\n");
1054 print_string(cod
[i
][j
].name
); printf(", /* name */\n");
1055 print_string(cod
[i
][j
].info
); printf(", /* info */\n");
1056 print_string(cod
[i
][j
].comment
); printf(", /* comment */\n");
1057 print_string(cod
[i
][j
].dll
); printf(", /* dll */\n");
1058 print_string(cod
[i
][j
].drv
); printf(", /* drv */\n");
1060 printf("{ 0x%08lx, %hu, %hu,",
1064 print_char_array(cod
[i
][j
].guid
.f4
, sizeof(cod
[i
][j
].guid
.f4
));
1065 printf(" }, /* GUID */\n");
1066 printf("%hd /* flags */, %hd /* status */, %hd /* cpuflags */ }\n",
1069 cod
[i
][j
].cpuflags
);
1070 if (j
< nr
[i
]) printf(",\n");
1077 f1
=fopen("DOCS/tech/codecs-in.html","rb"); if(!f1
) exit(1);
1078 f2
=fopen("DOCS/codecs-status.html","wb"); if(!f2
) exit(1);
1080 while((c
=fgetc(f1
))>=0){
1086 if(d
>='0' && d
<='9'){
1089 //printf("BEGIN %d\n",section);
1093 nr_codecs
= nr_acodecs
;
1098 nr_codecs
= nr_vcodecs
;
1099 dshow
=4;win32
=2;win32ex
=6;
1102 for(i
=0;i
<nr_codecs
;i
++){
1103 fseek(f1
,pos
,SEEK_SET
);
1107 if(cl
[i
].status
==CODECS_STATUS_WORKING
)
1108 // if(!(!strcmp(cl[i].drv,"vfw") || !strcmp(cl[i].drv,"dshow") || !strcmp(cl[i].drv,"vfwex") || !strcmp(cl[i].drv,"acm")))
1109 parsehtml(f1
,f2
,&cl
[i
],section
,dshow
);
1114 if(cl
[i
].status
==CODECS_STATUS_WORKING
)
1115 if((!strcmp(cl
[i
].drv
,"vfw") || !strcmp(cl
[i
].drv
,"dshow") || !strcmp(cl
[i
].drv
,"vfwex") || !strcmp(cl
[i
].drv
,"acm")))
1116 parsehtml(f1
,f2
,&cl
[i
],section
,dshow
);
1121 if(cl
[i
].status
==CODECS_STATUS_PROBLEMS
)
1122 parsehtml(f1
,f2
,&cl
[i
],section
,dshow
);
1126 if(cl
[i
].status
==CODECS_STATUS_NOT_WORKING
)
1127 parsehtml(f1
,f2
,&cl
[i
],section
,dshow
);
1131 if(cl
[i
].status
==CODECS_STATUS_UNTESTED
)
1132 parsehtml(f1
,f2
,&cl
[i
],section
,dshow
);
1135 printf("Warning! unimplemented section: %d\n",section
);
1138 fseek(f1
,pos
,SEEK_SET
);
1140 //void parsehtml(FILE *f1,FILE *f2,codecs_t *codec,int section,int dshow){
1159 int i
,j
, nr_codecs
, state
;
1161 if (!(parse_codec_cfg("etc/codecs.conf")))
1164 printf("no videoconfig.\n");
1166 printf("no audioconfig.\n");
1168 printf("videocodecs:\n");
1170 nr_codecs
= nr_vcodecs
;
1174 printf("number of %scodecs: %d\n", state
==0?"video":"audio",
1176 for(i
=0;i
<nr_codecs
;i
++, c
++){
1177 printf("\n============== %scodec %02d ===============\n",
1178 state
==0?"video":"audio",i
);
1179 printf("name='%s'\n",c
->name
);
1180 printf("info='%s'\n",c
->info
);
1181 printf("comment='%s'\n",c
->comment
);
1182 printf("dll='%s'\n",c
->dll
);
1183 /* printf("flags=%X driver=%d status=%d cpuflags=%d\n",
1184 c->flags, c->driver, c->status, c->cpuflags); */
1185 printf("flags=%X status=%d cpuflags=%d\n",
1186 c
->flags
, c
->status
, c
->cpuflags
);
1188 for(j
=0;j
<CODECS_MAX_FOURCC
;j
++){
1189 if(c
->fourcc
[j
]!=0xFFFFFFFF){
1190 printf("fourcc %02d: %08X (%.4s) ===> %08X (%.4s)\n",j
,c
->fourcc
[j
],(char *) &c
->fourcc
[j
],c
->fourccmap
[j
],(char *) &c
->fourccmap
[j
]);
1194 for(j
=0;j
<CODECS_MAX_OUTFMT
;j
++){
1195 if(c
->outfmt
[j
]!=0xFFFFFFFF){
1196 printf("outfmt %02d: %08X (%.4s) flags: %d\n",j
,c
->outfmt
[j
],(char *) &c
->outfmt
[j
],c
->outflags
[j
]);
1200 for(j
=0;j
<CODECS_MAX_INFMT
;j
++){
1201 if(c
->infmt
[j
]!=0xFFFFFFFF){
1202 printf("infmt %02d: %08X (%.4s) flags: %d\n",j
,c
->infmt
[j
],(char *) &c
->infmt
[j
],c
->inflags
[j
]);
1206 printf("GUID: %08lX %04X %04X",c
->guid
.f1
,c
->guid
.f2
,c
->guid
.f3
);
1207 for(j
=0;j
<8;j
++) printf(" %02X",c
->guid
.f4
[j
]);
1214 printf("audiocodecs:\n");
1216 nr_codecs
= nr_acodecs
;