3 * by Szabolcs Berecz <szabi@inf.elte.hu>
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
9 * TODO: implement informat in CODECS2HTML too
32 #include "libmpdemux/aviheader.h"
34 #include "libvo/img_format.h"
35 #include "codec-cfg.h"
38 #include "codecs.conf.h"
41 #define PRINT_LINENUM mp_msg(MSGT_CODECCFG,MSGL_ERR," at line %d\n", line_num)
43 #define MAX_NR_TOKEN 16
45 #define MAX_LINE_LEN 1000
53 char * codecs_file
= NULL
;
55 static int add_to_fourcc(char *s
, char *alias
, unsigned int *fourcc
,
61 /* find first unused slot */
62 for (i
= 0; i
< CODECS_MAX_FOURCC
&& fourcc
[i
] != 0xffffffff; i
++)
64 freeslots
= CODECS_MAX_FOURCC
- i
;
66 goto err_out_too_many
;
69 tmp
= mmioFOURCC(s
[0], s
[1], s
[2], s
[3]);
70 for (j
= 0; j
< i
; j
++)
72 goto err_out_duplicated
;
74 map
[i
] = alias
? mmioFOURCC(alias
[0], alias
[1], alias
[2], alias
[3]) : tmp
;
77 } while ((*(s
++) == ',') && --freeslots
);
80 goto err_out_too_many
;
82 goto err_out_parse_error
;
85 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_DuplicateFourcc
);
88 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_TooManyFourccs
);
91 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_ParseError
);
95 static int add_to_format(char *s
, char *alias
,unsigned int *fourcc
, unsigned int *fourccmap
)
100 /* find first unused slot */
101 for (i
= 0; i
< CODECS_MAX_FOURCC
&& fourcc
[i
] != 0xffffffff; i
++)
103 if (i
== CODECS_MAX_FOURCC
) {
104 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_TooManyFourccs
);
108 fourcc
[i
]=strtoul(s
,&endptr
,0);
109 if (*endptr
!= '\0') {
110 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_ParseErrorFIDNotNumber
);
115 fourccmap
[i
]=strtoul(alias
,&endptr
,0);
116 if (*endptr
!= '\0') {
117 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_ParseErrorFIDAliasNotNumber
);
121 fourccmap
[i
]=fourcc
[i
];
123 for (j
= 0; j
< i
; j
++)
124 if (fourcc
[j
] == fourcc
[i
]) {
125 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_DuplicateFID
);
134 const unsigned int num
;
136 {"YV12", IMGFMT_YV12
},
137 {"I420", IMGFMT_I420
},
138 {"IYUV", IMGFMT_IYUV
},
139 {"NV12", IMGFMT_NV12
},
140 {"NV21", IMGFMT_NV21
},
141 {"YVU9", IMGFMT_YVU9
},
142 {"IF09", IMGFMT_IF09
},
143 {"444P", IMGFMT_444P
},
144 {"422P", IMGFMT_422P
},
145 {"411P", IMGFMT_411P
},
147 {"YUY2", IMGFMT_YUY2
},
148 {"UYVY", IMGFMT_UYVY
},
149 {"YVYU", IMGFMT_YVYU
},
151 {"RGB4", IMGFMT_RGB
|4},
152 {"RGB8", IMGFMT_RGB
|8},
153 {"RGB15", IMGFMT_RGB
|15},
154 {"RGB16", IMGFMT_RGB
|16},
155 {"RGB24", IMGFMT_RGB
|24},
156 {"RGB32", IMGFMT_RGB
|32},
157 {"BGR4", IMGFMT_BGR
|4},
158 {"BGR8", IMGFMT_BGR
|8},
159 {"BGR15", IMGFMT_BGR
|15},
160 {"BGR16", IMGFMT_BGR
|16},
161 {"BGR24", IMGFMT_BGR
|24},
162 {"BGR32", IMGFMT_BGR
|32},
163 {"RGB1", IMGFMT_RGB
|1},
164 {"BGR1", IMGFMT_BGR
|1},
166 {"MPES", IMGFMT_MPEGPES
},
167 {"ZRMJPEGNI", IMGFMT_ZRMJPEGNI
},
168 {"ZRMJPEGIT", IMGFMT_ZRMJPEGIT
},
169 {"ZRMJPEGIB", IMGFMT_ZRMJPEGIB
},
171 {"IDCT_MPEG2",IMGFMT_XVMC_IDCT_MPEG2
},
172 {"MOCO_MPEG2",IMGFMT_XVMC_MOCO_MPEG2
},
178 static int add_to_inout(char *sfmt
, char *sflags
, unsigned int *outfmt
,
179 unsigned char *outflags
)
182 static char *flagstr
[] = {
194 for (i
= 0; i
< CODECS_MAX_OUTFMT
&& outfmt
[i
] != 0xffffffff; i
++)
196 freeslots
= CODECS_MAX_OUTFMT
- i
;
198 goto err_out_too_many
;
203 for (j
= 0; flagstr
[j
] != NULL
; j
++)
204 if (!strncmp(sflags
, flagstr
[j
],
207 if (flagstr
[j
] == NULL
)
208 goto err_out_parse_error
;
210 sflags
+=strlen(flagstr
[j
]);
211 } while (*(sflags
++) == ',');
213 if (*(--sflags
) != '\0')
214 goto err_out_parse_error
;
218 for (j
= 0; fmt_table
[j
].name
!= NULL
; j
++)
219 if (!strncmp(sfmt
, fmt_table
[j
].name
, strlen(fmt_table
[j
].name
)))
221 if (fmt_table
[j
].name
== NULL
)
222 goto err_out_parse_error
;
223 outfmt
[i
] = fmt_table
[j
].num
;
226 sfmt
+=strlen(fmt_table
[j
].name
);
227 } while ((*(sfmt
++) == ',') && --freeslots
);
230 goto err_out_too_many
;
232 if (*(--sfmt
) != '\0')
233 goto err_out_parse_error
;
237 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_TooManyOut
);
240 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_ParseError
);
245 static short get_driver(char *s
,int audioflag
)
247 static char *audiodrv
[] = {
273 static char *videodrv
[] = {
305 char **drv
=audioflag
?audiodrv
:videodrv
;
308 for(i
=0;drv
[i
];i
++) if(!strcmp(s
,drv
[i
])) return i
;
314 static int validate_codec(codecs_t
*c
, int type
)
317 char *tmp_name
= c
->name
;
319 for (i
= 0; i
< strlen(tmp_name
) && isalnum(tmp_name
[i
]); i
++)
322 if (i
< strlen(tmp_name
)) {
323 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_InvalidCodecName
, c
->name
);
328 c
->info
= strdup(c
->name
);
331 if (c
->fourcc
[0] == 0xffffffff) {
332 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecLacksFourcc
, c
->name
);
338 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecLacksDriver
, c
->name
);
343 #warning codec->driver == 4;... <- ezt nem kellene belehegeszteni...
344 #warning HOL VANNAK DEFINIALVA????????????
345 if (!c
->dll
&& (c
->driver
== 4 ||
346 (c
->driver
== 2 && type
== TYPE_VIDEO
))) {
347 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecNeedsDLL
, c
->name
);
350 #warning guid.f1 lehet 0? honnan lehet tudni, hogy nem adtak meg?
351 // if (!(codec->flags & CODECS_FLAG_AUDIO) && codec->driver == 4)
353 if (type
== TYPE_VIDEO
)
354 if (c
->outfmt
[0] == 0xffffffff) {
355 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecNeedsOutfmt
, c
->name
);
362 static int add_comment(char *s
, char **d
)
372 if (!(*d
= (char *) realloc(*d
, pos
+ strlen(s
) + 1))) {
373 mp_msg(MSGT_CODECCFG
,MSGL_FATAL
,MSGTR_CantAllocateComment
);
380 static short get_cpuflags(char *s
)
382 static char *flagstr
[] = {
392 for (i
= 0; flagstr
[i
]; i
++)
393 if (!strncmp(s
, flagstr
[i
], strlen(flagstr
[i
])))
396 goto err_out_parse_error
;
398 s
+= strlen(flagstr
[i
]);
399 } while (*(s
++) == ',');
402 goto err_out_parse_error
;
410 static int line_num
= 0;
412 static char *token
[MAX_NR_TOKEN
];
413 static int read_nextline
= 1;
415 static int get_token(int min
, int max
)
421 if (max
>= MAX_NR_TOKEN
) {
422 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_GetTokenMaxNotLessThanMAX_NR_TOKEN
);
426 memset(token
, 0x00, sizeof(*token
) * max
);
429 if (!fgets(line
, MAX_LINE_LEN
, fp
))
435 for (i
= 0; i
< max
; i
++) {
436 while (isspace(line
[line_pos
]))
438 if (line
[line_pos
] == '\0' || line
[line_pos
] == '#' ||
439 line
[line_pos
] == ';') {
445 token
[i
] = line
+ line_pos
;
447 if (c
== '"' || c
== '\'') {
449 while (line
[++line_pos
] != c
&& line
[line_pos
])
452 for (/* NOTHING */; !isspace(line
[line_pos
]) &&
453 line
[line_pos
]; line_pos
++)
456 if (!line
[line_pos
]) {
462 line
[line_pos
] = '\0';
474 static codecs_t
*video_codecs
=NULL
;
475 static codecs_t
*audio_codecs
=NULL
;
476 static int nr_vcodecs
= 0;
477 static int nr_acodecs
= 0;
479 int parse_codec_cfg(char *cfgfile
)
481 codecs_t
*codec
= NULL
; // current codec
482 codecs_t
**codecsp
= NULL
;// points to audio_codecs or to video_codecs
483 char *endptr
; // strtoul()...
485 int codec_type
; /* TYPE_VIDEO/TYPE_AUDIO */
488 // in case we call it a second time
489 codecs_uninit_free();
498 video_codecs
= builtin_video_codecs
;
499 audio_codecs
= builtin_audio_codecs
;
500 nr_vcodecs
= sizeof(builtin_video_codecs
)/sizeof(codecs_t
);
501 nr_acodecs
= sizeof(builtin_audio_codecs
)/sizeof(codecs_t
);
506 mp_msg(MSGT_CODECCFG
,MSGL_V
,MSGTR_ReadingFile
, cfgfile
);
508 if ((fp
= fopen(cfgfile
, "r")) == NULL
) {
509 mp_msg(MSGT_CODECCFG
,MSGL_V
,MSGTR_CantOpenFileError
, cfgfile
, strerror(errno
));
513 if ((line
= (char *) malloc(MAX_LINE_LEN
+ 1)) == NULL
) {
514 mp_msg(MSGT_CODECCFG
,MSGL_FATAL
,MSGTR_CantGetMemoryForLine
, strerror(errno
));
520 * this only catches release lines at the start of
521 * codecs.conf, before audiocodecs and videocodecs.
523 while ((tmp
= get_token(1, 1)) == RET_EOL
)
527 if (!strcmp(token
[0], "release")) {
528 if (get_token(1, 2) < 0)
529 goto err_out_parse_error
;
530 tmp
= atoi(token
[0]);
531 if (tmp
< CODEC_CFG_MIN
)
532 goto err_out_release_num
;
533 while ((tmp
= get_token(1, 1)) == RET_EOL
)
538 goto err_out_release_num
;
541 * check if the next block starts with 'audiocodec' or
544 if (!strcmp(token
[0], "audiocodec") || !strcmp(token
[0], "videocodec"))
546 goto err_out_parse_error
;
548 while ((tmp
= get_token(1, 1)) != RET_EOF
) {
551 if (!strcmp(token
[0], "audiocodec") ||
552 !strcmp(token
[0], "videocodec")) {
553 if (!validate_codec(codec
, codec_type
))
554 goto err_out_not_valid
;
556 if (*token
[0] == 'v') {
557 codec_type
= TYPE_VIDEO
;
558 nr_codecsp
= &nr_vcodecs
;
559 codecsp
= &video_codecs
;
560 } else if (*token
[0] == 'a') {
561 codec_type
= TYPE_AUDIO
;
562 nr_codecsp
= &nr_acodecs
;
563 codecsp
= &audio_codecs
;
566 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,"picsba\n");
570 if (!(*codecsp
= (codecs_t
*) realloc(*codecsp
,
571 sizeof(codecs_t
) * (*nr_codecsp
+ 2)))) {
572 mp_msg(MSGT_CODECCFG
,MSGL_FATAL
,MSGTR_CantReallocCodecsp
, strerror(errno
));
575 codec
=*codecsp
+ *nr_codecsp
;
577 memset(codec
,0,sizeof(codecs_t
));
578 memset(codec
->fourcc
, 0xff, sizeof(codec
->fourcc
));
579 memset(codec
->outfmt
, 0xff, sizeof(codec
->outfmt
));
580 memset(codec
->infmt
, 0xff, sizeof(codec
->infmt
));
582 if (get_token(1, 1) < 0)
583 goto err_out_parse_error
;
584 for (i
= 0; i
< *nr_codecsp
- 1; i
++) {
585 if(( (*codecsp
)[i
].name
!=NULL
) &&
586 (!strcmp(token
[0], (*codecsp
)[i
].name
)) ) {
587 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecNameNotUnique
, token
[0]);
588 goto err_out_print_linenum
;
591 if (!(codec
->name
= strdup(token
[0]))) {
592 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CantStrdupName
, strerror(errno
));
595 } else if (!strcmp(token
[0], "info")) {
596 if (codec
->info
|| get_token(1, 1) < 0)
597 goto err_out_parse_error
;
598 if (!(codec
->info
= strdup(token
[0]))) {
599 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CantStrdupInfo
, strerror(errno
));
602 } else if (!strcmp(token
[0], "comment")) {
603 if (get_token(1, 1) < 0)
604 goto err_out_parse_error
;
605 add_comment(token
[0], &codec
->comment
);
606 } else if (!strcmp(token
[0], "fourcc")) {
607 if (get_token(1, 2) < 0)
608 goto err_out_parse_error
;
609 if (!add_to_fourcc(token
[0], token
[1],
612 goto err_out_print_linenum
;
613 } else if (!strcmp(token
[0], "format")) {
614 if (get_token(1, 2) < 0)
615 goto err_out_parse_error
;
616 if (!add_to_format(token
[0], token
[1],
617 codec
->fourcc
,codec
->fourccmap
))
618 goto err_out_print_linenum
;
619 } else if (!strcmp(token
[0], "driver")) {
620 if (get_token(1, 1) < 0)
621 goto err_out_parse_error
;
622 if (!(codec
->drv
= strdup(token
[0]))) {
623 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CantStrdupDriver
, strerror(errno
));
626 } else if (!strcmp(token
[0], "dll")) {
627 if (get_token(1, 1) < 0)
628 goto err_out_parse_error
;
629 if (!(codec
->dll
= strdup(token
[0]))) {
630 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CantStrdupDLL
, strerror(errno
));
633 } else if (!strcmp(token
[0], "guid")) {
634 if (get_token(11, 11) < 0)
635 goto err_out_parse_error
;
636 codec
->guid
.f1
=strtoul(token
[0],&endptr
,0);
637 if ((*endptr
!= ',' || *(endptr
+ 1) != '\0') &&
639 goto err_out_parse_error
;
640 codec
->guid
.f2
=strtoul(token
[1],&endptr
,0);
641 if ((*endptr
!= ',' || *(endptr
+ 1) != '\0') &&
643 goto err_out_parse_error
;
644 codec
->guid
.f3
=strtoul(token
[2],&endptr
,0);
645 if ((*endptr
!= ',' || *(endptr
+ 1) != '\0') &&
647 goto err_out_parse_error
;
648 for (i
= 0; i
< 8; i
++) {
649 codec
->guid
.f4
[i
]=strtoul(token
[i
+ 3],&endptr
,0);
650 if ((*endptr
!= ',' || *(endptr
+ 1) != '\0') &&
652 goto err_out_parse_error
;
654 } else if (!strcmp(token
[0], "out")) {
655 if (get_token(1, 2) < 0)
656 goto err_out_parse_error
;
657 if (!add_to_inout(token
[0], token
[1], codec
->outfmt
,
659 goto err_out_print_linenum
;
660 } else if (!strcmp(token
[0], "in")) {
661 if (get_token(1, 2) < 0)
662 goto err_out_parse_error
;
663 if (!add_to_inout(token
[0], token
[1], codec
->infmt
,
665 goto err_out_print_linenum
;
666 } else if (!strcmp(token
[0], "flags")) {
667 if (get_token(1, 1) < 0)
668 goto err_out_parse_error
;
669 if (!strcmp(token
[0], "seekable"))
670 codec
->flags
|= CODECS_FLAG_SEEKABLE
;
672 if (!strcmp(token
[0], "align16"))
673 codec
->flags
|= CODECS_FLAG_ALIGN16
;
675 goto err_out_parse_error
;
676 } else if (!strcmp(token
[0], "status")) {
677 if (get_token(1, 1) < 0)
678 goto err_out_parse_error
;
679 if (!strcasecmp(token
[0], "working"))
680 codec
->status
= CODECS_STATUS_WORKING
;
681 else if (!strcasecmp(token
[0], "crashing"))
682 codec
->status
= CODECS_STATUS_NOT_WORKING
;
683 else if (!strcasecmp(token
[0], "untested"))
684 codec
->status
= CODECS_STATUS_UNTESTED
;
685 else if (!strcasecmp(token
[0], "buggy"))
686 codec
->status
= CODECS_STATUS_PROBLEMS
;
688 goto err_out_parse_error
;
689 } else if (!strcmp(token
[0], "cpuflags")) {
690 if (get_token(1, 1) < 0)
691 goto err_out_parse_error
;
692 if (!(codec
->cpuflags
= get_cpuflags(token
[0])))
693 goto err_out_parse_error
;
695 goto err_out_parse_error
;
697 if (!validate_codec(codec
, codec_type
))
698 goto err_out_not_valid
;
699 mp_msg(MSGT_CODECCFG
,MSGL_INFO
,MSGTR_AudioVideoCodecTotals
, nr_acodecs
, nr_vcodecs
);
700 if(video_codecs
) video_codecs
[nr_vcodecs
].name
= NULL
;
701 if(audio_codecs
) audio_codecs
[nr_acodecs
].name
= NULL
;
709 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_ParseError
);
710 err_out_print_linenum
:
713 codecs_uninit_free();
721 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_CodecDefinitionIncorrect
);
722 goto err_out_print_linenum
;
724 mp_msg(MSGT_CODECCFG
,MSGL_ERR
,MSGTR_OutdatedCodecsConf
);
725 goto err_out_print_linenum
;
728 static void codecs_free(codecs_t
* codecs
,int count
) {
730 for ( i
= 0; i
< count
; i
++)
731 if ( (codecs
[i
]).name
) {
732 if( (codecs
[i
]).name
)
733 free((codecs
[i
]).name
);
734 if( (codecs
[i
]).info
)
735 free((codecs
[i
]).info
);
736 if( (codecs
[i
]).comment
)
737 free((codecs
[i
]).comment
);
738 if( (codecs
[i
]).dll
)
739 free((codecs
[i
]).dll
);
740 if( (codecs
[i
]).drv
)
741 free((codecs
[i
]).drv
);
747 void codecs_uninit_free() {
749 codecs_free(video_codecs
,nr_vcodecs
);
752 codecs_free(audio_codecs
,nr_acodecs
);
756 codecs_t
*find_audio_codec(unsigned int fourcc
, unsigned int *fourccmap
,
759 return find_codec(fourcc
, fourccmap
, start
, 1);
762 codecs_t
*find_video_codec(unsigned int fourcc
, unsigned int *fourccmap
,
765 return find_codec(fourcc
, fourccmap
, start
, 0);
768 codecs_t
* find_codec(unsigned int fourcc
,unsigned int *fourccmap
,
769 codecs_t
*start
, int audioflag
)
776 for (/* NOTHING */; start
->name
; start
++) {
777 for (j
= 0; j
< CODECS_MAX_FOURCC
; j
++) {
778 if (start
->fourcc
[j
] == fourcc
) {
780 *fourccmap
= start
->fourccmap
[j
];
796 for (/* NOTHING */; i
--; c
++) {
797 if(start
&& c
<=start
) continue;
798 for (j
= 0; j
< CODECS_MAX_FOURCC
; j
++) {
799 // FIXME: do NOT hardwire 'null' name here:
800 if (c
->fourcc
[j
]==fourcc
|| !strcmp(c
->drv
,"null")) {
802 *fourccmap
= c
->fourccmap
[j
];
811 void select_codec(char* codecname
,int audioflag
){
814 // printf("select_codec('%s')\n",codecname);
823 for (/* NOTHING */; i
--; c
++)
824 if(!strcmp(c
->name
,codecname
))
825 c
->flags
|=CODECS_FLAG_SELECTED
;
828 void codecs_reset_selection(int audioflag
){
839 for (/* NOTHING */; i
--; c
++)
840 c
->flags
&=(~CODECS_FLAG_SELECTED
);
843 void list_codecs(int audioflag
){
850 mp_msg(MSGT_CODECCFG
,MSGL_INFO
,"ac: afm: status: info: [lib/dll]\n");
854 mp_msg(MSGT_CODECCFG
,MSGL_INFO
,"vc: vfm: status: info: [lib/dll]\n");
857 for (/* NOTHING */; i
--; c
++) {
860 case CODECS_STATUS_WORKING
: s
="working ";break;
861 case CODECS_STATUS_PROBLEMS
: s
="problems";break;
862 case CODECS_STATUS_NOT_WORKING
: s
="crashing";break;
863 case CODECS_STATUS_UNTESTED
: s
="untested";break;
866 mp_msg(MSGT_CODECCFG
,MSGL_INFO
,"%-11s %-9s %s %s [%s]\n",c
->name
,c
->drv
,s
,c
->info
,c
->dll
);
868 mp_msg(MSGT_CODECCFG
,MSGL_INFO
,"%-11s %-9s %s %s\n",c
->name
,c
->drv
,s
,c
->info
);
878 * Fake out GUI references when building the codecs2html utility.
881 void gtkMessageBox( int type
,char * str
) { return; }
885 void wrapline(FILE *f2
,char *s
){
892 if(c
==',') fprintf(f2
,"<br>"); else fputc(c
,f2
);
896 void parsehtml(FILE *f1
,FILE *f2
,codecs_t
*codec
,int section
,int dshow
){
898 while((c
=fgetc(f1
))>=0){
907 return; // end of section
909 wrapline(f2
,codec
->name
); break;
911 wrapline(f2
,codec
->info
); break;
913 wrapline(f2
,codec
->comment
); break;
915 wrapline(f2
,codec
->dll
); break;
917 fprintf(f2
,"%c",!strcmp(codec
->drv
,"dshow")?'+':'-'); break;
919 for(d
=0;d
<CODECS_MAX_FOURCC
;d
++)
920 if(!d
|| codec
->fourcc
[d
]!=0xFFFFFFFF)
921 fprintf(f2
,"%s%.4s",d
?"<br>":"",(codec
->fourcc
[d
]==0xFFFFFFFF || codec
->fourcc
[d
]<0x20202020)?!d
?"-":"":(char*) &codec
->fourcc
[d
]);
924 for(d
=0;d
<CODECS_MAX_FOURCC
;d
++)
925 if(codec
->fourcc
[d
]!=0xFFFFFFFF)
926 fprintf(f2
,"%s0x%X",d
?"<br>":"",codec
->fourcc
[d
]);
929 for(d
=0;d
<CODECS_MAX_OUTFMT
;d
++)
930 if(codec
->outfmt
[d
]!=0xFFFFFFFF){
931 for (c
=0; fmt_table
[c
].name
; c
++)
932 if(fmt_table
[c
].num
==codec
->outfmt
[d
]) break;
933 if(fmt_table
[c
].name
)
934 fprintf(f2
,"%s%s",d
?"<br>":"",fmt_table
[c
].name
);
945 void skiphtml(FILE *f1
){
947 while((c
=fgetc(f1
))>=0){
952 if(d
=='.') return; // end of section
956 static void print_int_array(const int* a
, int size
)
961 printf("%d%s", *a
++, size
?", ":"");
963 printf("0x%X%s", *a
++, size
?", ":"");
967 static void print_char_array(const unsigned char* a
, int size
)
972 printf("%d%s", *a
++, size
?", ":"");
974 printf("0x%02x%s", *a
++, size
?", ":"");
978 static void print_string(const char* s
)
980 if (!s
) printf("NULL");
981 else printf("\"%s\"", s
);
984 int main(int argc
, char* argv
[])
998 * Take path to codecs.conf from command line, or fall back on
1001 if (!(nr_codecs
= parse_codec_cfg((argc
>1)?argv
[1]:"etc/codecs.conf")))
1010 nm
[0] = "builtin_video_codecs";
1011 cod
[0] = video_codecs
;
1014 nm
[1] = "builtin_audio_codecs";
1015 cod
[1] = audio_codecs
;
1018 printf("/* GENERATED FROM %s, DO NOT EDIT! */\n\n",argv
[1]);
1020 for (i
=0; i
<2; i
++) {
1021 printf("codecs_t %s[] = {\n", nm
[i
]);
1022 for (j
= 0; j
< nr
[i
]; j
++) {
1025 print_int_array(cod
[i
][j
].fourcc
, CODECS_MAX_FOURCC
);
1026 printf(", /* fourcc */\n");
1028 print_int_array(cod
[i
][j
].fourccmap
, CODECS_MAX_FOURCC
);
1029 printf(", /* fourccmap */\n");
1031 print_int_array(cod
[i
][j
].outfmt
, CODECS_MAX_OUTFMT
);
1032 printf(", /* outfmt */\n");
1034 print_char_array(cod
[i
][j
].outflags
, CODECS_MAX_OUTFMT
);
1035 printf(", /* outflags */\n");
1037 print_int_array(cod
[i
][j
].infmt
, CODECS_MAX_INFMT
);
1038 printf(", /* infmt */\n");
1040 print_char_array(cod
[i
][j
].inflags
, CODECS_MAX_INFMT
);
1041 printf(", /* inflags */\n");
1043 print_string(cod
[i
][j
].name
); printf(", /* name */\n");
1044 print_string(cod
[i
][j
].info
); printf(", /* info */\n");
1045 print_string(cod
[i
][j
].comment
); printf(", /* comment */\n");
1046 print_string(cod
[i
][j
].dll
); printf(", /* dll */\n");
1047 print_string(cod
[i
][j
].drv
); printf(", /* drv */\n");
1049 printf("{ 0x%08lx, %hu, %hu,",
1053 print_char_array(cod
[i
][j
].guid
.f4
, sizeof(cod
[i
][j
].guid
.f4
));
1054 printf(" }, /* GUID */\n");
1055 printf("%hd /* flags */, %hd /* status */, %hd /* cpuflags */ }\n",
1058 cod
[i
][j
].cpuflags
);
1059 if (j
< nr
[i
]) printf(",\n");
1066 f1
=fopen("DOCS/tech/codecs-in.html","rb"); if(!f1
) exit(1);
1067 f2
=fopen("DOCS/en/codecs-status.html","wb"); if(!f2
) exit(1);
1069 while((c
=fgetc(f1
))>=0){
1075 if(d
>='0' && d
<='9'){
1078 printf("BEGIN %d\n",section
);
1082 nr_codecs
= nr_acodecs
;
1087 nr_codecs
= nr_vcodecs
;
1088 dshow
=4;win32
=2;win32ex
=6;
1091 for(i
=0;i
<nr_codecs
;i
++){
1092 fseek(f1
,pos
,SEEK_SET
);
1096 if(cl
[i
].status
==CODECS_STATUS_WORKING
)
1097 // if(!(!strcmp(cl[i].drv,"vfw") || !strcmp(cl[i].drv,"dshow") || !strcmp(cl[i].drv,"vfwex") || !strcmp(cl[i].drv,"acm")))
1098 parsehtml(f1
,f2
,&cl
[i
],section
,dshow
);
1103 if(cl
[i
].status
==CODECS_STATUS_WORKING
)
1104 if((!strcmp(cl
[i
].drv
,"vfw") || !strcmp(cl
[i
].drv
,"dshow") || !strcmp(cl
[i
].drv
,"vfwex") || !strcmp(cl
[i
].drv
,"acm")))
1105 parsehtml(f1
,f2
,&cl
[i
],section
,dshow
);
1110 if(cl
[i
].status
==CODECS_STATUS_PROBLEMS
)
1111 parsehtml(f1
,f2
,&cl
[i
],section
,dshow
);
1115 if(cl
[i
].status
==CODECS_STATUS_NOT_WORKING
)
1116 parsehtml(f1
,f2
,&cl
[i
],section
,dshow
);
1120 if(cl
[i
].status
==CODECS_STATUS_UNTESTED
)
1121 parsehtml(f1
,f2
,&cl
[i
],section
,dshow
);
1124 printf("Warning! unimplemented section: %d\n",section
);
1127 fseek(f1
,pos
,SEEK_SET
);
1129 //void parsehtml(FILE *f1,FILE *f2,codecs_t *codec,int section,int dshow){
1148 int i
,j
, nr_codecs
, state
;
1150 if (!(parse_codec_cfg("etc/codecs.conf")))
1153 printf("no videoconfig.\n");
1155 printf("no audioconfig.\n");
1157 printf("videocodecs:\n");
1159 nr_codecs
= nr_vcodecs
;
1163 printf("number of %scodecs: %d\n", state
==0?"video":"audio",
1165 for(i
=0;i
<nr_codecs
;i
++, c
++){
1166 printf("\n============== %scodec %02d ===============\n",
1167 state
==0?"video":"audio",i
);
1168 printf("name='%s'\n",c
->name
);
1169 printf("info='%s'\n",c
->info
);
1170 printf("comment='%s'\n",c
->comment
);
1171 printf("dll='%s'\n",c
->dll
);
1172 printf("flags=%X driver=%d status=%d cpuflags=%d\n",
1173 c
->flags
, c
->driver
, c
->status
, c
->cpuflags
);
1175 for(j
=0;j
<CODECS_MAX_FOURCC
;j
++){
1176 if(c
->fourcc
[j
]!=0xFFFFFFFF){
1177 printf("fourcc %02d: %08X (%.4s) ===> %08X (%.4s)\n",j
,c
->fourcc
[j
],(char *) &c
->fourcc
[j
],c
->fourccmap
[j
],(char *) &c
->fourccmap
[j
]);
1181 for(j
=0;j
<CODECS_MAX_OUTFMT
;j
++){
1182 if(c
->outfmt
[j
]!=0xFFFFFFFF){
1183 printf("outfmt %02d: %08X (%.4s) flags: %d\n",j
,c
->outfmt
[j
],(char *) &c
->outfmt
[j
],c
->outflags
[j
]);
1187 for(j
=0;j
<CODECS_MAX_INFMT
;j
++){
1188 if(c
->infmt
[j
]!=0xFFFFFFFF){
1189 printf("infmt %02d: %08X (%.4s) flags: %d\n",j
,c
->infmt
[j
],(char *) &c
->infmt
[j
],c
->inflags
[j
]);
1193 printf("GUID: %08lX %04X %04X",c
->guid
.f1
,c
->guid
.f2
,c
->guid
.f3
);
1194 for(j
=0;j
<8;j
++) printf(" %02X",c
->guid
.f4
[j
]);
1201 printf("audiocodecs:\n");
1203 nr_codecs
= nr_acodecs
;