Mercurial > mplayer.hg
annotate codec-cfg.c @ 30408:9e0db8b6957b
glXSwapIntervalEXT is defined to take different arguments from glXSwapIntervalSGI,
so do not try to use it.
Patch by Stephen Warren [swarren nvidia com]
author | reimar |
---|---|
date | Thu, 28 Jan 2010 18:01:19 +0000 |
parents | ad61464d02a7 |
children | c1a3f1bbba26 |
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}, |
30110 | 155 {"444P16LE", IMGFMT_444P16_LE}, |
156 {"444P16BE", IMGFMT_444P16_BE}, | |
157 {"422P16LE", IMGFMT_422P16_LE}, | |
158 {"422P16BE", IMGFMT_422P16_BE}, | |
159 {"420P16LE", IMGFMT_420P16_LE}, | |
160 {"420P16BE", IMGFMT_420P16_BE}, | |
161 {"444P16", IMGFMT_444P16}, | |
162 {"422P16", IMGFMT_422P16}, | |
163 {"420P16", IMGFMT_420P16}, | |
30115
ad61464d02a7
Add support for YUV format with alpha and fix the codecs.conf entry for vp6a
reimar
parents:
30110
diff
changeset
|
164 {"420A", IMGFMT_420A}, |
6863 | 165 {"444P", IMGFMT_444P}, |
166 {"422P", IMGFMT_422P}, | |
167 {"411P", IMGFMT_411P}, | |
30098 | 168 {"440P", IMGFMT_440P}, |
14170 | 169 {"Y800", IMGFMT_Y800}, |
170 {"Y8", IMGFMT_Y8}, | |
408 | 171 |
415 | 172 {"YUY2", IMGFMT_YUY2}, |
173 {"UYVY", IMGFMT_UYVY}, | |
174 {"YVYU", IMGFMT_YVYU}, | |
408 | 175 |
29458
c85a54f30ed9
100l, fix compilation again and make codec-cfg.c use the predefined constants
reimar
parents:
29454
diff
changeset
|
176 {"RGB48LE", IMGFMT_RGB48LE}, |
c85a54f30ed9
100l, fix compilation again and make codec-cfg.c use the predefined constants
reimar
parents:
29454
diff
changeset
|
177 {"RGB48BE", IMGFMT_RGB48BE}, |
29459
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
178 {"RGB4", IMGFMT_RGB4}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
179 {"RGB8", IMGFMT_RGB8}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
180 {"RGB15", IMGFMT_RGB15}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
181 {"RGB16", IMGFMT_RGB16}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
182 {"RGB24", IMGFMT_RGB24}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
183 {"RGB32", IMGFMT_RGB32}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
184 {"BGR4", IMGFMT_BGR4}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
185 {"BGR8", IMGFMT_BGR8}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
186 {"BGR15", IMGFMT_BGR15}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
187 {"BGR16", IMGFMT_BGR16}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
188 {"BGR24", IMGFMT_BGR24}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
189 {"BGR32", IMGFMT_BGR32}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
190 {"RGB1", IMGFMT_RGB1}, |
c1bf06060606
make codec-cfg reuse the proper defined constants for all RGB/BGR formats
reimar
parents:
29458
diff
changeset
|
191 {"BGR1", IMGFMT_BGR1}, |
1871 | 192 |
193 {"MPES", IMGFMT_MPEGPES}, | |
11388
a9de2f4781dd
updates for new image formats for zoran mjpeg passthrough
rik
parents:
10859
diff
changeset
|
194 {"ZRMJPEGNI", IMGFMT_ZRMJPEGNI}, |
a9de2f4781dd
updates for new image formats for zoran mjpeg passthrough
rik
parents:
10859
diff
changeset
|
195 {"ZRMJPEGIT", IMGFMT_ZRMJPEGIT}, |
a9de2f4781dd
updates for new image formats for zoran mjpeg passthrough
rik
parents:
10859
diff
changeset
|
196 {"ZRMJPEGIB", IMGFMT_ZRMJPEGIB}, |
10316 | 197 |
198 {"IDCT_MPEG2",IMGFMT_XVMC_IDCT_MPEG2}, | |
199 {"MOCO_MPEG2",IMGFMT_XVMC_MOCO_MPEG2}, | |
200 | |
28516
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
201 {"VDPAU_MPEG1",IMGFMT_VDPAU_MPEG1}, |
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
202 {"VDPAU_MPEG2",IMGFMT_VDPAU_MPEG2}, |
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
203 {"VDPAU_H264",IMGFMT_VDPAU_H264}, |
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
204 {"VDPAU_WMV3",IMGFMT_VDPAU_WMV3}, |
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
205 {"VDPAU_VC1",IMGFMT_VDPAU_VC1}, |
29843
f6d56a15f1d8
Support VDPAU hardware accelerated decoding of MPEG-4 ASP on capable
cehoyos
parents:
29459
diff
changeset
|
206 {"VDPAU_MPEG4",IMGFMT_VDPAU_MPEG4}, |
28516
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
207 |
415 | 208 {NULL, 0} |
297 | 209 }; |
408 | 210 |
607 | 211 |
4675 | 212 static int add_to_inout(char *sfmt, char *sflags, unsigned int *outfmt, |
607 | 213 unsigned char *outflags) |
214 { | |
215 | |
299 | 216 static char *flagstr[] = { |
217 "flip", | |
218 "noflip", | |
219 "yuvhack", | |
5249 | 220 "query", |
6103 | 221 "static", |
299 | 222 NULL |
223 }; | |
224 | |
319 | 225 int i, j, freeslots; |
297 | 226 unsigned char flags; |
227 | |
228 for (i = 0; i < CODECS_MAX_OUTFMT && outfmt[i] != 0xffffffff; i++) | |
229 /* NOTHING */; | |
319 | 230 freeslots = CODECS_MAX_OUTFMT - i; |
231 if (!freeslots) | |
328 | 232 goto err_out_too_many; |
297 | 233 |
319 | 234 flags = 0; |
361 | 235 if(sflags) { |
236 do { | |
237 for (j = 0; flagstr[j] != NULL; j++) | |
238 if (!strncmp(sflags, flagstr[j], | |
239 strlen(flagstr[j]))) | |
240 break; | |
241 if (flagstr[j] == NULL) | |
242 goto err_out_parse_error; | |
243 flags|=(1<<j); | |
244 sflags+=strlen(flagstr[j]); | |
245 } while (*(sflags++) == ','); | |
246 | |
247 if (*(--sflags) != '\0') | |
248 goto err_out_parse_error; | |
249 } | |
297 | 250 |
251 do { | |
408 | 252 for (j = 0; fmt_table[j].name != NULL; j++) |
253 if (!strncmp(sfmt, fmt_table[j].name, strlen(fmt_table[j].name))) | |
297 | 254 break; |
408 | 255 if (fmt_table[j].name == NULL) |
361 | 256 goto err_out_parse_error; |
408 | 257 outfmt[i] = fmt_table[j].num; |
297 | 258 outflags[i] = flags; |
299 | 259 ++i; |
408 | 260 sfmt+=strlen(fmt_table[j].name); |
319 | 261 } while ((*(sfmt++) == ',') && --freeslots); |
262 | |
263 if (!freeslots) | |
328 | 264 goto err_out_too_many; |
319 | 265 |
361 | 266 if (*(--sfmt) != '\0') |
267 goto err_out_parse_error; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
268 |
297 | 269 return 1; |
328 | 270 err_out_too_many: |
13619 | 271 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_TooManyOut); |
361 | 272 return 0; |
273 err_out_parse_error: | |
13619 | 274 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseError); |
319 | 275 return 0; |
297 | 276 } |
277 | |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
278 #if 0 |
303 | 279 static short get_driver(char *s,int audioflag) |
297 | 280 { |
301 | 281 static char *audiodrv[] = { |
1293 | 282 "null", |
301 | 283 "mp3lib", |
284 "pcm", | |
285 "libac3", | |
286 "acm", | |
287 "alaw", | |
288 "msgsm", | |
289 "dshow", | |
401 | 290 "dvdpcm", |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1488
diff
changeset
|
291 "hwac3", |
1828 | 292 "libvorbis", |
1929 | 293 "ffmpeg", |
2415 | 294 "libmad", |
3787 | 295 "msadpcm", |
3400 | 296 "liba52", |
297 "g72x", | |
3787 | 298 "imaadpcm", |
4854
4a6dde59834c
fixed, strengthened, rewrote, and renamed a variety of the ADPCM decoders
melanson
parents:
4676
diff
changeset
|
299 "dk4adpcm", |
4a6dde59834c
fixed, strengthened, rewrote, and renamed a variety of the ADPCM decoders
melanson
parents:
4676
diff
changeset
|
300 "dk3adpcm", |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4301
diff
changeset
|
301 "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
|
302 "faad", |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6200
diff
changeset
|
303 "realaud", |
6927 | 304 "libdv", |
301 | 305 NULL |
306 }; | |
307 static char *videodrv[] = { | |
1293 | 308 "null", |
301 | 309 "libmpeg2", |
310 "vfw", | |
311 "dshow", | |
1248 | 312 "ffmpeg", |
1297 | 313 "vfwex", |
1488 | 314 "raw", |
5193
abea2deab4d6
MPlayer now has a Microsoft RLE decoder to call its own...only supports
melanson
parents:
5190
diff
changeset
|
315 "msrle", |
2379 | 316 "xanim", |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2681
diff
changeset
|
317 "msvidc", |
3172 | 318 "fli", |
3643
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3408
diff
changeset
|
319 "cinepak", |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3667
diff
changeset
|
320 "qtrle", |
3804
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3798
diff
changeset
|
321 "nuv", |
3969 | 322 "cyuv", |
4227 | 323 "qtsmc", |
4301
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
324 "ducktm1", |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4301
diff
changeset
|
325 "roqvideo", |
4615
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4450
diff
changeset
|
326 "qtrpza", |
4656 | 327 "mpng", |
5029 | 328 "ijpg", |
5263 | 329 "zlib", |
5478 | 330 "mpegpes", |
11388
a9de2f4781dd
updates for new image formats for zoran mjpeg passthrough
rik
parents:
10859
diff
changeset
|
331 "zrmjpeg", |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6200
diff
changeset
|
332 "realvid", |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6565
diff
changeset
|
333 "xvid", |
6927 | 334 "libdv", |
301 | 335 NULL |
336 }; | |
337 char **drv=audioflag?audiodrv:videodrv; | |
338 int i; | |
6863 | 339 |
1293 | 340 for(i=0;drv[i];i++) if(!strcmp(s,drv[i])) return i; |
301 | 341 |
1293 | 342 return -1; |
297 | 343 } |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
344 #endif |
297 | 345 |
328 | 346 static int validate_codec(codecs_t *c, int type) |
319 | 347 { |
5937 | 348 unsigned int i; |
7770 | 349 char *tmp_name = c->name; |
328 | 350 |
3408 | 351 for (i = 0; i < strlen(tmp_name) && isalnum(tmp_name[i]); i++) |
328 | 352 /* NOTHING */; |
3408 | 353 |
354 if (i < strlen(tmp_name)) { | |
13619 | 355 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_InvalidCodecName, c->name); |
328 | 356 return 0; |
357 } | |
3408 | 358 |
328 | 359 if (!c->info) |
3408 | 360 c->info = strdup(c->name); |
361 | |
362 #if 0 | |
328 | 363 if (c->fourcc[0] == 0xffffffff) { |
13619 | 364 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecLacksFourcc, c->name); |
328 | 365 return 0; |
366 } | |
13936
589b227e3367
fix crash when a "driver" line is missing in codecs.conf.
reimar
parents:
13807
diff
changeset
|
367 #endif |
3408 | 368 |
13936
589b227e3367
fix crash when a "driver" line is missing in codecs.conf.
reimar
parents:
13807
diff
changeset
|
369 if (!c->drv) { |
13619 | 370 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecLacksDriver, c->name); |
328 | 371 return 0; |
372 } | |
3408 | 373 |
374 #if 0 | |
24933
4fc6e60dac36
Avoid short forms; has the added benefit of allowing compilation with gcc 2.95
diego
parents:
24928
diff
changeset
|
375 #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
|
376 #warning Where are they defined ???????????? |
328 | 377 if (!c->dll && (c->driver == 4 || |
378 (c->driver == 2 && type == TYPE_VIDEO))) { | |
13619 | 379 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecNeedsDLL, c->name); |
328 | 380 return 0; |
381 } | |
24928
62b57875bb28
Replace some Hungarian comments, thanks to Denes Balatoni for the translation.
diego
parents:
23910
diff
changeset
|
382 #warning Can guid.f1 be 0? How does one know that it was not given? |
328 | 383 // if (!(codec->flags & CODECS_FLAG_AUDIO) && codec->driver == 4) |
384 | |
385 if (type == TYPE_VIDEO) | |
386 if (c->outfmt[0] == 0xffffffff) { | |
13619 | 387 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecNeedsOutfmt, c->name); |
328 | 388 return 0; |
389 } | |
329 | 390 #endif |
319 | 391 return 1; |
392 } | |
393 | |
394 static int add_comment(char *s, char **d) | |
395 { | |
396 int pos; | |
397 | |
398 if (!*d) | |
399 pos = 0; | |
400 else { | |
401 pos = strlen(*d); | |
402 (*d)[pos++] = '\n'; | |
403 } | |
23806 | 404 if (!(*d = realloc(*d, pos + strlen(s) + 1))) { |
13619 | 405 mp_msg(MSGT_CODECCFG,MSGL_FATAL,MSGTR_CantAllocateComment); |
319 | 406 return 0; |
407 } | |
408 strcpy(*d + pos, s); | |
409 return 1; | |
410 } | |
297 | 411 |
361 | 412 static short get_cpuflags(char *s) |
413 { | |
414 static char *flagstr[] = { | |
415 "mmx", | |
416 "sse", | |
417 "3dnow", | |
418 NULL | |
419 }; | |
420 int i; | |
421 short flags = 0; | |
422 | |
423 do { | |
424 for (i = 0; flagstr[i]; i++) | |
425 if (!strncmp(s, flagstr[i], strlen(flagstr[i]))) | |
426 break; | |
427 if (!flagstr[i]) | |
428 goto err_out_parse_error; | |
429 flags |= 1<<i; | |
430 s += strlen(flagstr[i]); | |
431 } while (*(s++) == ','); | |
432 | |
433 if (*(--s) != '\0') | |
434 goto err_out_parse_error; | |
435 | |
436 return flags; | |
437 err_out_parse_error: | |
438 return 0; | |
439 } | |
440 | |
328 | 441 static FILE *fp; |
442 static int line_num = 0; | |
443 static char *line; | |
444 static char *token[MAX_NR_TOKEN]; | |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
445 static int read_nextline = 1; |
328 | 446 |
447 static int get_token(int min, int max) | |
297 | 448 { |
328 | 449 static int line_pos; |
450 int i; | |
451 char c; | |
452 | |
453 if (max >= MAX_NR_TOKEN) { | |
13619 | 454 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_GetTokenMaxNotLessThanMAX_NR_TOKEN); |
328 | 455 goto out_eof; |
456 } | |
457 | |
458 memset(token, 0x00, sizeof(*token) * max); | |
459 | |
460 if (read_nextline) { | |
461 if (!fgets(line, MAX_LINE_LEN, fp)) | |
462 goto out_eof; | |
463 line_pos = 0; | |
464 ++line_num; | |
465 read_nextline = 0; | |
466 } | |
467 for (i = 0; i < max; i++) { | |
468 while (isspace(line[line_pos])) | |
469 ++line_pos; | |
470 if (line[line_pos] == '\0' || line[line_pos] == '#' || | |
471 line[line_pos] == ';') { | |
472 read_nextline = 1; | |
473 if (i >= min) | |
474 goto out_ok; | |
475 goto out_eol; | |
476 } | |
477 token[i] = line + line_pos; | |
478 c = line[line_pos]; | |
479 if (c == '"' || c == '\'') { | |
480 token[i]++; | |
481 while (line[++line_pos] != c && line[line_pos]) | |
482 /* NOTHING */; | |
483 } else { | |
484 for (/* NOTHING */; !isspace(line[line_pos]) && | |
485 line[line_pos]; line_pos++) | |
486 /* NOTHING */; | |
487 } | |
488 if (!line[line_pos]) { | |
489 read_nextline = 1; | |
490 if (i >= min - 1) | |
491 goto out_ok; | |
492 goto out_eol; | |
493 } | |
494 line[line_pos] = '\0'; | |
495 line_pos++; | |
496 } | |
497 out_ok: | |
498 return i; | |
499 out_eof: | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
500 read_nextline = 1; |
328 | 501 return RET_EOF; |
502 out_eol: | |
503 return RET_EOL; | |
504 } | |
505 | |
506 static codecs_t *video_codecs=NULL; | |
507 static codecs_t *audio_codecs=NULL; | |
508 static int nr_vcodecs = 0; | |
509 static int nr_acodecs = 0; | |
510 | |
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
|
511 int parse_codec_cfg(const char *cfgfile) |
328 | 512 { |
513 codecs_t *codec = NULL; // current codec | |
514 codecs_t **codecsp = NULL;// points to audio_codecs or to video_codecs | |
335 | 515 char *endptr; // strtoul()... |
328 | 516 int *nr_codecsp; |
517 int codec_type; /* TYPE_VIDEO/TYPE_AUDIO */ | |
297 | 518 int tmp, i; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
519 |
8205
5c675b344bfb
This patch goes into the #ifdef CODECS2HTML section of
arpi
parents:
7770
diff
changeset
|
520 // 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
|
521 codecs_uninit_free(); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
522 |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
523 nr_vcodecs = 0; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
524 nr_acodecs = 0; |
297 | 525 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
526 if(cfgfile==NULL) { |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
527 #ifdef CODECS2HTML |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
528 return 0; |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
529 #else |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
530 video_codecs = builtin_video_codecs; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
531 audio_codecs = builtin_audio_codecs; |
8472 | 532 nr_vcodecs = sizeof(builtin_video_codecs)/sizeof(codecs_t); |
533 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
|
534 return 1; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
535 #endif |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
536 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
537 |
13946 | 538 mp_msg(MSGT_CODECCFG,MSGL_V,MSGTR_ReadingFile, cfgfile); |
297 | 539 |
301 | 540 if ((fp = fopen(cfgfile, "r")) == NULL) { |
13946 | 541 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
|
542 return 0; |
297 | 543 } |
544 | |
23806 | 545 if ((line = malloc(MAX_LINE_LEN + 1)) == NULL) { |
13619 | 546 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
|
547 return 0; |
297 | 548 } |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
549 read_nextline = 1; |
297 | 550 |
328 | 551 /* |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
552 * 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
|
553 * codecs.conf, before audiocodecs and videocodecs. |
328 | 554 */ |
555 while ((tmp = get_token(1, 1)) == RET_EOL) | |
556 /* NOTHING */; | |
361 | 557 if (tmp == RET_EOF) |
558 goto out; | |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
559 if (!strcmp(token[0], "release")) { |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
560 if (get_token(1, 2) < 0) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
561 goto err_out_parse_error; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
562 tmp = atoi(token[0]); |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
563 if (tmp < CODEC_CFG_MIN) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
564 goto err_out_release_num; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
565 while ((tmp = get_token(1, 1)) == RET_EOL) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
566 /* NOTHING */; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
567 if (tmp == RET_EOF) |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
568 goto out; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
569 } else |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
570 goto err_out_release_num; |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
571 |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
572 /* |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
573 * 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
|
574 * with 'videocodec' |
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
575 */ |
361 | 576 if (!strcmp(token[0], "audiocodec") || !strcmp(token[0], "videocodec")) |
328 | 577 goto loop_enter; |
361 | 578 goto err_out_parse_error; |
328 | 579 |
319 | 580 while ((tmp = get_token(1, 1)) != RET_EOF) { |
297 | 581 if (tmp == RET_EOL) |
582 continue; | |
328 | 583 if (!strcmp(token[0], "audiocodec") || |
584 !strcmp(token[0], "videocodec")) { | |
585 if (!validate_codec(codec, codec_type)) | |
586 goto err_out_not_valid; | |
587 loop_enter: | |
588 if (*token[0] == 'v') { | |
589 codec_type = TYPE_VIDEO; | |
590 nr_codecsp = &nr_vcodecs; | |
591 codecsp = &video_codecs; | |
592 } else if (*token[0] == 'a') { | |
593 codec_type = TYPE_AUDIO; | |
594 nr_codecsp = &nr_acodecs; | |
595 codecsp = &audio_codecs; | |
361 | 596 #ifdef DEBUG |
328 | 597 } else { |
5937 | 598 mp_msg(MSGT_CODECCFG,MSGL_ERR,"picsba\n"); |
328 | 599 goto err_out; |
361 | 600 #endif |
328 | 601 } |
23806 | 602 if (!(*codecsp = realloc(*codecsp, |
332 | 603 sizeof(codecs_t) * (*nr_codecsp + 2)))) { |
13619 | 604 mp_msg(MSGT_CODECCFG,MSGL_FATAL,MSGTR_CantReallocCodecsp, strerror(errno)); |
300 | 605 goto err_out; |
606 } | |
328 | 607 codec=*codecsp + *nr_codecsp; |
608 ++*nr_codecsp; | |
300 | 609 memset(codec,0,sizeof(codecs_t)); |
610 memset(codec->fourcc, 0xff, sizeof(codec->fourcc)); | |
611 memset(codec->outfmt, 0xff, sizeof(codec->outfmt)); | |
4675 | 612 memset(codec->infmt, 0xff, sizeof(codec->infmt)); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
613 |
319 | 614 if (get_token(1, 1) < 0) |
328 | 615 goto err_out_parse_error; |
616 for (i = 0; i < *nr_codecsp - 1; i++) { | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
617 if(( (*codecsp)[i].name!=NULL) && |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
618 (!strcmp(token[0], (*codecsp)[i].name)) ) { |
13619 | 619 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecNameNotUnique, token[0]); |
361 | 620 goto err_out_print_linenum; |
319 | 621 } |
622 } | |
328 | 623 if (!(codec->name = strdup(token[0]))) { |
13619 | 624 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupName, strerror(errno)); |
328 | 625 goto err_out; |
626 } | |
319 | 627 } else if (!strcmp(token[0], "info")) { |
328 | 628 if (codec->info || get_token(1, 1) < 0) |
629 goto err_out_parse_error; | |
630 if (!(codec->info = strdup(token[0]))) { | |
13619 | 631 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupInfo, strerror(errno)); |
328 | 632 goto err_out; |
633 } | |
319 | 634 } else if (!strcmp(token[0], "comment")) { |
635 if (get_token(1, 1) < 0) | |
328 | 636 goto err_out_parse_error; |
361 | 637 add_comment(token[0], &codec->comment); |
319 | 638 } else if (!strcmp(token[0], "fourcc")) { |
639 if (get_token(1, 2) < 0) | |
328 | 640 goto err_out_parse_error; |
319 | 641 if (!add_to_fourcc(token[0], token[1], |
300 | 642 codec->fourcc, |
643 codec->fourccmap)) | |
361 | 644 goto err_out_print_linenum; |
319 | 645 } else if (!strcmp(token[0], "format")) { |
7770 | 646 if (get_token(1, 2) < 0) |
328 | 647 goto err_out_parse_error; |
7770 | 648 if (!add_to_format(token[0], token[1], |
649 codec->fourcc,codec->fourccmap)) | |
361 | 650 goto err_out_print_linenum; |
319 | 651 } else if (!strcmp(token[0], "driver")) { |
652 if (get_token(1, 1) < 0) | |
328 | 653 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
|
654 if (!(codec->drv = strdup(token[0]))) { |
13619 | 655 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
|
656 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
|
657 } |
319 | 658 } else if (!strcmp(token[0], "dll")) { |
659 if (get_token(1, 1) < 0) | |
328 | 660 goto err_out_parse_error; |
661 if (!(codec->dll = strdup(token[0]))) { | |
13619 | 662 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupDLL, strerror(errno)); |
328 | 663 goto err_out; |
664 } | |
319 | 665 } else if (!strcmp(token[0], "guid")) { |
328 | 666 if (get_token(11, 11) < 0) |
667 goto err_out_parse_error; | |
335 | 668 codec->guid.f1=strtoul(token[0],&endptr,0); |
361 | 669 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
670 *endptr != '\0') | |
335 | 671 goto err_out_parse_error; |
672 codec->guid.f2=strtoul(token[1],&endptr,0); | |
361 | 673 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
674 *endptr != '\0') | |
335 | 675 goto err_out_parse_error; |
676 codec->guid.f3=strtoul(token[2],&endptr,0); | |
361 | 677 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
678 *endptr != '\0') | |
335 | 679 goto err_out_parse_error; |
680 for (i = 0; i < 8; i++) { | |
681 codec->guid.f4[i]=strtoul(token[i + 3],&endptr,0); | |
361 | 682 if ((*endptr != ',' || *(endptr + 1) != '\0') && |
683 *endptr != '\0') | |
328 | 684 goto err_out_parse_error; |
297 | 685 } |
319 | 686 } else if (!strcmp(token[0], "out")) { |
687 if (get_token(1, 2) < 0) | |
328 | 688 goto err_out_parse_error; |
4675 | 689 if (!add_to_inout(token[0], token[1], codec->outfmt, |
300 | 690 codec->outflags)) |
361 | 691 goto err_out_print_linenum; |
4675 | 692 } else if (!strcmp(token[0], "in")) { |
693 if (get_token(1, 2) < 0) | |
694 goto err_out_parse_error; | |
695 if (!add_to_inout(token[0], token[1], codec->infmt, | |
696 codec->inflags)) | |
697 goto err_out_print_linenum; | |
319 | 698 } else if (!strcmp(token[0], "flags")) { |
699 if (get_token(1, 1) < 0) | |
328 | 700 goto err_out_parse_error; |
321 | 701 if (!strcmp(token[0], "seekable")) |
702 codec->flags |= CODECS_FLAG_SEEKABLE; | |
703 else | |
6565 | 704 if (!strcmp(token[0], "align16")) |
705 codec->flags |= CODECS_FLAG_ALIGN16; | |
706 else | |
328 | 707 goto err_out_parse_error; |
319 | 708 } else if (!strcmp(token[0], "status")) { |
709 if (get_token(1, 1) < 0) | |
328 | 710 goto err_out_parse_error; |
332 | 711 if (!strcasecmp(token[0], "working")) |
316 | 712 codec->status = CODECS_STATUS_WORKING; |
332 | 713 else if (!strcasecmp(token[0], "crashing")) |
316 | 714 codec->status = CODECS_STATUS_NOT_WORKING; |
332 | 715 else if (!strcasecmp(token[0], "untested")) |
316 | 716 codec->status = CODECS_STATUS_UNTESTED; |
332 | 717 else if (!strcasecmp(token[0], "buggy")) |
316 | 718 codec->status = CODECS_STATUS_PROBLEMS; |
719 else | |
328 | 720 goto err_out_parse_error; |
361 | 721 } else if (!strcmp(token[0], "cpuflags")) { |
722 if (get_token(1, 1) < 0) | |
723 goto err_out_parse_error; | |
724 if (!(codec->cpuflags = get_cpuflags(token[0]))) | |
725 goto err_out_parse_error; | |
297 | 726 } else |
328 | 727 goto err_out_parse_error; |
297 | 728 } |
328 | 729 if (!validate_codec(codec, codec_type)) |
730 goto err_out_not_valid; | |
13619 | 731 mp_msg(MSGT_CODECCFG,MSGL_INFO,MSGTR_AudioVideoCodecTotals, nr_acodecs, nr_vcodecs); |
895 | 732 if(video_codecs) video_codecs[nr_vcodecs].name = NULL; |
733 if(audio_codecs) audio_codecs[nr_acodecs].name = NULL; | |
297 | 734 out: |
735 free(line); | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
736 line=NULL; |
297 | 737 fclose(fp); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
738 return 1; |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
739 |
328 | 740 err_out_parse_error: |
13619 | 741 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseError); |
361 | 742 err_out_print_linenum: |
297 | 743 PRINT_LINENUM; |
744 err_out: | |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
745 codecs_uninit_free(); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
746 |
328 | 747 free(line); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
748 line=NULL; |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
749 line_num = 0; |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
750 fclose(fp); |
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
751 return 0; |
328 | 752 err_out_not_valid: |
13619 | 753 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecDefinitionIncorrect); |
361 | 754 goto err_out_print_linenum; |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
755 err_out_release_num: |
13619 | 756 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
|
757 goto err_out_print_linenum; |
297 | 758 } |
759 | |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
760 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
|
761 int i; |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
762 for ( i = 0; i < count; i++) |
25247 | 763 if ( codecs[i].name ) { |
764 if( codecs[i].name ) | |
765 free(codecs[i].name); | |
766 if( codecs[i].info ) | |
767 free(codecs[i].info); | |
768 if( codecs[i].comment ) | |
769 free(codecs[i].comment); | |
770 if( codecs[i].dll ) | |
771 free(codecs[i].dll); | |
772 if( codecs[i].drv ) | |
773 free(codecs[i].drv); | |
13807
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 if (codecs) |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
776 free(codecs); |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
777 } |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
778 |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
17120
diff
changeset
|
779 void codecs_uninit_free(void) { |
13936
589b227e3367
fix crash when a "driver" line is missing in codecs.conf.
reimar
parents:
13807
diff
changeset
|
780 if (video_codecs) |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
781 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
|
782 video_codecs=NULL; |
13936
589b227e3367
fix crash when a "driver" line is missing in codecs.conf.
reimar
parents:
13807
diff
changeset
|
783 if (audio_codecs) |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
784 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
|
785 audio_codecs=NULL; |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
786 } |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
787 |
332 | 788 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
|
789 codecs_t *start, int force) |
328 | 790 { |
16321
efbfac98cab1
Allow forcing of demuxers and codecs by prepending '+'
reimar
parents:
15315
diff
changeset
|
791 return find_codec(fourcc, fourccmap, start, 1, force); |
328 | 792 } |
793 | |
332 | 794 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
|
795 codecs_t *start, int force) |
328 | 796 { |
16321
efbfac98cab1
Allow forcing of demuxers and codecs by prepending '+'
reimar
parents:
15315
diff
changeset
|
797 return find_codec(fourcc, fourccmap, start, 0, force); |
328 | 798 } |
799 | |
332 | 800 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
|
801 codecs_t *start, int audioflag, int force) |
328 | 802 { |
803 int i, j; | |
804 codecs_t *c; | |
805 | |
628 | 806 #if 0 |
332 | 807 if (start) { |
808 for (/* NOTHING */; start->name; start++) { | |
809 for (j = 0; j < CODECS_MAX_FOURCC; j++) { | |
810 if (start->fourcc[j] == fourcc) { | |
811 if (fourccmap) | |
812 *fourccmap = start->fourccmap[j]; | |
813 return start; | |
814 } | |
815 } | |
816 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
817 } else |
628 | 818 #endif |
819 { | |
332 | 820 if (audioflag) { |
821 i = nr_acodecs; | |
822 c = audio_codecs; | |
823 } else { | |
824 i = nr_vcodecs; | |
825 c = video_codecs; | |
826 } | |
895 | 827 if(!i) return NULL; |
332 | 828 for (/* NOTHING */; i--; c++) { |
628 | 829 if(start && c<=start) continue; |
332 | 830 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
|
831 // 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
|
832 if (c->fourcc[j]==fourcc || !strcmp(c->drv,"null")) { |
332 | 833 if (fourccmap) |
834 *fourccmap = c->fourccmap[j]; | |
835 return c; | |
836 } | |
328 | 837 } |
16321
efbfac98cab1
Allow forcing of demuxers and codecs by prepending '+'
reimar
parents:
15315
diff
changeset
|
838 if (force) return c; |
328 | 839 } |
840 } | |
841 return NULL; | |
303 | 842 } |
843 | |
25661
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
844 void stringset_init(stringset_t *set) { |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
845 *set = calloc(1, sizeof(char *)); |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
846 } |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
847 |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
848 void stringset_free(stringset_t *set) { |
25663 | 849 int count = 0; |
850 while ((*set)[count]) free((*set)[count++]); | |
25661
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
851 free(*set); |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
852 *set = NULL; |
7505 | 853 } |
854 | |
25661
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
855 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
|
856 int count = 0; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
857 while ((*set)[count]) count++; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
858 count++; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
859 *set = realloc(*set, sizeof(char *) * (count + 1)); |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
860 (*set)[count - 1] = strdup(str); |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
861 (*set)[count] = NULL; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
862 } |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
863 |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
864 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
|
865 stringset_t s; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
866 for (s = *set; *s; s++) |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
867 if (strcmp(*s, str) == 0) |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
868 return 1; |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
869 return 0; |
5325
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
870 } |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
871 |
1983 | 872 void list_codecs(int audioflag){ |
2050 | 873 int i; |
1983 | 874 codecs_t *c; |
875 | |
876 if (audioflag) { | |
877 i = nr_acodecs; | |
878 c = audio_codecs; | |
7193 | 879 mp_msg(MSGT_CODECCFG,MSGL_INFO,"ac: afm: status: info: [lib/dll]\n"); |
1983 | 880 } else { |
881 i = nr_vcodecs; | |
882 c = video_codecs; | |
7193 | 883 mp_msg(MSGT_CODECCFG,MSGL_INFO,"vc: vfm: status: info: [lib/dll]\n"); |
1983 | 884 } |
2050 | 885 if(!i) return; |
1983 | 886 for (/* NOTHING */; i--; c++) { |
1984 | 887 char* s="unknown "; |
888 switch(c->status){ | |
889 case CODECS_STATUS_WORKING: s="working ";break; | |
890 case CODECS_STATUS_PROBLEMS: s="problems";break; | |
891 case CODECS_STATUS_NOT_WORKING: s="crashing";break; | |
892 case CODECS_STATUS_UNTESTED: s="untested";break; | |
893 } | |
1983 | 894 if(c->dll) |
7193 | 895 mp_msg(MSGT_CODECCFG,MSGL_INFO,"%-11s %-9s %s %s [%s]\n",c->name,c->drv,s,c->info,c->dll); |
1983 | 896 else |
7193 | 897 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
|
898 |
1983 | 899 } |
900 | |
901 } | |
902 | |
903 | |
904 | |
607 | 905 #ifdef CODECS2HTML |
906 void wrapline(FILE *f2,char *s){ | |
907 int c; | |
908 if(!s){ | |
909 fprintf(f2,"-"); | |
910 return; | |
911 } | |
912 while((c=*s++)){ | |
913 if(c==',') fprintf(f2,"<br>"); else fputc(c,f2); | |
914 } | |
915 } | |
916 | |
917 void parsehtml(FILE *f1,FILE *f2,codecs_t *codec,int section,int dshow){ | |
918 int c,d; | |
919 while((c=fgetc(f1))>=0){ | |
920 if(c!='%'){ | |
921 fputc(c,f2); | |
922 continue; | |
923 } | |
924 d=fgetc(f1); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
925 |
607 | 926 switch(d){ |
927 case '.': | |
613 | 928 return; // end of section |
607 | 929 case 'n': |
930 wrapline(f2,codec->name); break; | |
931 case 'i': | |
932 wrapline(f2,codec->info); break; | |
933 case 'c': | |
934 wrapline(f2,codec->comment); break; | |
935 case 'd': | |
936 wrapline(f2,codec->dll); break; | |
937 case 'D': | |
8205
5c675b344bfb
This patch goes into the #ifdef CODECS2HTML section of
arpi
parents:
7770
diff
changeset
|
938 fprintf(f2,"%c",!strcmp(codec->drv,"dshow")?'+':'-'); break; |
607 | 939 case 'F': |
940 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
|
941 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
|
942 fprintf(f2,"%s%.4s",d?"<br>":"",(codec->fourcc[d]==0xFFFFFFFF || codec->fourcc[d]<0x20202020)?!d?"-":"":(char*) &codec->fourcc[d]); |
607 | 943 break; |
944 case 'f': | |
945 for(d=0;d<CODECS_MAX_FOURCC;d++) | |
946 if(codec->fourcc[d]!=0xFFFFFFFF) | |
947 fprintf(f2,"%s0x%X",d?"<br>":"",codec->fourcc[d]); | |
948 break; | |
949 case 'Y': | |
950 for(d=0;d<CODECS_MAX_OUTFMT;d++) | |
951 if(codec->outfmt[d]!=0xFFFFFFFF){ | |
952 for (c=0; fmt_table[c].name; c++) | |
953 if(fmt_table[c].num==codec->outfmt[d]) break; | |
954 if(fmt_table[c].name) | |
955 fprintf(f2,"%s%s",d?"<br>":"",fmt_table[c].name); | |
956 } | |
957 break; | |
958 default: | |
959 fputc(c,f2); | |
960 fputc(d,f2); | |
961 } | |
962 } | |
963 | |
964 } | |
965 | |
966 void skiphtml(FILE *f1){ | |
967 int c,d; | |
968 while((c=fgetc(f1))>=0){ | |
969 if(c!='%'){ | |
970 continue; | |
971 } | |
972 d=fgetc(f1); | |
973 if(d=='.') return; // end of section | |
974 } | |
975 } | |
976 | |
29115
1e78a310487e
Change type of first argument of the print_int_array function from int to
diego
parents:
28747
diff
changeset
|
977 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
|
978 { |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
979 printf("{ "); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
980 while (size--) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
981 if(abs(*a)<256) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
982 printf("%d%s", *a++, size?", ":""); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
983 else |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
984 printf("0x%X%s", *a++, size?", ":""); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
985 printf(" }"); |
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 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
988 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
|
989 { |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
990 printf("{ "); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
991 while (size--) |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
992 if((*a)<10) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
993 printf("%d%s", *a++, size?", ":""); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
994 else |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
995 printf("0x%02x%s", *a++, size?", ":""); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
996 printf(" }"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
997 } |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
998 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
999 static void print_string(const char* s) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1000 { |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1001 if (!s) printf("NULL"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1002 else printf("\"%s\"", s); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1003 } |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1004 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1005 int main(int argc, char* argv[]) |
607 | 1006 { |
4027 | 1007 codecs_t *cl; |
607 | 1008 FILE *f1; |
1009 FILE *f2; | |
1010 int c,d,i; | |
1011 int pos; | |
1012 int section=-1; | |
1013 int nr_codecs; | |
1014 int win32=-1; | |
1015 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
|
1016 int win32ex=-1; |
607 | 1017 |
8467
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 * 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
|
1020 * etc/codecs.conf |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1021 */ |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1022 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
|
1023 exit(1); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1024 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1025 if (argc > 1) { |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1026 int i, j; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1027 const char* nm[2]; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1028 codecs_t* cod[2]; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1029 int nr[2]; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1030 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1031 nm[0] = "builtin_video_codecs"; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1032 cod[0] = video_codecs; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1033 nr[0] = nr_vcodecs; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1034 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1035 nm[1] = "builtin_audio_codecs"; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1036 cod[1] = audio_codecs; |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1037 nr[1] = nr_acodecs; |
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 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
|
1040 printf("#include <stddef.h>\n",argv[1]); |
762918acfe06
Add missing #includes to pass 'make checkheaders' to codecs.conf.h.
diego
parents:
25663
diff
changeset
|
1041 printf("#include \"codec-cfg.h\"\n\n",argv[1]); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1042 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1043 for (i=0; i<2; i++) { |
25662 | 1044 printf("const codecs_t %s[] = {\n", nm[i]); |
8472 | 1045 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
|
1046 printf("{"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1047 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1048 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
|
1049 printf(", /* fourcc */\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_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
|
1052 printf(", /* fourccmap */\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_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
|
1055 printf(", /* outfmt */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1056 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1057 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
|
1058 printf(", /* outflags */\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 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
|
1061 printf(", /* infmt */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1062 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1063 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
|
1064 printf(", /* inflags */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1065 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1066 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
|
1067 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
|
1068 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
|
1069 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
|
1070 print_string(cod[i][j].drv); printf(", /* drv */\n"); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1071 |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1072 printf("{ 0x%08lx, %hu, %hu,", |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1073 cod[i][j].guid.f1, |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1074 cod[i][j].guid.f2, |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1075 cod[i][j].guid.f3); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1076 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
|
1077 printf(" }, /* GUID */\n"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1078 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
|
1079 cod[i][j].flags, |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1080 cod[i][j].status, |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1081 cod[i][j].cpuflags); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1082 if (j < nr[i]) printf(",\n"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1083 } |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1084 printf("};\n\n"); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1085 } |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1086 exit(0); |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1087 } |
607 | 1088 |
10859 | 1089 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
|
1090 f2=fopen("DOCS/codecs-status.html","wb"); if(!f2) exit(1); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1091 |
607 | 1092 while((c=fgetc(f1))>=0){ |
1093 if(c!='%'){ | |
1094 fputc(c,f2); | |
1095 continue; | |
1096 } | |
1097 d=fgetc(f1); | |
1098 if(d>='0' && d<='9'){ | |
1099 // begin section | |
1100 section=d-'0'; | |
17762 | 1101 //printf("BEGIN %d\n",section); |
607 | 1102 if(section>=5){ |
1103 // audio | |
4027 | 1104 cl = audio_codecs; |
607 | 1105 nr_codecs = nr_acodecs; |
1106 dshow=7;win32=4; | |
1107 } else { | |
1108 // video | |
4027 | 1109 cl = video_codecs; |
607 | 1110 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
|
1111 dshow=4;win32=2;win32ex=6; |
607 | 1112 } |
1113 pos=ftell(f1); | |
1114 for(i=0;i<nr_codecs;i++){ | |
1115 fseek(f1,pos,SEEK_SET); | |
1116 switch(section){ | |
1117 case 0: | |
1118 case 5: | |
1119 if(cl[i].status==CODECS_STATUS_WORKING) | |
8211 | 1120 // if(!(!strcmp(cl[i].drv,"vfw") || !strcmp(cl[i].drv,"dshow") || !strcmp(cl[i].drv,"vfwex") || !strcmp(cl[i].drv,"acm"))) |
607 | 1121 parsehtml(f1,f2,&cl[i],section,dshow); |
1122 break; | |
8211 | 1123 #if 0 |
607 | 1124 case 1: |
1125 case 6: | |
1126 if(cl[i].status==CODECS_STATUS_WORKING) | |
8211 | 1127 if((!strcmp(cl[i].drv,"vfw") || !strcmp(cl[i].drv,"dshow") || !strcmp(cl[i].drv,"vfwex") || !strcmp(cl[i].drv,"acm"))) |
607 | 1128 parsehtml(f1,f2,&cl[i],section,dshow); |
1129 break; | |
8211 | 1130 #endif |
607 | 1131 case 2: |
1132 case 7: | |
1133 if(cl[i].status==CODECS_STATUS_PROBLEMS) | |
1134 parsehtml(f1,f2,&cl[i],section,dshow); | |
1135 break; | |
1136 case 3: | |
1137 case 8: | |
1138 if(cl[i].status==CODECS_STATUS_NOT_WORKING) | |
1139 parsehtml(f1,f2,&cl[i],section,dshow); | |
1140 break; | |
1141 case 4: | |
1142 case 9: | |
1143 if(cl[i].status==CODECS_STATUS_UNTESTED) | |
1144 parsehtml(f1,f2,&cl[i],section,dshow); | |
1145 break; | |
1146 default: | |
1147 printf("Warning! unimplemented section: %d\n",section); | |
1148 } | |
1149 } | |
1150 fseek(f1,pos,SEEK_SET); | |
1151 skiphtml(f1); | |
1152 //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
|
1153 |
607 | 1154 continue; |
1155 } | |
1156 fputc(c,f2); | |
1157 fputc(d,f2); | |
1158 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1159 |
607 | 1160 fclose(f2); |
1161 fclose(f1); | |
1162 return 0; | |
1163 } | |
1164 | |
1165 #endif | |
1166 | |
297 | 1167 #ifdef TESTING |
1168 int main(void) | |
1169 { | |
4676 | 1170 codecs_t *c; |
328 | 1171 int i,j, nr_codecs, state; |
297 | 1172 |
4676 | 1173 if (!(parse_codec_cfg("etc/codecs.conf"))) |
319 | 1174 return 0; |
4676 | 1175 if (!video_codecs) |
328 | 1176 printf("no videoconfig.\n"); |
4676 | 1177 if (!audio_codecs) |
328 | 1178 printf("no audioconfig.\n"); |
1179 | |
1180 printf("videocodecs:\n"); | |
4676 | 1181 c = video_codecs; |
328 | 1182 nr_codecs = nr_vcodecs; |
1183 state = 0; | |
1184 next: | |
1185 if (c) { | |
4676 | 1186 printf("number of %scodecs: %d\n", state==0?"video":"audio", |
1187 nr_codecs); | |
328 | 1188 for(i=0;i<nr_codecs;i++, c++){ |
4676 | 1189 printf("\n============== %scodec %02d ===============\n", |
1190 state==0?"video":"audio",i); | |
328 | 1191 printf("name='%s'\n",c->name); |
1192 printf("info='%s'\n",c->info); | |
1193 printf("comment='%s'\n",c->comment); | |
1194 printf("dll='%s'\n",c->dll); | |
26848 | 1195 /* printf("flags=%X driver=%d status=%d cpuflags=%d\n", |
1196 c->flags, c->driver, c->status, c->cpuflags); */ | |
1197 printf("flags=%X status=%d cpuflags=%d\n", | |
1198 c->flags, c->status, c->cpuflags); | |
300 | 1199 |
328 | 1200 for(j=0;j<CODECS_MAX_FOURCC;j++){ |
1201 if(c->fourcc[j]!=0xFFFFFFFF){ | |
361 | 1202 printf("fourcc %02d: %08X (%.4s) ===> %08X (%.4s)\n",j,c->fourcc[j],(char *) &c->fourcc[j],c->fourccmap[j],(char *) &c->fourccmap[j]); |
328 | 1203 } |
1204 } | |
1205 | |
1206 for(j=0;j<CODECS_MAX_OUTFMT;j++){ | |
1207 if(c->outfmt[j]!=0xFFFFFFFF){ | |
361 | 1208 printf("outfmt %02d: %08X (%.4s) flags: %d\n",j,c->outfmt[j],(char *) &c->outfmt[j],c->outflags[j]); |
328 | 1209 } |
1210 } | |
300 | 1211 |
4676 | 1212 for(j=0;j<CODECS_MAX_INFMT;j++){ |
1213 if(c->infmt[j]!=0xFFFFFFFF){ | |
1214 printf("infmt %02d: %08X (%.4s) flags: %d\n",j,c->infmt[j],(char *) &c->infmt[j],c->inflags[j]); | |
1215 } | |
1216 } | |
1217 | |
328 | 1218 printf("GUID: %08lX %04X %04X",c->guid.f1,c->guid.f2,c->guid.f3); |
1219 for(j=0;j<8;j++) printf(" %02X",c->guid.f4[j]); | |
1220 printf("\n"); | |
300 | 1221 |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1222 |
328 | 1223 } |
1224 } | |
1225 if (!state) { | |
1226 printf("audiocodecs:\n"); | |
4676 | 1227 c = audio_codecs; |
328 | 1228 nr_codecs = nr_acodecs; |
1229 state = 1; | |
1230 goto next; | |
1231 } | |
297 | 1232 return 0; |
1233 } | |
1234 | |
1235 #endif |