Mercurial > mplayer.hg
annotate codec-cfg.c @ 29450:85bea9f80e86
Explain how formats must be ordered in fmt_list so the parser can handle
names where one matches the beginning of another.
author | reimar |
---|---|
date | Tue, 11 Aug 2009 18:21:31 +0000 |
parents | 290afe64ba96 |
children | 28e5ee835b6b |
rev | line source |
---|---|
319 | 1 /* |
2 * codec.conf parser | |
3 * by Szabolcs Berecz <szabi@inf.elte.hu> | |
4 * (C) 2001 | |
4676 | 5 * |
22501 | 6 * to compile test application: |
7 * cc -I. -DTESTING -o codec-cfg-test codec-cfg.c mp_msg.o osdep/getch2.o -ltermcap | |
15303 | 8 * to compile CODECS2HTML: |
17763 | 9 * gcc -DCODECS2HTML -o codecs2html codec-cfg.c mp_msg.o |
4676 | 10 * |
11 * TODO: implement informat in CODECS2HTML too | |
319 | 12 */ |
303 | 13 |
319 | 14 #define DEBUG |
303 | 15 |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
16 //disable asserts |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
17 #define NDEBUG |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
18 |
297 | 19 #include <stdio.h> |
20 #include <stdlib.h> | |
21 #include <fcntl.h> | |
22 #include <unistd.h> | |
23 #include <errno.h> | |
24 #include <ctype.h> | |
25 #include <assert.h> | |
26 #include <string.h> | |
27 | |
5284
0a58c2ef1da1
added missing #include config.h, removed LIBVO2 ifdef.
arpi
parents:
5263
diff
changeset
|
28 #include "config.h" |
5937 | 29 #include "mp_msg.h" |
17841
73db10d5f2e3
remove mp_msg.c dependency when compiling codec-cfg binary.
reimar
parents:
17763
diff
changeset
|
30 #ifdef CODECS2HTML |
73db10d5f2e3
remove mp_msg.c dependency when compiling codec-cfg binary.
reimar
parents:
17763
diff
changeset
|
31 #ifdef __GNUC__ |
73db10d5f2e3
remove mp_msg.c dependency when compiling codec-cfg binary.
reimar
parents:
17763
diff
changeset
|
32 #define mp_msg(t, l, m, args...) fprintf(stderr, m, ##args) |
73db10d5f2e3
remove mp_msg.c dependency when compiling codec-cfg binary.
reimar
parents:
17763
diff
changeset
|
33 #else |
23910
8fcfdfcd6c41
C99 varargs in macros can not be empty, adjust definition so it compiles
reimar
parents:
23806
diff
changeset
|
34 #define mp_msg(t, l, ...) fprintf(stderr, __VA_ARGS__) |
17841
73db10d5f2e3
remove mp_msg.c dependency when compiling codec-cfg binary.
reimar
parents:
17763
diff
changeset
|
35 #endif |
73db10d5f2e3
remove mp_msg.c dependency when compiling codec-cfg binary.
reimar
parents:
17763
diff
changeset
|
36 #endif |
5284
0a58c2ef1da1
added missing #include config.h, removed LIBVO2 ifdef.
arpi
parents:
5263
diff
changeset
|
37 |
13619 | 38 #include "help_mp.h" |
39 | |
2052 | 40 // for mmioFOURCC: |
12341
0db4a3a5b01d
removed loader/ dependancy, imported some files from g2, also used patches from Dominik Mierzejewski
alex
parents:
11759
diff
changeset
|
41 #include "libmpdemux/aviheader.h" |
1305
0a8237e28ce0
Use FOURCC macro to encode fcc values. Avoids accessing 32-bit data from
jkeil
parents:
1297
diff
changeset
|
42 |
15305 | 43 #include "libmpcodecs/img_format.h" |
297 | 44 #include "codec-cfg.h" |
45 | |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
46 #ifndef CODECS2HTML |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
47 #include "codecs.conf.h" |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
48 #endif |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
49 |
5937 | 50 #define PRINT_LINENUM mp_msg(MSGT_CODECCFG,MSGL_ERR," at line %d\n", line_num) |
328 | 51 |
319 | 52 #define MAX_NR_TOKEN 16 |
297 | 53 |
54 #define MAX_LINE_LEN 1000 | |
55 | |
56 #define RET_EOF -1 | |
57 #define RET_EOL -2 | |
58 | |
328 | 59 #define TYPE_VIDEO 0 |
60 #define TYPE_AUDIO 1 | |
297 | 61 |
11759
29eea271490e
add -codecs-file for selecting a specific codecs.conf on the comand line
attila
parents:
11388
diff
changeset
|
62 char * codecs_file = NULL; |
29eea271490e
add -codecs-file for selecting a specific codecs.conf on the comand line
attila
parents:
11388
diff
changeset
|
63 |
303 | 64 static int add_to_fourcc(char *s, char *alias, unsigned int *fourcc, |
297 | 65 unsigned int *map) |
66 { | |
319 | 67 int i, j, freeslots; |
68 unsigned int tmp; | |
69 | |
70 /* find first unused slot */ | |
71 for (i = 0; i < CODECS_MAX_FOURCC && fourcc[i] != 0xffffffff; i++) | |
72 /* NOTHING */; | |
73 freeslots = CODECS_MAX_FOURCC - i; | |
74 if (!freeslots) | |
328 | 75 goto err_out_too_many; |
319 | 76 |
77 do { | |
1305
0a8237e28ce0
Use FOURCC macro to encode fcc values. Avoids accessing 32-bit data from
jkeil
parents:
1297
diff
changeset
|
78 tmp = mmioFOURCC(s[0], s[1], s[2], s[3]); |
319 | 79 for (j = 0; j < i; j++) |
80 if (tmp == fourcc[j]) | |
328 | 81 goto err_out_duplicated; |
319 | 82 fourcc[i] = tmp; |
2681 | 83 map[i] = alias ? mmioFOURCC(alias[0], alias[1], alias[2], alias[3]) : tmp; |
319 | 84 s += 4; |
85 i++; | |
86 } while ((*(s++) == ',') && --freeslots); | |
87 | |
88 if (!freeslots) | |
328 | 89 goto err_out_too_many; |
319 | 90 if (*(--s) != '\0') |
361 | 91 goto err_out_parse_error; |
319 | 92 return 1; |
328 | 93 err_out_duplicated: |
13619 | 94 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_DuplicateFourcc); |
319 | 95 return 0; |
328 | 96 err_out_too_many: |
13619 | 97 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_TooManyFourccs); |
361 | 98 return 0; |
99 err_out_parse_error: | |
13619 | 100 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseError); |
319 | 101 return 0; |
102 } | |
103 | |
7770 | 104 static int add_to_format(char *s, char *alias,unsigned int *fourcc, unsigned int *fourccmap) |
319 | 105 { |
106 int i, j; | |
361 | 107 char *endptr; |
297 | 108 |
109 /* find first unused slot */ | |
110 for (i = 0; i < CODECS_MAX_FOURCC && fourcc[i] != 0xffffffff; i++) | |
111 /* NOTHING */; | |
112 if (i == CODECS_MAX_FOURCC) { | |
13619 | 113 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_TooManyFourccs); |
297 | 114 return 0; |
115 } | |
116 | |
7770 | 117 fourcc[i]=strtoul(s,&endptr,0); |
361 | 118 if (*endptr != '\0') { |
13619 | 119 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseErrorFIDNotNumber); |
361 | 120 return 0; |
121 } | |
7770 | 122 |
123 if(alias){ | |
124 fourccmap[i]=strtoul(alias,&endptr,0); | |
125 if (*endptr != '\0') { | |
13619 | 126 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseErrorFIDAliasNotNumber); |
7770 | 127 return 0; |
128 } | |
129 } else | |
130 fourccmap[i]=fourcc[i]; | |
131 | |
319 | 132 for (j = 0; j < i; j++) |
133 if (fourcc[j] == fourcc[i]) { | |
13619 | 134 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_DuplicateFID); |
319 | 135 return 0; |
136 } | |
300 | 137 |
297 | 138 return 1; |
139 } | |
140 | |
29449 | 141 static const struct { |
408 | 142 const char *name; |
143 const unsigned int num; | |
144 } fmt_table[] = { | |
29450
85bea9f80e86
Explain how formats must be ordered in fmt_list so the parser can handle
reimar
parents:
29449
diff
changeset
|
145 // note: due to parser deficiencies/simplicity, if one format |
85bea9f80e86
Explain how formats must be ordered in fmt_list so the parser can handle
reimar
parents:
29449
diff
changeset
|
146 // name matches the beginning of another, the longer one _must_ |
85bea9f80e86
Explain how formats must be ordered in fmt_list so the parser can handle
reimar
parents:
29449
diff
changeset
|
147 // come first in this list. |
415 | 148 {"YV12", IMGFMT_YV12}, |
149 {"I420", IMGFMT_I420}, | |
150 {"IYUV", IMGFMT_IYUV}, | |
10746
0e5e55232e9d
added nv12/nv21 and some other fourccs (still not synced)
alex
parents:
10520
diff
changeset
|
151 {"NV12", IMGFMT_NV12}, |
0e5e55232e9d
added nv12/nv21 and some other fourccs (still not synced)
alex
parents:
10520
diff
changeset
|
152 {"NV21", IMGFMT_NV21}, |
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
|
153 {"YVU9", IMGFMT_YVU9}, |
6526 | 154 {"IF09", IMGFMT_IF09}, |
6863 | 155 {"444P", IMGFMT_444P}, |
156 {"422P", IMGFMT_422P}, | |
157 {"411P", IMGFMT_411P}, | |
14170 | 158 {"Y800", IMGFMT_Y800}, |
159 {"Y8", IMGFMT_Y8}, | |
408 | 160 |
415 | 161 {"YUY2", IMGFMT_YUY2}, |
162 {"UYVY", IMGFMT_UYVY}, | |
163 {"YVYU", IMGFMT_YVYU}, | |
408 | 164 |
7770 | 165 {"RGB4", IMGFMT_RGB|4}, |
415 | 166 {"RGB8", IMGFMT_RGB|8}, |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
167 {"RGB15", IMGFMT_RGB|15}, |
415 | 168 {"RGB16", IMGFMT_RGB|16}, |
169 {"RGB24", IMGFMT_RGB|24}, | |
170 {"RGB32", IMGFMT_RGB|32}, | |
29446
da2641b029b1
Allow out-formats for IMGFMT_RGB48* in codecs.conf.
cehoyos
parents:
29263
diff
changeset
|
171 {"RG48LE", IMGFMT_RGB|48}, |
da2641b029b1
Allow out-formats for IMGFMT_RGB48* in codecs.conf.
cehoyos
parents:
29263
diff
changeset
|
172 {"RG48BE", IMGFMT_RGB|49}, |
7770 | 173 {"BGR4", IMGFMT_BGR|4}, |
415 | 174 {"BGR8", IMGFMT_BGR|8}, |
175 {"BGR15", IMGFMT_BGR|15}, | |
176 {"BGR16", IMGFMT_BGR|16}, | |
177 {"BGR24", IMGFMT_BGR|24}, | |
178 {"BGR32", IMGFMT_BGR|32}, | |
7770 | 179 {"RGB1", IMGFMT_RGB|1}, |
180 {"BGR1", IMGFMT_BGR|1}, | |
1871 | 181 |
182 {"MPES", IMGFMT_MPEGPES}, | |
11388
a9de2f4781dd
updates for new image formats for zoran mjpeg passthrough
rik
parents:
10859
diff
changeset
|
183 {"ZRMJPEGNI", IMGFMT_ZRMJPEGNI}, |
a9de2f4781dd
updates for new image formats for zoran mjpeg passthrough
rik
parents:
10859
diff
changeset
|
184 {"ZRMJPEGIT", IMGFMT_ZRMJPEGIT}, |
a9de2f4781dd
updates for new image formats for zoran mjpeg passthrough
rik
parents:
10859
diff
changeset
|
185 {"ZRMJPEGIB", IMGFMT_ZRMJPEGIB}, |
10316 | 186 |
187 {"IDCT_MPEG2",IMGFMT_XVMC_IDCT_MPEG2}, | |
188 {"MOCO_MPEG2",IMGFMT_XVMC_MOCO_MPEG2}, | |
189 | |
28516
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
190 {"VDPAU_MPEG1",IMGFMT_VDPAU_MPEG1}, |
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
191 {"VDPAU_MPEG2",IMGFMT_VDPAU_MPEG2}, |
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
192 {"VDPAU_H264",IMGFMT_VDPAU_H264}, |
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
193 {"VDPAU_WMV3",IMGFMT_VDPAU_WMV3}, |
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
194 {"VDPAU_VC1",IMGFMT_VDPAU_VC1}, |
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
195 |
415 | 196 {NULL, 0} |
297 | 197 }; |
408 | 198 |
607 | 199 |
4675 | 200 static int add_to_inout(char *sfmt, char *sflags, unsigned int *outfmt, |
607 | 201 unsigned char *outflags) |
202 { | |
203 | |
299 | 204 static char *flagstr[] = { |
205 "flip", | |
206 "noflip", | |
207 "yuvhack", | |
5249 | 208 "query", |
6103 | 209 "static", |
299 | 210 NULL |
211 }; | |
212 | |
319 | 213 int i, j, freeslots; |
297 | 214 unsigned char flags; |
215 | |
216 for (i = 0; i < CODECS_MAX_OUTFMT && outfmt[i] != 0xffffffff; i++) | |
217 /* NOTHING */; | |
319 | 218 freeslots = CODECS_MAX_OUTFMT - i; |
219 if (!freeslots) | |
328 | 220 goto err_out_too_many; |
297 | 221 |
319 | 222 flags = 0; |
361 | 223 if(sflags) { |
224 do { | |
225 for (j = 0; flagstr[j] != NULL; j++) | |
226 if (!strncmp(sflags, flagstr[j], | |
227 strlen(flagstr[j]))) | |
228 break; | |
229 if (flagstr[j] == NULL) | |
230 goto err_out_parse_error; | |
231 flags|=(1<<j); | |
232 sflags+=strlen(flagstr[j]); | |
233 } while (*(sflags++) == ','); | |
234 | |
235 if (*(--sflags) != '\0') | |
236 goto err_out_parse_error; | |
237 } | |
297 | 238 |
239 do { | |
408 | 240 for (j = 0; fmt_table[j].name != NULL; j++) |
241 if (!strncmp(sfmt, fmt_table[j].name, strlen(fmt_table[j].name))) | |
297 | 242 break; |
408 | 243 if (fmt_table[j].name == NULL) |
361 | 244 goto err_out_parse_error; |
408 | 245 outfmt[i] = fmt_table[j].num; |
297 | 246 outflags[i] = flags; |
299 | 247 ++i; |
408 | 248 sfmt+=strlen(fmt_table[j].name); |
319 | 249 } while ((*(sfmt++) == ',') && --freeslots); |
250 | |
251 if (!freeslots) | |
328 | 252 goto err_out_too_many; |
319 | 253 |
361 | 254 if (*(--sfmt) != '\0') |
255 goto err_out_parse_error; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
256 |
297 | 257 return 1; |
328 | 258 err_out_too_many: |
13619 | 259 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_TooManyOut); |
361 | 260 return 0; |
261 err_out_parse_error: | |
13619 | 262 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseError); |
319 | 263 return 0; |
297 | 264 } |
265 | |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
266 #if 0 |
303 | 267 static short get_driver(char *s,int audioflag) |
297 | 268 { |
301 | 269 static char *audiodrv[] = { |
1293 | 270 "null", |
301 | 271 "mp3lib", |
272 "pcm", | |
273 "libac3", | |
274 "acm", | |
275 "alaw", | |
276 "msgsm", | |
277 "dshow", | |
401 | 278 "dvdpcm", |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1488
diff
changeset
|
279 "hwac3", |
1828 | 280 "libvorbis", |
1929 | 281 "ffmpeg", |
2415 | 282 "libmad", |
3787 | 283 "msadpcm", |
3400 | 284 "liba52", |
285 "g72x", | |
3787 | 286 "imaadpcm", |
4854
4a6dde59834c
fixed, strengthened, rewrote, and renamed a variety of the ADPCM decoders
melanson
parents:
4676
diff
changeset
|
287 "dk4adpcm", |
4a6dde59834c
fixed, strengthened, rewrote, and renamed a variety of the ADPCM decoders
melanson
parents:
4676
diff
changeset
|
288 "dk3adpcm", |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4301
diff
changeset
|
289 "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
|
290 "faad", |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6200
diff
changeset
|
291 "realaud", |
6927 | 292 "libdv", |
301 | 293 NULL |
294 }; | |
295 static char *videodrv[] = { | |
1293 | 296 "null", |
301 | 297 "libmpeg2", |
298 "vfw", | |
299 "dshow", | |
1248 | 300 "ffmpeg", |
1297 | 301 "vfwex", |
1488 | 302 "raw", |
5193
abea2deab4d6
MPlayer now has a Microsoft RLE decoder to call its own...only supports
melanson
parents:
5190
diff
changeset
|
303 "msrle", |
2379 | 304 "xanim", |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2681
diff
changeset
|
305 "msvidc", |
3172 | 306 "fli", |
3643
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3408
diff
changeset
|
307 "cinepak", |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3667
diff
changeset
|
308 "qtrle", |
3804
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3798
diff
changeset
|
309 "nuv", |
3969 | 310 "cyuv", |
4227 | 311 "qtsmc", |
4301
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
312 "ducktm1", |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4301
diff
changeset
|
313 "roqvideo", |
4615
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4450
diff
changeset
|
314 "qtrpza", |
4656 | 315 "mpng", |
5029 | 316 "ijpg", |
5263 | 317 "zlib", |
5478 | 318 "mpegpes", |
11388
a9de2f4781dd
updates for new image formats for zoran mjpeg passthrough
rik
parents:
10859
diff
changeset
|
319 "zrmjpeg", |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6200
diff
changeset
|
320 "realvid", |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6565
diff
changeset
|
321 "xvid", |
6927 | 322 "libdv", |
301 | 323 NULL |
324 }; | |
325 char **drv=audioflag?audiodrv:videodrv; | |
326 int i; | |
6863 | 327 |
1293 | 328 for(i=0;drv[i];i++) if(!strcmp(s,drv[i])) return i; |
301 | 329 |
1293 | 330 return -1; |
297 | 331 } |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
332 #endif |
297 | 333 |
328 | 334 static int validate_codec(codecs_t *c, int type) |
319 | 335 { |
5937 | 336 unsigned int i; |
7770 | 337 char *tmp_name = c->name; |
328 | 338 |
3408 | 339 for (i = 0; i < strlen(tmp_name) && isalnum(tmp_name[i]); i++) |
328 | 340 /* NOTHING */; |
3408 | 341 |
342 if (i < strlen(tmp_name)) { | |
13619 | 343 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_InvalidCodecName, c->name); |
328 | 344 return 0; |
345 } | |
3408 | 346 |
328 | 347 if (!c->info) |
3408 | 348 c->info = strdup(c->name); |
349 | |
350 #if 0 | |
328 | 351 if (c->fourcc[0] == 0xffffffff) { |
13619 | 352 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecLacksFourcc, c->name); |
328 | 353 return 0; |
354 } | |
13936
589b227e3367
fix crash when a "driver" line is missing in codecs.conf.
reimar
parents:
13807
diff
changeset
|
355 #endif |
3408 | 356 |
13936
589b227e3367
fix crash when a "driver" line is missing in codecs.conf.
reimar
parents:
13807
diff
changeset
|
357 if (!c->drv) { |
13619 | 358 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecLacksDriver, c->name); |
328 | 359 return 0; |
360 } | |
3408 | 361 |
362 #if 0 | |
24933
4fc6e60dac36
Avoid short forms; has the added benefit of allowing compilation with gcc 2.95
diego
parents:
24928
diff
changeset
|
363 #warning codec->driver == 4;... <- this should not be put in here... |
24928
62b57875bb28
Replace some Hungarian comments, thanks to Denes Balatoni for the translation.
diego
parents:
23910
diff
changeset
|
364 #warning Where are they defined ???????????? |
328 | 365 if (!c->dll && (c->driver == 4 || |
366 (c->driver == 2 && type == TYPE_VIDEO))) { | |
13619 | 367 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecNeedsDLL, c->name); |
328 | 368 return 0; |
369 } | |
24928
62b57875bb28
Replace some Hungarian comments, thanks to Denes Balatoni for the translation.
diego
parents:
23910
diff
changeset
|
370 #warning Can guid.f1 be 0? How does one know that it was not given? |
328 | 371 // if (!(codec->flags & CODECS_FLAG_AUDIO) && codec->driver == 4) |
372 | |
373 if (type == TYPE_VIDEO) | |
374 if (c->outfmt[0] == 0xffffffff) { | |
13619 | 375 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecNeedsOutfmt, c->name); |
328 | 376 return 0; |
377 } | |
329 | 378 #endif |
319 | 379 return 1; |
380 } | |
381 | |
382 static int add_comment(char *s, char **d) | |
383 { | |
384 int pos; | |
385 | |
386 if (!*d) | |
387 pos = 0; | |
388 else { | |
389 pos = strlen(*d); | |
390 (*d)[pos++] = '\n'; | |
391 } | |
23806 | 392 if (!(*d = realloc(*d, pos + strlen(s) + 1))) { |
13619 | 393 mp_msg(MSGT_CODECCFG,MSGL_FATAL,MSGTR_CantAllocateComment); |
319 | 394 return 0; |
395 } | |
396 strcpy(*d + pos, s); | |
397 return 1; | |
398 } | |
297 | 399 |
361 | 400 static short get_cpuflags(char *s) |
401 { | |
402 static char *flagstr[] = { | |
403 "mmx", | |
404 "sse", | |
405 "3dnow", | |
406 NULL | |
407 }; | |
408 int i; | |
409 short flags = 0; | |
410 | |
411 do { | |
412 for (i = 0; flagstr[i]; i++) | |
413 if (!strncmp(s, flagstr[i], strlen(flagstr[i]))) | |
414 break; | |
415 if (!flagstr[i]) | |
416 goto err_out_parse_error; | |
417 flags |= 1<<i; | |
418 s += strlen(flagstr[i]); | |
419 } while (*(s++) == ','); | |
420 | |
421 if (*(--s) != '\0') | |
422 goto err_out_parse_error; | |
423 | |
424 return flags; | |
425 err_out_parse_error: | |
426 return 0; | |
427 } | |
428 | |
328 | 429 static FILE *fp; |
430 static int line_num = 0; | |
431 static char *line; | |
432 static char *token[MAX_NR_TOKEN]; | |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
433 static int read_nextline = 1; |
328 | 434 |
435 static int get_token(int min, int max) | |
297 | 436 { |
328 | 437 static int line_pos; |
438 int i; | |
439 char c; | |
440 | |
441 if (max >= MAX_NR_TOKEN) { | |
13619 | 442 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_GetTokenMaxNotLessThanMAX_NR_TOKEN); |
328 | 443 goto out_eof; |
444 } | |
445 | |
446 memset(token, 0x00, sizeof(*token) * max); | |
447 | |
448 if (read_nextline) { | |
449 if (!fgets(line, MAX_LINE_LEN, fp)) | |
450 goto out_eof; | |
451 line_pos = 0; | |
452 ++line_num; | |
453 read_nextline = 0; | |
454 } | |
455 for (i = 0; i < max; i++) { | |
456 while (isspace(line[line_pos])) | |
457 ++line_pos; | |
458 if (line[line_pos] == '\0' || line[line_pos] == '#' || | |
459 line[line_pos] == ';') { | |
460 read_nextline = 1; | |
461 if (i >= min) | |
462 goto out_ok; | |
463 goto out_eol; | |
464 } | |
465 token[i] = line + line_pos; | |
466 c = line[line_pos]; | |
467 if (c == '"' || c == '\'') { | |
468 token[i]++; | |
469 while (line[++line_pos] != c && line[line_pos]) | |
470 /* NOTHING */; | |
471 } else { | |
472 for (/* NOTHING */; !isspace(line[line_pos]) && | |
473 line[line_pos]; line_pos++) | |
474 /* NOTHING */; | |
475 } | |
476 if (!line[line_pos]) { | |
477 read_nextline = 1; | |
478 if (i >= min - 1) | |
479 goto out_ok; | |
480 goto out_eol; | |
481 } | |
482 line[line_pos] = '\0'; | |
483 line_pos++; | |
484 } | |
485 out_ok: | |
486 return i; | |
487 out_eof: | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
488 read_nextline = 1; |
328 | 489 return RET_EOF; |
490 out_eol: | |
491 return RET_EOL; | |
492 } | |
493 | |
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; | |
498 | |
18980
ed69754aa58d
Marks several string parameters as const when they are not modified in the function, Patch by Stefan Huehner, stefan AT huehner-org
reynaldo
parents:
18034
diff
changeset
|
499 int parse_codec_cfg(const char *cfgfile) |
328 | 500 { |
501 codecs_t *codec = NULL; // current codec | |
502 codecs_t **codecsp = NULL;// points to audio_codecs or to video_codecs | |
335 | 503 char *endptr; // strtoul()... |
328 | 504 int *nr_codecsp; |
505 int codec_type; /* TYPE_VIDEO/TYPE_AUDIO */ | |
297 | 506 int tmp, i; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
507 |
8205
5c675b344bfb
This patch goes into the #ifdef CODECS2HTML section of
arpi
parents:
7770
diff
changeset
|
508 // in case we call it a second time |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
509 codecs_uninit_free(); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
510 |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
511 nr_vcodecs = 0; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
512 nr_acodecs = 0; |
297 | 513 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
514 if(cfgfile==NULL) { |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
515 #ifdef CODECS2HTML |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
516 return 0; |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
517 #else |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
518 video_codecs = builtin_video_codecs; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
519 audio_codecs = builtin_audio_codecs; |
8472 | 520 nr_vcodecs = sizeof(builtin_video_codecs)/sizeof(codecs_t); |
521 nr_acodecs = sizeof(builtin_audio_codecs)/sizeof(codecs_t); | |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
522 return 1; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
523 #endif |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
524 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
525 |
13946 | 526 mp_msg(MSGT_CODECCFG,MSGL_V,MSGTR_ReadingFile, cfgfile); |
297 | 527 |
301 | 528 if ((fp = fopen(cfgfile, "r")) == NULL) { |
13946 | 529 mp_msg(MSGT_CODECCFG,MSGL_V,MSGTR_CantOpenFileError, cfgfile, strerror(errno)); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
530 return 0; |
297 | 531 } |
532 | |
23806 | 533 if ((line = malloc(MAX_LINE_LEN + 1)) == NULL) { |
13619 | 534 mp_msg(MSGT_CODECCFG,MSGL_FATAL,MSGTR_CantGetMemoryForLine, strerror(errno)); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
535 return 0; |
297 | 536 } |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
537 read_nextline = 1; |
297 | 538 |
328 | 539 /* |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
540 * this only catches release lines at the start of |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
541 * codecs.conf, before audiocodecs and videocodecs. |
328 | 542 */ |
543 while ((tmp = get_token(1, 1)) == RET_EOL) | |
544 /* NOTHING */; | |
361 | 545 if (tmp == RET_EOF) |
546 goto out; | |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
547 if (!strcmp(token[0], "release")) { |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
548 if (get_token(1, 2) < 0) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
549 goto err_out_parse_error; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
550 tmp = atoi(token[0]); |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
551 if (tmp < CODEC_CFG_MIN) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
552 goto err_out_release_num; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
553 while ((tmp = get_token(1, 1)) == RET_EOL) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
554 /* NOTHING */; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
555 if (tmp == RET_EOF) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
556 goto out; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
557 } else |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
558 goto err_out_release_num; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
559 |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
560 /* |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
561 * 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
|
562 * with 'videocodec' |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
563 */ |
361 | 564 if (!strcmp(token[0], "audiocodec") || !strcmp(token[0], "videocodec")) |
328 | 565 goto loop_enter; |
361 | 566 goto err_out_parse_error; |
328 | 567 |
319 | 568 while ((tmp = get_token(1, 1)) != RET_EOF) { |
297 | 569 if (tmp == RET_EOL) |
570 continue; | |
328 | 571 if (!strcmp(token[0], "audiocodec") || |
572 !strcmp(token[0], "videocodec")) { | |
573 if (!validate_codec(codec, codec_type)) | |
574 goto err_out_not_valid; | |
575 loop_enter: | |
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; | |
361 | 584 #ifdef DEBUG |
328 | 585 } else { |
5937 | 586 mp_msg(MSGT_CODECCFG,MSGL_ERR,"picsba\n"); |
328 | 587 goto err_out; |
361 | 588 #endif |
328 | 589 } |
23806 | 590 if (!(*codecsp = realloc(*codecsp, |
332 | 591 sizeof(codecs_t) * (*nr_codecsp + 2)))) { |
13619 | 592 mp_msg(MSGT_CODECCFG,MSGL_FATAL,MSGTR_CantReallocCodecsp, strerror(errno)); |
300 | 593 goto err_out; |
594 } | |
328 | 595 codec=*codecsp + *nr_codecsp; |
596 ++*nr_codecsp; | |
300 | 597 memset(codec,0,sizeof(codecs_t)); |
598 memset(codec->fourcc, 0xff, sizeof(codec->fourcc)); | |
599 memset(codec->outfmt, 0xff, sizeof(codec->outfmt)); | |
4675 | 600 memset(codec->infmt, 0xff, sizeof(codec->infmt)); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
601 |
319 | 602 if (get_token(1, 1) < 0) |
328 | 603 goto err_out_parse_error; |
604 for (i = 0; i < *nr_codecsp - 1; i++) { | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
605 if(( (*codecsp)[i].name!=NULL) && |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
606 (!strcmp(token[0], (*codecsp)[i].name)) ) { |
13619 | 607 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecNameNotUnique, token[0]); |
361 | 608 goto err_out_print_linenum; |
319 | 609 } |
610 } | |
328 | 611 if (!(codec->name = strdup(token[0]))) { |
13619 | 612 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupName, strerror(errno)); |
328 | 613 goto err_out; |
614 } | |
319 | 615 } else if (!strcmp(token[0], "info")) { |
328 | 616 if (codec->info || get_token(1, 1) < 0) |
617 goto err_out_parse_error; | |
618 if (!(codec->info = strdup(token[0]))) { | |
13619 | 619 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupInfo, strerror(errno)); |
328 | 620 goto err_out; |
621 } | |
319 | 622 } else if (!strcmp(token[0], "comment")) { |
623 if (get_token(1, 1) < 0) | |
328 | 624 goto err_out_parse_error; |
361 | 625 add_comment(token[0], &codec->comment); |
319 | 626 } else if (!strcmp(token[0], "fourcc")) { |
627 if (get_token(1, 2) < 0) | |
328 | 628 goto err_out_parse_error; |
319 | 629 if (!add_to_fourcc(token[0], token[1], |
300 | 630 codec->fourcc, |
631 codec->fourccmap)) | |
361 | 632 goto err_out_print_linenum; |
319 | 633 } else if (!strcmp(token[0], "format")) { |
7770 | 634 if (get_token(1, 2) < 0) |
328 | 635 goto err_out_parse_error; |
7770 | 636 if (!add_to_format(token[0], token[1], |
637 codec->fourcc,codec->fourccmap)) | |
361 | 638 goto err_out_print_linenum; |
319 | 639 } else if (!strcmp(token[0], "driver")) { |
640 if (get_token(1, 1) < 0) | |
328 | 641 goto err_out_parse_error; |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
642 if (!(codec->drv = strdup(token[0]))) { |
13619 | 643 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupDriver, strerror(errno)); |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
644 goto err_out; |
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
645 } |
319 | 646 } else if (!strcmp(token[0], "dll")) { |
647 if (get_token(1, 1) < 0) | |
328 | 648 goto err_out_parse_error; |
649 if (!(codec->dll = strdup(token[0]))) { | |
13619 | 650 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupDLL, strerror(errno)); |
328 | 651 goto err_out; |
652 } | |
319 | 653 } else if (!strcmp(token[0], "guid")) { |
328 | 654 if (get_token(11, 11) < 0) |
655 goto err_out_parse_error; | |
335 | 656 codec->guid.f1=strtoul(token[0],&endptr,0); |
361 | 657 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
658 *endptr != '\0') | |
335 | 659 goto err_out_parse_error; |
660 codec->guid.f2=strtoul(token[1],&endptr,0); | |
361 | 661 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
662 *endptr != '\0') | |
335 | 663 goto err_out_parse_error; |
664 codec->guid.f3=strtoul(token[2],&endptr,0); | |
361 | 665 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
666 *endptr != '\0') | |
335 | 667 goto err_out_parse_error; |
668 for (i = 0; i < 8; i++) { | |
669 codec->guid.f4[i]=strtoul(token[i + 3],&endptr,0); | |
361 | 670 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
671 *endptr != '\0') | |
328 | 672 goto err_out_parse_error; |
297 | 673 } |
319 | 674 } else if (!strcmp(token[0], "out")) { |
675 if (get_token(1, 2) < 0) | |
328 | 676 goto err_out_parse_error; |
4675 | 677 if (!add_to_inout(token[0], token[1], codec->outfmt, |
300 | 678 codec->outflags)) |
361 | 679 goto err_out_print_linenum; |
4675 | 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, | |
684 codec->inflags)) | |
685 goto err_out_print_linenum; | |
319 | 686 } else if (!strcmp(token[0], "flags")) { |
687 if (get_token(1, 1) < 0) | |
328 | 688 goto err_out_parse_error; |
321 | 689 if (!strcmp(token[0], "seekable")) |
690 codec->flags |= CODECS_FLAG_SEEKABLE; | |
691 else | |
6565 | 692 if (!strcmp(token[0], "align16")) |
693 codec->flags |= CODECS_FLAG_ALIGN16; | |
694 else | |
328 | 695 goto err_out_parse_error; |
319 | 696 } else if (!strcmp(token[0], "status")) { |
697 if (get_token(1, 1) < 0) | |
328 | 698 goto err_out_parse_error; |
332 | 699 if (!strcasecmp(token[0], "working")) |
316 | 700 codec->status = CODECS_STATUS_WORKING; |
332 | 701 else if (!strcasecmp(token[0], "crashing")) |
316 | 702 codec->status = CODECS_STATUS_NOT_WORKING; |
332 | 703 else if (!strcasecmp(token[0], "untested")) |
316 | 704 codec->status = CODECS_STATUS_UNTESTED; |
332 | 705 else if (!strcasecmp(token[0], "buggy")) |
316 | 706 codec->status = CODECS_STATUS_PROBLEMS; |
707 else | |
328 | 708 goto err_out_parse_error; |
361 | 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; | |
297 | 714 } else |
328 | 715 goto err_out_parse_error; |
297 | 716 } |
328 | 717 if (!validate_codec(codec, codec_type)) |
718 goto err_out_not_valid; | |
13619 | 719 mp_msg(MSGT_CODECCFG,MSGL_INFO,MSGTR_AudioVideoCodecTotals, nr_acodecs, nr_vcodecs); |
895 | 720 if(video_codecs) video_codecs[nr_vcodecs].name = NULL; |
721 if(audio_codecs) audio_codecs[nr_acodecs].name = NULL; | |
297 | 722 out: |
723 free(line); | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
724 line=NULL; |
297 | 725 fclose(fp); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
726 return 1; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
727 |
328 | 728 err_out_parse_error: |
13619 | 729 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseError); |
361 | 730 err_out_print_linenum: |
297 | 731 PRINT_LINENUM; |
732 err_out: | |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
733 codecs_uninit_free(); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
734 |
328 | 735 free(line); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
736 line=NULL; |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
737 line_num = 0; |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
738 fclose(fp); |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
739 return 0; |
328 | 740 err_out_not_valid: |
13619 | 741 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecDefinitionIncorrect); |
361 | 742 goto err_out_print_linenum; |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
743 err_out_release_num: |
13619 | 744 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_OutdatedCodecsConf); |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
745 goto err_out_print_linenum; |
297 | 746 } |
747 | |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
748 static void codecs_free(codecs_t* codecs,int count) { |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
749 int i; |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
750 for ( i = 0; i < count; i++) |
25247 | 751 if ( codecs[i].name ) { |
752 if( codecs[i].name ) | |
753 free(codecs[i].name); | |
754 if( codecs[i].info ) | |
755 free(codecs[i].info); | |
756 if( codecs[i].comment ) | |
757 free(codecs[i].comment); | |
758 if( codecs[i].dll ) | |
759 free(codecs[i].dll); | |
760 if( codecs[i].drv ) | |
761 free(codecs[i].drv); | |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
762 } |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
763 if (codecs) |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
764 free(codecs); |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
765 } |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
766 |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
17120
diff
changeset
|
767 void codecs_uninit_free(void) { |
13936
589b227e3367
fix crash when a "driver" line is missing in codecs.conf.
reimar
parents:
13807
diff
changeset
|
768 if (video_codecs) |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
769 codecs_free(video_codecs,nr_vcodecs); |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
770 video_codecs=NULL; |
13936
589b227e3367
fix crash when a "driver" line is missing in codecs.conf.
reimar
parents:
13807
diff
changeset
|
771 if (audio_codecs) |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
772 codecs_free(audio_codecs,nr_acodecs); |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
773 audio_codecs=NULL; |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
774 } |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
775 |
332 | 776 codecs_t *find_audio_codec(unsigned int fourcc, unsigned int *fourccmap, |
16321
efbfac98cab1
Allow forcing of demuxers and codecs by prepending '+'
reimar
parents:
15315
diff
changeset
|
777 codecs_t *start, int force) |
328 | 778 { |
16321
efbfac98cab1
Allow forcing of demuxers and codecs by prepending '+'
reimar
parents:
15315
diff
changeset
|
779 return find_codec(fourcc, fourccmap, start, 1, force); |
328 | 780 } |
781 | |
332 | 782 codecs_t *find_video_codec(unsigned int fourcc, unsigned int *fourccmap, |
16321
efbfac98cab1
Allow forcing of demuxers and codecs by prepending '+'
reimar
parents:
15315
diff
changeset
|
783 codecs_t *start, int force) |
328 | 784 { |
16321
efbfac98cab1
Allow forcing of demuxers and codecs by prepending '+'
reimar
parents:
15315
diff
changeset
|
785 return find_codec(fourcc, fourccmap, start, 0, force); |
328 | 786 } |
787 | |
332 | 788 codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap, |
16321
efbfac98cab1
Allow forcing of demuxers and codecs by prepending '+'
reimar
parents:
15315
diff
changeset
|
789 codecs_t *start, int audioflag, int force) |
328 | 790 { |
791 int i, j; | |
792 codecs_t *c; | |
793 | |
628 | 794 #if 0 |
332 | 795 if (start) { |
796 for (/* NOTHING */; start->name; start++) { | |
797 for (j = 0; j < CODECS_MAX_FOURCC; j++) { | |
798 if (start->fourcc[j] == fourcc) { | |
799 if (fourccmap) | |
800 *fourccmap = start->fourccmap[j]; | |
801 return start; | |
802 } | |
803 } | |
804 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
805 } else |
628 | 806 #endif |
807 { | |
332 | 808 if (audioflag) { |
809 i = nr_acodecs; | |
810 c = audio_codecs; | |
811 } else { | |
812 i = nr_vcodecs; | |
813 c = video_codecs; | |
814 } | |
895 | 815 if(!i) return NULL; |
332 | 816 for (/* NOTHING */; i--; c++) { |
628 | 817 if(start && c<=start) continue; |
332 | 818 for (j = 0; j < CODECS_MAX_FOURCC; j++) { |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
819 // FIXME: do NOT hardwire 'null' name here: |
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
820 if (c->fourcc[j]==fourcc || !strcmp(c->drv,"null")) { |
332 | 821 if (fourccmap) |
822 *fourccmap = c->fourccmap[j]; | |
823 return c; | |
824 } | |
328 | 825 } |
16321
efbfac98cab1
Allow forcing of demuxers and codecs by prepending '+'
reimar
parents:
15315
diff
changeset
|
826 if (force) return c; |
328 | 827 } |
828 } | |
829 return NULL; | |
303 | 830 } |
831 | |
25661
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
832 void stringset_init(stringset_t *set) { |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
833 *set = calloc(1, sizeof(char *)); |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
834 } |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
835 |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
836 void stringset_free(stringset_t *set) { |
25663 | 837 int count = 0; |
838 while ((*set)[count]) free((*set)[count++]); | |
25661
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
839 free(*set); |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
840 *set = NULL; |
7505 | 841 } |
842 | |
25661
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
843 void stringset_add(stringset_t *set, const char *str) { |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
844 int count = 0; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
845 while ((*set)[count]) count++; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
846 count++; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
847 *set = realloc(*set, sizeof(char *) * (count + 1)); |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
848 (*set)[count - 1] = strdup(str); |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
849 (*set)[count] = NULL; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
850 } |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
851 |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
852 int stringset_test(stringset_t *set, const char *str) { |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
853 stringset_t s; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
854 for (s = *set; *s; s++) |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
855 if (strcmp(*s, str) == 0) |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
856 return 1; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
857 return 0; |
5325
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
858 } |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
859 |
1983 | 860 void list_codecs(int audioflag){ |
2050 | 861 int i; |
1983 | 862 codecs_t *c; |
863 | |
864 if (audioflag) { | |
865 i = nr_acodecs; | |
866 c = audio_codecs; | |
7193 | 867 mp_msg(MSGT_CODECCFG,MSGL_INFO,"ac: afm: status: info: [lib/dll]\n"); |
1983 | 868 } else { |
869 i = nr_vcodecs; | |
870 c = video_codecs; | |
7193 | 871 mp_msg(MSGT_CODECCFG,MSGL_INFO,"vc: vfm: status: info: [lib/dll]\n"); |
1983 | 872 } |
2050 | 873 if(!i) return; |
1983 | 874 for (/* NOTHING */; i--; c++) { |
1984 | 875 char* s="unknown "; |
876 switch(c->status){ | |
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; | |
881 } | |
1983 | 882 if(c->dll) |
7193 | 883 mp_msg(MSGT_CODECCFG,MSGL_INFO,"%-11s %-9s %s %s [%s]\n",c->name,c->drv,s,c->info,c->dll); |
1983 | 884 else |
7193 | 885 mp_msg(MSGT_CODECCFG,MSGL_INFO,"%-11s %-9s %s %s\n",c->name,c->drv,s,c->info); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
886 |
1983 | 887 } |
888 | |
889 } | |
890 | |
891 | |
892 | |
607 | 893 #ifdef CODECS2HTML |
894 void wrapline(FILE *f2,char *s){ | |
895 int c; | |
896 if(!s){ | |
897 fprintf(f2,"-"); | |
898 return; | |
899 } | |
900 while((c=*s++)){ | |
901 if(c==',') fprintf(f2,"<br>"); else fputc(c,f2); | |
902 } | |
903 } | |
904 | |
905 void parsehtml(FILE *f1,FILE *f2,codecs_t *codec,int section,int dshow){ | |
906 int c,d; | |
907 while((c=fgetc(f1))>=0){ | |
908 if(c!='%'){ | |
909 fputc(c,f2); | |
910 continue; | |
911 } | |
912 d=fgetc(f1); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
913 |
607 | 914 switch(d){ |
915 case '.': | |
613 | 916 return; // end of section |
607 | 917 case 'n': |
918 wrapline(f2,codec->name); break; | |
919 case 'i': | |
920 wrapline(f2,codec->info); break; | |
921 case 'c': | |
922 wrapline(f2,codec->comment); break; | |
923 case 'd': | |
924 wrapline(f2,codec->dll); break; | |
925 case 'D': | |
8205
5c675b344bfb
This patch goes into the #ifdef CODECS2HTML section of
arpi
parents:
7770
diff
changeset
|
926 fprintf(f2,"%c",!strcmp(codec->drv,"dshow")?'+':'-'); break; |
607 | 927 case 'F': |
928 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
|
929 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
|
930 fprintf(f2,"%s%.4s",d?"<br>":"",(codec->fourcc[d]==0xFFFFFFFF || codec->fourcc[d]<0x20202020)?!d?"-":"":(char*) &codec->fourcc[d]); |
607 | 931 break; |
932 case 'f': | |
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]); | |
936 break; | |
937 case 'Y': | |
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); | |
944 } | |
945 break; | |
946 default: | |
947 fputc(c,f2); | |
948 fputc(d,f2); | |
949 } | |
950 } | |
951 | |
952 } | |
953 | |
954 void skiphtml(FILE *f1){ | |
955 int c,d; | |
956 while((c=fgetc(f1))>=0){ | |
957 if(c!='%'){ | |
958 continue; | |
959 } | |
960 d=fgetc(f1); | |
961 if(d=='.') return; // end of section | |
962 } | |
963 } | |
964 | |
29115
1e78a310487e
Change type of first argument of the print_int_array function from int to
diego
parents:
28747
diff
changeset
|
965 static void print_int_array(const unsigned int* a, int size) |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
966 { |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
967 printf("{ "); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
968 while (size--) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
969 if(abs(*a)<256) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
970 printf("%d%s", *a++, size?", ":""); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
971 else |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
972 printf("0x%X%s", *a++, size?", ":""); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
973 printf(" }"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
974 } |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
975 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
976 static void print_char_array(const unsigned char* a, int size) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
977 { |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
978 printf("{ "); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
979 while (size--) |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
980 if((*a)<10) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
981 printf("%d%s", *a++, size?", ":""); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
982 else |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
983 printf("0x%02x%s", *a++, size?", ":""); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
984 printf(" }"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
985 } |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
986 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
987 static void print_string(const char* s) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
988 { |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
989 if (!s) printf("NULL"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
990 else printf("\"%s\"", s); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
991 } |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
992 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
993 int main(int argc, char* argv[]) |
607 | 994 { |
4027 | 995 codecs_t *cl; |
607 | 996 FILE *f1; |
997 FILE *f2; | |
998 int c,d,i; | |
999 int pos; | |
1000 int section=-1; | |
1001 int nr_codecs; | |
1002 int win32=-1; | |
1003 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
|
1004 int win32ex=-1; |
607 | 1005 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1006 /* |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1007 * Take path to codecs.conf from command line, or fall back on |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1008 * etc/codecs.conf |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1009 */ |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1010 if (!(nr_codecs = parse_codec_cfg((argc>1)?argv[1]:"etc/codecs.conf"))) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1011 exit(1); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1012 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1013 if (argc > 1) { |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1014 int i, j; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1015 const char* nm[2]; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1016 codecs_t* cod[2]; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1017 int nr[2]; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1018 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1019 nm[0] = "builtin_video_codecs"; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1020 cod[0] = video_codecs; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1021 nr[0] = nr_vcodecs; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1022 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1023 nm[1] = "builtin_audio_codecs"; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1024 cod[1] = audio_codecs; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1025 nr[1] = nr_acodecs; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1026 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1027 printf("/* GENERATED FROM %s, DO NOT EDIT! */\n\n",argv[1]); |
26332
762918acfe06
Add missing #includes to pass 'make checkheaders' to codecs.conf.h.
diego
parents:
25663
diff
changeset
|
1028 printf("#include <stddef.h>\n",argv[1]); |
762918acfe06
Add missing #includes to pass 'make checkheaders' to codecs.conf.h.
diego
parents:
25663
diff
changeset
|
1029 printf("#include \"codec-cfg.h\"\n\n",argv[1]); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1030 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1031 for (i=0; i<2; i++) { |
25662 | 1032 printf("const codecs_t %s[] = {\n", nm[i]); |
8472 | 1033 for (j = 0; j < nr[i]; j++) { |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1034 printf("{"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1035 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1036 print_int_array(cod[i][j].fourcc, CODECS_MAX_FOURCC); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1037 printf(", /* fourcc */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1038 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1039 print_int_array(cod[i][j].fourccmap, CODECS_MAX_FOURCC); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1040 printf(", /* fourccmap */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1041 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1042 print_int_array(cod[i][j].outfmt, CODECS_MAX_OUTFMT); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1043 printf(", /* outfmt */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1044 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1045 print_char_array(cod[i][j].outflags, CODECS_MAX_OUTFMT); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1046 printf(", /* outflags */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1047 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1048 print_int_array(cod[i][j].infmt, CODECS_MAX_INFMT); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1049 printf(", /* infmt */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1050 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1051 print_char_array(cod[i][j].inflags, CODECS_MAX_INFMT); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1052 printf(", /* inflags */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1053 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1054 print_string(cod[i][j].name); printf(", /* name */\n"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1055 print_string(cod[i][j].info); printf(", /* info */\n"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1056 print_string(cod[i][j].comment); printf(", /* comment */\n"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1057 print_string(cod[i][j].dll); printf(", /* dll */\n"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1058 print_string(cod[i][j].drv); printf(", /* drv */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1059 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1060 printf("{ 0x%08lx, %hu, %hu,", |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1061 cod[i][j].guid.f1, |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1062 cod[i][j].guid.f2, |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1063 cod[i][j].guid.f3); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1064 print_char_array(cod[i][j].guid.f4, sizeof(cod[i][j].guid.f4)); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1065 printf(" }, /* GUID */\n"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1066 printf("%hd /* flags */, %hd /* status */, %hd /* cpuflags */ }\n", |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1067 cod[i][j].flags, |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1068 cod[i][j].status, |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1069 cod[i][j].cpuflags); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1070 if (j < nr[i]) printf(",\n"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1071 } |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1072 printf("};\n\n"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1073 } |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1074 exit(0); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1075 } |
607 | 1076 |
10859 | 1077 f1=fopen("DOCS/tech/codecs-in.html","rb"); if(!f1) exit(1); |
15315
fd674500a042
codecs-status.html should be written to an existing path.
diego
parents:
15305
diff
changeset
|
1078 f2=fopen("DOCS/codecs-status.html","wb"); if(!f2) exit(1); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1079 |
607 | 1080 while((c=fgetc(f1))>=0){ |
1081 if(c!='%'){ | |
1082 fputc(c,f2); | |
1083 continue; | |
1084 } | |
1085 d=fgetc(f1); | |
1086 if(d>='0' && d<='9'){ | |
1087 // begin section | |
1088 section=d-'0'; | |
17762 | 1089 //printf("BEGIN %d\n",section); |
607 | 1090 if(section>=5){ |
1091 // audio | |
4027 | 1092 cl = audio_codecs; |
607 | 1093 nr_codecs = nr_acodecs; |
1094 dshow=7;win32=4; | |
1095 } else { | |
1096 // video | |
4027 | 1097 cl = video_codecs; |
607 | 1098 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
|
1099 dshow=4;win32=2;win32ex=6; |
607 | 1100 } |
1101 pos=ftell(f1); | |
1102 for(i=0;i<nr_codecs;i++){ | |
1103 fseek(f1,pos,SEEK_SET); | |
1104 switch(section){ | |
1105 case 0: | |
1106 case 5: | |
1107 if(cl[i].status==CODECS_STATUS_WORKING) | |
8211 | 1108 // if(!(!strcmp(cl[i].drv,"vfw") || !strcmp(cl[i].drv,"dshow") || !strcmp(cl[i].drv,"vfwex") || !strcmp(cl[i].drv,"acm"))) |
607 | 1109 parsehtml(f1,f2,&cl[i],section,dshow); |
1110 break; | |
8211 | 1111 #if 0 |
607 | 1112 case 1: |
1113 case 6: | |
1114 if(cl[i].status==CODECS_STATUS_WORKING) | |
8211 | 1115 if((!strcmp(cl[i].drv,"vfw") || !strcmp(cl[i].drv,"dshow") || !strcmp(cl[i].drv,"vfwex") || !strcmp(cl[i].drv,"acm"))) |
607 | 1116 parsehtml(f1,f2,&cl[i],section,dshow); |
1117 break; | |
8211 | 1118 #endif |
607 | 1119 case 2: |
1120 case 7: | |
1121 if(cl[i].status==CODECS_STATUS_PROBLEMS) | |
1122 parsehtml(f1,f2,&cl[i],section,dshow); | |
1123 break; | |
1124 case 3: | |
1125 case 8: | |
1126 if(cl[i].status==CODECS_STATUS_NOT_WORKING) | |
1127 parsehtml(f1,f2,&cl[i],section,dshow); | |
1128 break; | |
1129 case 4: | |
1130 case 9: | |
1131 if(cl[i].status==CODECS_STATUS_UNTESTED) | |
1132 parsehtml(f1,f2,&cl[i],section,dshow); | |
1133 break; | |
1134 default: | |
1135 printf("Warning! unimplemented section: %d\n",section); | |
1136 } | |
1137 } | |
1138 fseek(f1,pos,SEEK_SET); | |
1139 skiphtml(f1); | |
1140 //void parsehtml(FILE *f1,FILE *f2,codecs_t *codec,int section,int dshow){ | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1141 |
607 | 1142 continue; |
1143 } | |
1144 fputc(c,f2); | |
1145 fputc(d,f2); | |
1146 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1147 |
607 | 1148 fclose(f2); |
1149 fclose(f1); | |
1150 return 0; | |
1151 } | |
1152 | |
1153 #endif | |
1154 | |
297 | 1155 #ifdef TESTING |
1156 int main(void) | |
1157 { | |
4676 | 1158 codecs_t *c; |
328 | 1159 int i,j, nr_codecs, state; |
297 | 1160 |
4676 | 1161 if (!(parse_codec_cfg("etc/codecs.conf"))) |
319 | 1162 return 0; |
4676 | 1163 if (!video_codecs) |
328 | 1164 printf("no videoconfig.\n"); |
4676 | 1165 if (!audio_codecs) |
328 | 1166 printf("no audioconfig.\n"); |
1167 | |
1168 printf("videocodecs:\n"); | |
4676 | 1169 c = video_codecs; |
328 | 1170 nr_codecs = nr_vcodecs; |
1171 state = 0; | |
1172 next: | |
1173 if (c) { | |
4676 | 1174 printf("number of %scodecs: %d\n", state==0?"video":"audio", |
1175 nr_codecs); | |
328 | 1176 for(i=0;i<nr_codecs;i++, c++){ |
4676 | 1177 printf("\n============== %scodec %02d ===============\n", |
1178 state==0?"video":"audio",i); | |
328 | 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); | |
26848 | 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); | |
300 | 1187 |
328 | 1188 for(j=0;j<CODECS_MAX_FOURCC;j++){ |
1189 if(c->fourcc[j]!=0xFFFFFFFF){ | |
361 | 1190 printf("fourcc %02d: %08X (%.4s) ===> %08X (%.4s)\n",j,c->fourcc[j],(char *) &c->fourcc[j],c->fourccmap[j],(char *) &c->fourccmap[j]); |
328 | 1191 } |
1192 } | |
1193 | |
1194 for(j=0;j<CODECS_MAX_OUTFMT;j++){ | |
1195 if(c->outfmt[j]!=0xFFFFFFFF){ | |
361 | 1196 printf("outfmt %02d: %08X (%.4s) flags: %d\n",j,c->outfmt[j],(char *) &c->outfmt[j],c->outflags[j]); |
328 | 1197 } |
1198 } | |
300 | 1199 |
4676 | 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]); | |
1203 } | |
1204 } | |
1205 | |
328 | 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]); | |
1208 printf("\n"); | |
300 | 1209 |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1210 |
328 | 1211 } |
1212 } | |
1213 if (!state) { | |
1214 printf("audiocodecs:\n"); | |
4676 | 1215 c = audio_codecs; |
328 | 1216 nr_codecs = nr_acodecs; |
1217 state = 1; | |
1218 goto next; | |
1219 } | |
297 | 1220 return 0; |
1221 } | |
1222 | |
1223 #endif |