Mercurial > mplayer.hg
annotate codec-cfg.c @ 35127:dd8ebdd08791
Use aspect_scaling() function also for vo_corevideo.
author | reimar |
---|---|
date | Fri, 28 Sep 2012 16:49:37 +0000 |
parents | 79c374e70653 |
children | 303bf4bab982 |
rev | line source |
---|---|
319 | 1 /* |
2 * codec.conf parser | |
4676 | 3 * |
22501 | 4 * to compile test application: |
5 * cc -I. -DTESTING -o codec-cfg-test codec-cfg.c mp_msg.o osdep/getch2.o -ltermcap | |
15303 | 6 * to compile CODECS2HTML: |
33246 | 7 * gcc -DCODECS2HTML -o codecs2html codec-cfg.c |
4676 | 8 * |
9 * TODO: implement informat in CODECS2HTML too | |
30429
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
10 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
11 * Copyright (C) 2001 Szabolcs Berecz <szabi@inf.elte.hu> |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
12 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
13 * This file is part of MPlayer. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
14 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
15 * MPlayer is free software; you can redistribute it and/or modify |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
16 * it under the terms of the GNU General Public License as published by |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
17 * the Free Software Foundation; either version 2 of the License, or |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
18 * (at your option) any later version. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
19 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
20 * MPlayer is distributed in the hope that it will be useful, |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
23 * GNU General Public License for more details. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
24 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
25 * You should have received a copy of the GNU General Public License along |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
26 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30115
diff
changeset
|
27 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
319 | 28 */ |
303 | 29 |
319 | 30 #define DEBUG |
303 | 31 |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
32 //disable asserts |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
33 #define NDEBUG |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
34 |
297 | 35 #include <stdio.h> |
36 #include <stdlib.h> | |
37 #include <fcntl.h> | |
38 #include <unistd.h> | |
39 #include <errno.h> | |
40 #include <ctype.h> | |
41 #include <assert.h> | |
42 #include <string.h> | |
43 | |
5284
0a58c2ef1da1
added missing #include config.h, removed LIBVO2 ifdef.
arpi
parents:
5263
diff
changeset
|
44 #include "config.h" |
5937 | 45 #include "mp_msg.h" |
17841
73db10d5f2e3
remove mp_msg.c dependency when compiling codec-cfg binary.
reimar
parents:
17763
diff
changeset
|
46 #ifdef CODECS2HTML |
73db10d5f2e3
remove mp_msg.c dependency when compiling codec-cfg binary.
reimar
parents:
17763
diff
changeset
|
47 #ifdef __GNUC__ |
73db10d5f2e3
remove mp_msg.c dependency when compiling codec-cfg binary.
reimar
parents:
17763
diff
changeset
|
48 #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
|
49 #else |
23910
8fcfdfcd6c41
C99 varargs in macros can not be empty, adjust definition so it compiles
reimar
parents:
23806
diff
changeset
|
50 #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
|
51 #endif |
73db10d5f2e3
remove mp_msg.c dependency when compiling codec-cfg binary.
reimar
parents:
17763
diff
changeset
|
52 #endif |
5284
0a58c2ef1da1
added missing #include config.h, removed LIBVO2 ifdef.
arpi
parents:
5263
diff
changeset
|
53 |
13619 | 54 #include "help_mp.h" |
55 | |
33561
1ff6737f2177
Avoid including aviheader.h only for mmioFOURCC, it has too many
reimar
parents:
33364
diff
changeset
|
56 #include "libavutil/avutil.h" |
15305 | 57 #include "libmpcodecs/img_format.h" |
297 | 58 #include "codec-cfg.h" |
59 | |
31406
0fd1b3f1fe69
Auto-update CODEC_CFG_MIN value to release value in etc/codecs.conf.
reimar
parents:
31159
diff
changeset
|
60 #ifdef CODECS2HTML |
0fd1b3f1fe69
Auto-update CODEC_CFG_MIN value to release value in etc/codecs.conf.
reimar
parents:
31159
diff
changeset
|
61 #define CODEC_CFG_MIN 20100000 |
0fd1b3f1fe69
Auto-update CODEC_CFG_MIN value to release value in etc/codecs.conf.
reimar
parents:
31159
diff
changeset
|
62 #else |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
63 #include "codecs.conf.h" |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
64 #endif |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
65 |
5937 | 66 #define PRINT_LINENUM mp_msg(MSGT_CODECCFG,MSGL_ERR," at line %d\n", line_num) |
328 | 67 |
31077 | 68 #define MAX_NR_TOKEN 16 |
297 | 69 |
31077 | 70 #define MAX_LINE_LEN 1000 |
297 | 71 |
31077 | 72 #define RET_EOF -1 |
73 #define RET_EOL -2 | |
297 | 74 |
31077 | 75 #define TYPE_VIDEO 0 |
76 #define TYPE_AUDIO 1 | |
297 | 77 |
31406
0fd1b3f1fe69
Auto-update CODEC_CFG_MIN value to release value in etc/codecs.conf.
reimar
parents:
31159
diff
changeset
|
78 static int codecs_conf_release; |
11759
29eea271490e
add -codecs-file for selecting a specific codecs.conf on the comand line
attila
parents:
11388
diff
changeset
|
79 char * codecs_file = NULL; |
29eea271490e
add -codecs-file for selecting a specific codecs.conf on the comand line
attila
parents:
11388
diff
changeset
|
80 |
303 | 81 static int add_to_fourcc(char *s, char *alias, unsigned int *fourcc, |
31077 | 82 unsigned int *map) |
297 | 83 { |
31077 | 84 int i, j, freeslots; |
85 unsigned int tmp; | |
319 | 86 |
31077 | 87 /* find first unused slot */ |
88 for (i = 0; i < CODECS_MAX_FOURCC && fourcc[i] != 0xffffffff; i++) | |
89 /* NOTHING */; | |
90 freeslots = CODECS_MAX_FOURCC - i; | |
91 if (!freeslots) | |
92 goto err_out_too_many; | |
319 | 93 |
31077 | 94 do { |
33561
1ff6737f2177
Avoid including aviheader.h only for mmioFOURCC, it has too many
reimar
parents:
33364
diff
changeset
|
95 tmp = MKTAG(s[0], s[1], s[2], s[3]); |
31077 | 96 for (j = 0; j < i; j++) |
97 if (tmp == fourcc[j]) | |
98 goto err_out_duplicated; | |
99 fourcc[i] = tmp; | |
33561
1ff6737f2177
Avoid including aviheader.h only for mmioFOURCC, it has too many
reimar
parents:
33364
diff
changeset
|
100 map[i] = alias ? MKTAG(alias[0], alias[1], alias[2], alias[3]) : tmp; |
31077 | 101 s += 4; |
102 i++; | |
103 } while ((*(s++) == ',') && --freeslots); | |
319 | 104 |
31077 | 105 if (!freeslots) |
106 goto err_out_too_many; | |
107 if (*(--s) != '\0') | |
108 goto err_out_parse_error; | |
109 return 1; | |
328 | 110 err_out_duplicated: |
31077 | 111 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_DuplicateFourcc); |
112 return 0; | |
328 | 113 err_out_too_many: |
31077 | 114 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_TooManyFourccs); |
115 return 0; | |
361 | 116 err_out_parse_error: |
31077 | 117 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseError); |
118 return 0; | |
319 | 119 } |
120 | |
7770 | 121 static int add_to_format(char *s, char *alias,unsigned int *fourcc, unsigned int *fourccmap) |
319 | 122 { |
31077 | 123 int i, j; |
124 char *endptr; | |
297 | 125 |
31077 | 126 /* find first unused slot */ |
127 for (i = 0; i < CODECS_MAX_FOURCC && fourcc[i] != 0xffffffff; i++) | |
128 /* NOTHING */; | |
129 if (i == CODECS_MAX_FOURCC) { | |
130 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_TooManyFourccs); | |
131 return 0; | |
132 } | |
297 | 133 |
31077 | 134 fourcc[i]=strtoul(s,&endptr,0); |
135 if (*endptr != '\0') { | |
136 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseErrorFIDNotNumber); | |
137 return 0; | |
138 } | |
7770 | 139 |
31077 | 140 if(alias){ |
141 fourccmap[i]=strtoul(alias,&endptr,0); | |
142 if (*endptr != '\0') { | |
143 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseErrorFIDAliasNotNumber); | |
144 return 0; | |
145 } | |
146 } else | |
147 fourccmap[i]=fourcc[i]; | |
7770 | 148 |
31077 | 149 for (j = 0; j < i; j++) |
150 if (fourcc[j] == fourcc[i]) { | |
151 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_DuplicateFID); | |
152 return 0; | |
153 } | |
300 | 154 |
31077 | 155 return 1; |
297 | 156 } |
157 | |
31159 | 158 static const struct { |
159 const char *name; | |
160 const unsigned int num; | |
161 } fmt_table[] = { | |
162 // note: due to parser deficiencies/simplicity, if one format | |
163 // name matches the beginning of another, the longer one _must_ | |
164 // come first in this list. | |
34191 | 165 {"YV12", IMGFMT_YV12}, |
166 {"I420", IMGFMT_I420}, | |
167 {"IYUV", IMGFMT_IYUV}, | |
168 {"NV12", IMGFMT_NV12}, | |
169 {"NV21", IMGFMT_NV21}, | |
170 {"YVU9", IMGFMT_YVU9}, | |
171 {"IF09", IMGFMT_IF09}, | |
172 {"444P16LE", IMGFMT_444P16_LE}, | |
173 {"444P16BE", IMGFMT_444P16_BE}, | |
174 {"444P10LE", IMGFMT_444P10_LE}, | |
175 {"444P10BE", IMGFMT_444P10_BE}, | |
176 {"422P16LE", IMGFMT_422P16_LE}, | |
177 {"422P16BE", IMGFMT_422P16_BE}, | |
178 {"420P16LE", IMGFMT_420P16_LE}, | |
179 {"420P16BE", IMGFMT_420P16_BE}, | |
180 {"444P16", IMGFMT_444P16}, | |
34923
eb76937af57e
Support FFmpeg pix_fmts YUV4xxP12*, YUV4xxP14*, GBR12P* and GBR14P*.
cehoyos
parents:
34805
diff
changeset
|
181 {"444P14", IMGFMT_444P14}, |
eb76937af57e
Support FFmpeg pix_fmts YUV4xxP12*, YUV4xxP14*, GBR12P* and GBR14P*.
cehoyos
parents:
34805
diff
changeset
|
182 {"444P12", IMGFMT_444P12}, |
34191 | 183 {"444P10", IMGFMT_444P10}, |
184 {"444P9", IMGFMT_444P9}, | |
185 {"422P16", IMGFMT_422P16}, | |
34923
eb76937af57e
Support FFmpeg pix_fmts YUV4xxP12*, YUV4xxP14*, GBR12P* and GBR14P*.
cehoyos
parents:
34805
diff
changeset
|
186 {"422P14", IMGFMT_422P14}, |
eb76937af57e
Support FFmpeg pix_fmts YUV4xxP12*, YUV4xxP14*, GBR12P* and GBR14P*.
cehoyos
parents:
34805
diff
changeset
|
187 {"422P12", IMGFMT_422P12}, |
34191 | 188 {"422P10", IMGFMT_422P10}, |
34436 | 189 {"422P9", IMGFMT_422P9}, |
34191 | 190 {"420P16", IMGFMT_420P16}, |
34923
eb76937af57e
Support FFmpeg pix_fmts YUV4xxP12*, YUV4xxP14*, GBR12P* and GBR14P*.
cehoyos
parents:
34805
diff
changeset
|
191 {"420P14", IMGFMT_420P14}, |
eb76937af57e
Support FFmpeg pix_fmts YUV4xxP12*, YUV4xxP14*, GBR12P* and GBR14P*.
cehoyos
parents:
34805
diff
changeset
|
192 {"420P12", IMGFMT_420P12}, |
34191 | 193 {"420P10", IMGFMT_420P10}, |
194 {"420P9", IMGFMT_420P9}, | |
195 {"420A", IMGFMT_420A}, | |
196 {"444P", IMGFMT_444P}, | |
34565 | 197 {"444A", IMGFMT_444A}, |
34191 | 198 {"422P", IMGFMT_422P}, |
34805
0eba64545a27
Improve Avid Meridien (AVUI) decoding with FFmpeg.
cehoyos
parents:
34793
diff
changeset
|
199 {"422A", IMGFMT_422A}, |
34191 | 200 {"411P", IMGFMT_411P}, |
201 {"440P", IMGFMT_440P}, | |
202 {"Y800", IMGFMT_Y800}, | |
34932
19212dea7a97
Add missing aequivalents for PIX_FMT_GRAY8A and PIX_FMT_GRAY16*.
cehoyos
parents:
34923
diff
changeset
|
203 {"Y8A", IMGFMT_Y8A}, |
34191 | 204 {"Y8", IMGFMT_Y8}, |
34932
19212dea7a97
Add missing aequivalents for PIX_FMT_GRAY8A and PIX_FMT_GRAY16*.
cehoyos
parents:
34923
diff
changeset
|
205 {"Y16LE", IMGFMT_Y16_LE}, |
19212dea7a97
Add missing aequivalents for PIX_FMT_GRAY8A and PIX_FMT_GRAY16*.
cehoyos
parents:
34923
diff
changeset
|
206 {"Y16BE", IMGFMT_Y16_BE}, |
34934 | 207 {"Y16", IMGFMT_Y16}, |
408 | 208 |
34191 | 209 {"YUY2", IMGFMT_YUY2}, |
210 {"UYVY", IMGFMT_UYVY}, | |
211 {"YVYU", IMGFMT_YVYU}, | |
408 | 212 |
34572 | 213 {"RGB64LE", IMGFMT_RGB64LE}, |
214 {"RGB64BE", IMGFMT_RGB64BE}, | |
34191 | 215 {"RGB48LE", IMGFMT_RGB48LE}, |
216 {"RGB48BE", IMGFMT_RGB48BE}, | |
217 {"RGB4", IMGFMT_RGB4}, | |
218 {"RGB8", IMGFMT_RGB8}, | |
219 {"RGB15", IMGFMT_RGB15}, | |
220 {"RGB16", IMGFMT_RGB16}, | |
221 {"RGB24", IMGFMT_RGB24}, | |
222 {"RGB32", IMGFMT_RGB32}, | |
34501 | 223 {"RGBA", IMGFMT_RGBA}, |
34939
79c374e70653
Allow specifying ARGB and ABGR colour-spaces in codecs.conf.
cehoyos
parents:
34934
diff
changeset
|
224 {"ARGB", IMGFMT_ARGB}, |
34191 | 225 {"BGR4", IMGFMT_BGR4}, |
226 {"BGR8", IMGFMT_BGR8}, | |
34793
1ce075a9932b
Support new colour spaces for FFmpeg camstudio decoding on big-endian.
cehoyos
parents:
34572
diff
changeset
|
227 {"BGR15LE", IMGFMT_BGR15LE}, |
34191 | 228 {"BGR15", IMGFMT_BGR15}, |
229 {"BGR16", IMGFMT_BGR16}, | |
230 {"BGR24", IMGFMT_BGR24}, | |
231 {"BGR32", IMGFMT_BGR32}, | |
34509
bdca973d87a5
Fix 32-bit targa playback with current FFmpeg on big-endian.
cehoyos
parents:
34501
diff
changeset
|
232 {"BGRA", IMGFMT_BGRA}, |
34939
79c374e70653
Allow specifying ARGB and ABGR colour-spaces in codecs.conf.
cehoyos
parents:
34934
diff
changeset
|
233 {"ABGR", IMGFMT_ABGR}, |
34191 | 234 {"RGB1", IMGFMT_RGB1}, |
235 {"BGR1", IMGFMT_BGR1}, | |
236 {"GBR24P", IMGFMT_GBR24P}, | |
34923
eb76937af57e
Support FFmpeg pix_fmts YUV4xxP12*, YUV4xxP14*, GBR12P* and GBR14P*.
cehoyos
parents:
34805
diff
changeset
|
237 {"GBR12P", IMGFMT_GBR12P}, |
eb76937af57e
Support FFmpeg pix_fmts YUV4xxP12*, YUV4xxP14*, GBR12P* and GBR14P*.
cehoyos
parents:
34805
diff
changeset
|
238 {"GBR14P", IMGFMT_GBR14P}, |
1871 | 239 |
34191 | 240 {"MPES", IMGFMT_MPEGPES}, |
241 {"ZRMJPEGNI", IMGFMT_ZRMJPEGNI}, | |
242 {"ZRMJPEGIT", IMGFMT_ZRMJPEGIT}, | |
243 {"ZRMJPEGIB", IMGFMT_ZRMJPEGIB}, | |
10316 | 244 |
34191 | 245 {"IDCT_MPEG2", IMGFMT_XVMC_IDCT_MPEG2}, |
246 {"MOCO_MPEG2", IMGFMT_XVMC_MOCO_MPEG2}, | |
10316 | 247 |
34191 | 248 {"VDPAU_MPEG1", IMGFMT_VDPAU_MPEG1}, |
249 {"VDPAU_MPEG2", IMGFMT_VDPAU_MPEG2}, | |
250 {"VDPAU_H264", IMGFMT_VDPAU_H264}, | |
251 {"VDPAU_WMV3", IMGFMT_VDPAU_WMV3}, | |
252 {"VDPAU_VC1", IMGFMT_VDPAU_VC1}, | |
253 {"VDPAU_MPEG4", IMGFMT_VDPAU_MPEG4}, | |
28516
79b0bd20433e
Add support for image formats and codecs used by VDPAU
reimar
parents:
27343
diff
changeset
|
254 |
31159 | 255 {NULL, 0} |
256 }; | |
408 | 257 |
607 | 258 |
4675 | 259 static int add_to_inout(char *sfmt, char *sflags, unsigned int *outfmt, |
31077 | 260 unsigned char *outflags) |
607 | 261 { |
262 | |
31077 | 263 static char *flagstr[] = { |
264 "flip", | |
265 "noflip", | |
266 "yuvhack", | |
267 "query", | |
268 "static", | |
269 NULL | |
270 }; | |
299 | 271 |
31077 | 272 int i, j, freeslots; |
273 unsigned char flags; | |
297 | 274 |
31077 | 275 for (i = 0; i < CODECS_MAX_OUTFMT && outfmt[i] != 0xffffffff; i++) |
276 /* NOTHING */; | |
277 freeslots = CODECS_MAX_OUTFMT - i; | |
278 if (!freeslots) | |
279 goto err_out_too_many; | |
297 | 280 |
31077 | 281 flags = 0; |
282 if(sflags) { | |
283 do { | |
284 for (j = 0; flagstr[j] != NULL; j++) | |
285 if (!strncmp(sflags, flagstr[j], | |
286 strlen(flagstr[j]))) | |
287 break; | |
288 if (flagstr[j] == NULL) | |
289 goto err_out_parse_error; | |
290 flags|=(1<<j); | |
291 sflags+=strlen(flagstr[j]); | |
292 } while (*(sflags++) == ','); | |
361 | 293 |
31077 | 294 if (*(--sflags) != '\0') |
295 goto err_out_parse_error; | |
296 } | |
297 | 297 |
31077 | 298 do { |
299 for (j = 0; fmt_table[j].name != NULL; j++) | |
300 if (!strncmp(sfmt, fmt_table[j].name, strlen(fmt_table[j].name))) | |
301 break; | |
302 if (fmt_table[j].name == NULL) | |
303 goto err_out_parse_error; | |
304 outfmt[i] = fmt_table[j].num; | |
305 outflags[i] = flags; | |
306 ++i; | |
307 sfmt+=strlen(fmt_table[j].name); | |
308 } while ((*(sfmt++) == ',') && --freeslots); | |
319 | 309 |
31077 | 310 if (!freeslots) |
311 goto err_out_too_many; | |
319 | 312 |
31077 | 313 if (*(--sfmt) != '\0') |
314 goto err_out_parse_error; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
315 |
31077 | 316 return 1; |
328 | 317 err_out_too_many: |
31077 | 318 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_TooManyOut); |
319 return 0; | |
361 | 320 err_out_parse_error: |
31077 | 321 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseError); |
322 return 0; | |
297 | 323 } |
324 | |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
325 #if 0 |
303 | 326 static short get_driver(char *s,int audioflag) |
297 | 327 { |
31077 | 328 static char *audiodrv[] = { |
329 "null", | |
330 "mp3lib", | |
331 "pcm", | |
332 "libac3", | |
333 "acm", | |
334 "alaw", | |
335 "msgsm", | |
336 "dshow", | |
337 "dvdpcm", | |
338 "hwac3", | |
339 "libvorbis", | |
340 "ffmpeg", | |
341 "libmad", | |
342 "msadpcm", | |
343 "liba52", | |
344 "g72x", | |
345 "imaadpcm", | |
346 "dk4adpcm", | |
347 "dk3adpcm", | |
348 "roqaudio", | |
349 "faad", | |
350 "realaud", | |
351 "libdv", | |
352 NULL | |
353 }; | |
354 static char *videodrv[] = { | |
355 "null", | |
356 "libmpeg2", | |
357 "vfw", | |
358 "dshow", | |
359 "ffmpeg", | |
360 "vfwex", | |
361 "raw", | |
362 "msrle", | |
363 "xanim", | |
364 "msvidc", | |
365 "fli", | |
366 "cinepak", | |
367 "qtrle", | |
368 "nuv", | |
369 "cyuv", | |
370 "qtsmc", | |
371 "ducktm1", | |
372 "roqvideo", | |
373 "qtrpza", | |
374 "mpng", | |
375 "ijpg", | |
376 "zlib", | |
377 "mpegpes", | |
378 "zrmjpeg", | |
379 "realvid", | |
380 "xvid", | |
381 "libdv", | |
382 NULL | |
383 }; | |
384 char **drv=audioflag?audiodrv:videodrv; | |
385 int i; | |
6863 | 386 |
31077 | 387 for(i=0;drv[i];i++) if(!strcmp(s,drv[i])) return i; |
301 | 388 |
31077 | 389 return -1; |
297 | 390 } |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
6927
diff
changeset
|
391 #endif |
297 | 392 |
328 | 393 static int validate_codec(codecs_t *c, int type) |
319 | 394 { |
31077 | 395 unsigned int i; |
396 char *tmp_name = c->name; | |
328 | 397 |
31077 | 398 for (i = 0; i < strlen(tmp_name) && isalnum(tmp_name[i]); i++) |
399 /* NOTHING */; | |
3408 | 400 |
31077 | 401 if (i < strlen(tmp_name)) { |
402 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_InvalidCodecName, c->name); | |
403 return 0; | |
404 } | |
3408 | 405 |
31077 | 406 if (!c->info) |
407 c->info = strdup(c->name); | |
3408 | 408 |
409 #if 0 | |
31077 | 410 if (c->fourcc[0] == 0xffffffff) { |
411 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecLacksFourcc, c->name); | |
412 return 0; | |
413 } | |
13936
589b227e3367
fix crash when a "driver" line is missing in codecs.conf.
reimar
parents:
13807
diff
changeset
|
414 #endif |
3408 | 415 |
31077 | 416 if (!c->drv) { |
417 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecLacksDriver, c->name); | |
418 return 0; | |
419 } | |
3408 | 420 |
421 #if 0 | |
32394
914208d188b9
Remove #warning preprocessor directives or replace them by suitable comments.
diego
parents:
31409
diff
changeset
|
422 //FIXME: codec->driver == 4;... <- this should not be put in here... |
914208d188b9
Remove #warning preprocessor directives or replace them by suitable comments.
diego
parents:
31409
diff
changeset
|
423 //FIXME: Where are they defined ???????????? |
31077 | 424 if (!c->dll && (c->driver == 4 || |
425 (c->driver == 2 && type == TYPE_VIDEO))) { | |
426 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecNeedsDLL, c->name); | |
427 return 0; | |
428 } | |
32394
914208d188b9
Remove #warning preprocessor directives or replace them by suitable comments.
diego
parents:
31409
diff
changeset
|
429 // FIXME: Can guid.f1 be 0? How does one know that it was not given? |
31077 | 430 // if (!(codec->flags & CODECS_FLAG_AUDIO) && codec->driver == 4) |
328 | 431 |
31077 | 432 if (type == TYPE_VIDEO) |
433 if (c->outfmt[0] == 0xffffffff) { | |
434 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecNeedsOutfmt, c->name); | |
435 return 0; | |
436 } | |
329 | 437 #endif |
31077 | 438 return 1; |
319 | 439 } |
440 | |
441 static int add_comment(char *s, char **d) | |
442 { | |
31077 | 443 int pos; |
319 | 444 |
31077 | 445 if (!*d) |
446 pos = 0; | |
447 else { | |
448 pos = strlen(*d); | |
449 (*d)[pos++] = '\n'; | |
450 } | |
451 if (!(*d = realloc(*d, pos + strlen(s) + 1))) { | |
452 mp_msg(MSGT_CODECCFG,MSGL_FATAL,MSGTR_CantAllocateComment); | |
453 return 0; | |
454 } | |
455 strcpy(*d + pos, s); | |
456 return 1; | |
319 | 457 } |
297 | 458 |
361 | 459 static short get_cpuflags(char *s) |
460 { | |
31077 | 461 static char *flagstr[] = { |
462 "mmx", | |
463 "sse", | |
464 "3dnow", | |
465 NULL | |
466 }; | |
467 int i; | |
468 short flags = 0; | |
361 | 469 |
31077 | 470 do { |
471 for (i = 0; flagstr[i]; i++) | |
472 if (!strncmp(s, flagstr[i], strlen(flagstr[i]))) | |
473 break; | |
474 if (!flagstr[i]) | |
475 goto err_out_parse_error; | |
476 flags |= 1<<i; | |
477 s += strlen(flagstr[i]); | |
478 } while (*(s++) == ','); | |
361 | 479 |
31077 | 480 if (*(--s) != '\0') |
481 goto err_out_parse_error; | |
361 | 482 |
31077 | 483 return flags; |
361 | 484 err_out_parse_error: |
31077 | 485 return 0; |
361 | 486 } |
487 | |
328 | 488 static FILE *fp; |
489 static int line_num = 0; | |
490 static char *line; | |
491 static char *token[MAX_NR_TOKEN]; | |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
492 static int read_nextline = 1; |
328 | 493 |
494 static int get_token(int min, int max) | |
297 | 495 { |
31077 | 496 static int line_pos; |
497 int i; | |
498 char c; | |
328 | 499 |
31077 | 500 if (max >= MAX_NR_TOKEN) { |
501 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_GetTokenMaxNotLessThanMAX_NR_TOKEN); | |
502 goto out_eof; | |
503 } | |
328 | 504 |
31077 | 505 memset(token, 0x00, sizeof(*token) * max); |
328 | 506 |
31077 | 507 if (read_nextline) { |
508 if (!fgets(line, MAX_LINE_LEN, fp)) | |
509 goto out_eof; | |
510 line_pos = 0; | |
511 ++line_num; | |
512 read_nextline = 0; | |
513 } | |
514 for (i = 0; i < max; i++) { | |
515 while (isspace(line[line_pos])) | |
516 ++line_pos; | |
517 if (line[line_pos] == '\0' || line[line_pos] == '#' || | |
518 line[line_pos] == ';') { | |
519 read_nextline = 1; | |
520 if (i >= min) | |
521 goto out_ok; | |
522 goto out_eol; | |
523 } | |
524 token[i] = line + line_pos; | |
525 c = line[line_pos]; | |
526 if (c == '"' || c == '\'') { | |
527 token[i]++; | |
528 while (line[++line_pos] != c && line[line_pos]) | |
529 /* NOTHING */; | |
530 } else { | |
531 for (/* NOTHING */; !isspace(line[line_pos]) && | |
532 line[line_pos]; line_pos++) | |
533 /* NOTHING */; | |
534 } | |
535 if (!line[line_pos]) { | |
536 read_nextline = 1; | |
537 if (i >= min - 1) | |
538 goto out_ok; | |
539 goto out_eol; | |
540 } | |
541 line[line_pos] = '\0'; | |
542 line_pos++; | |
543 } | |
328 | 544 out_ok: |
31077 | 545 return i; |
328 | 546 out_eof: |
31077 | 547 read_nextline = 1; |
548 return RET_EOF; | |
328 | 549 out_eol: |
31077 | 550 return RET_EOL; |
328 | 551 } |
552 | |
553 static codecs_t *video_codecs=NULL; | |
554 static codecs_t *audio_codecs=NULL; | |
555 static int nr_vcodecs = 0; | |
556 static int nr_acodecs = 0; | |
557 | |
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
|
558 int parse_codec_cfg(const char *cfgfile) |
328 | 559 { |
31077 | 560 codecs_t *codec = NULL; // current codec |
561 codecs_t **codecsp = NULL;// points to audio_codecs or to video_codecs | |
562 char *endptr; // strtoul()... | |
563 int *nr_codecsp; | |
564 int codec_type; /* TYPE_VIDEO/TYPE_AUDIO */ | |
565 int tmp, i; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
566 |
31077 | 567 // in case we call it a second time |
568 codecs_uninit_free(); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
569 |
31077 | 570 nr_vcodecs = 0; |
571 nr_acodecs = 0; | |
297 | 572 |
31077 | 573 if(cfgfile==NULL) { |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
574 #ifdef CODECS2HTML |
31077 | 575 return 0; |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
576 #else |
31077 | 577 video_codecs = builtin_video_codecs; |
578 audio_codecs = builtin_audio_codecs; | |
579 nr_vcodecs = sizeof(builtin_video_codecs)/sizeof(codecs_t); | |
580 nr_acodecs = sizeof(builtin_audio_codecs)/sizeof(codecs_t); | |
581 return 1; | |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
582 #endif |
31077 | 583 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
584 |
33844
77bf38091051
Clarify console output when reading optional configuration files.
diego
parents:
33843
diff
changeset
|
585 mp_msg(MSGT_CODECCFG, MSGL_V, "Reading optional codecs config file %s: ", cfgfile); |
297 | 586 |
31077 | 587 if ((fp = fopen(cfgfile, "r")) == NULL) { |
33844
77bf38091051
Clarify console output when reading optional configuration files.
diego
parents:
33843
diff
changeset
|
588 mp_msg(MSGT_CODECCFG, MSGL_V, "%s\n", strerror(errno)); |
31077 | 589 return 0; |
590 } | |
297 | 591 |
31077 | 592 if ((line = malloc(MAX_LINE_LEN + 1)) == NULL) { |
593 mp_msg(MSGT_CODECCFG,MSGL_FATAL,MSGTR_CantGetMemoryForLine, strerror(errno)); | |
594 return 0; | |
595 } | |
596 read_nextline = 1; | |
297 | 597 |
31077 | 598 /* |
599 * this only catches release lines at the start of | |
600 * codecs.conf, before audiocodecs and videocodecs. | |
601 */ | |
602 while ((tmp = get_token(1, 1)) == RET_EOL) | |
603 /* NOTHING */; | |
604 if (tmp == RET_EOF) | |
605 goto out; | |
606 if (!strcmp(token[0], "release")) { | |
607 if (get_token(1, 2) < 0) | |
608 goto err_out_parse_error; | |
609 tmp = atoi(token[0]); | |
610 if (tmp < CODEC_CFG_MIN) | |
611 goto err_out_release_num; | |
31406
0fd1b3f1fe69
Auto-update CODEC_CFG_MIN value to release value in etc/codecs.conf.
reimar
parents:
31159
diff
changeset
|
612 codecs_conf_release = tmp; |
31077 | 613 while ((tmp = get_token(1, 1)) == RET_EOL) |
614 /* NOTHING */; | |
615 if (tmp == RET_EOF) | |
616 goto out; | |
617 } else | |
618 goto err_out_release_num; | |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
619 |
31077 | 620 /* |
621 * check if the next block starts with 'audiocodec' or | |
622 * with 'videocodec' | |
623 */ | |
624 if (!strcmp(token[0], "audiocodec") || !strcmp(token[0], "videocodec")) | |
625 goto loop_enter; | |
626 goto err_out_parse_error; | |
328 | 627 |
31077 | 628 while ((tmp = get_token(1, 1)) != RET_EOF) { |
629 if (tmp == RET_EOL) | |
630 continue; | |
631 if (!strcmp(token[0], "audiocodec") || | |
632 !strcmp(token[0], "videocodec")) { | |
633 if (!validate_codec(codec, codec_type)) | |
634 goto err_out_not_valid; | |
635 loop_enter: | |
636 if (*token[0] == 'v') { | |
637 codec_type = TYPE_VIDEO; | |
638 nr_codecsp = &nr_vcodecs; | |
639 codecsp = &video_codecs; | |
640 } else if (*token[0] == 'a') { | |
641 codec_type = TYPE_AUDIO; | |
642 nr_codecsp = &nr_acodecs; | |
643 codecsp = &audio_codecs; | |
361 | 644 #ifdef DEBUG |
31077 | 645 } else { |
646 mp_msg(MSGT_CODECCFG,MSGL_ERR,"picsba\n"); | |
647 goto err_out; | |
361 | 648 #endif |
31077 | 649 } |
650 if (!(*codecsp = realloc(*codecsp, | |
651 sizeof(codecs_t) * (*nr_codecsp + 2)))) { | |
652 mp_msg(MSGT_CODECCFG,MSGL_FATAL,MSGTR_CantReallocCodecsp, strerror(errno)); | |
653 goto err_out; | |
654 } | |
655 codec=*codecsp + *nr_codecsp; | |
656 ++*nr_codecsp; | |
657 memset(codec,0,sizeof(codecs_t)); | |
658 memset(codec->fourcc, 0xff, sizeof(codec->fourcc)); | |
659 memset(codec->outfmt, 0xff, sizeof(codec->outfmt)); | |
660 memset(codec->infmt, 0xff, sizeof(codec->infmt)); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
661 |
31077 | 662 if (get_token(1, 1) < 0) |
663 goto err_out_parse_error; | |
664 for (i = 0; i < *nr_codecsp - 1; i++) { | |
665 if(( (*codecsp)[i].name!=NULL) && | |
666 (!strcmp(token[0], (*codecsp)[i].name)) ) { | |
667 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecNameNotUnique, token[0]); | |
668 goto err_out_print_linenum; | |
669 } | |
670 } | |
671 if (!(codec->name = strdup(token[0]))) { | |
672 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupName, strerror(errno)); | |
673 goto err_out; | |
674 } | |
675 } else if (!strcmp(token[0], "info")) { | |
676 if (codec->info || get_token(1, 1) < 0) | |
677 goto err_out_parse_error; | |
678 if (!(codec->info = strdup(token[0]))) { | |
679 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupInfo, strerror(errno)); | |
680 goto err_out; | |
681 } | |
682 } else if (!strcmp(token[0], "comment")) { | |
683 if (get_token(1, 1) < 0) | |
684 goto err_out_parse_error; | |
685 add_comment(token[0], &codec->comment); | |
686 } else if (!strcmp(token[0], "fourcc")) { | |
687 if (get_token(1, 2) < 0) | |
688 goto err_out_parse_error; | |
689 if (!add_to_fourcc(token[0], token[1], | |
690 codec->fourcc, | |
691 codec->fourccmap)) | |
692 goto err_out_print_linenum; | |
693 } else if (!strcmp(token[0], "format")) { | |
694 if (get_token(1, 2) < 0) | |
695 goto err_out_parse_error; | |
696 if (!add_to_format(token[0], token[1], | |
697 codec->fourcc,codec->fourccmap)) | |
698 goto err_out_print_linenum; | |
699 } else if (!strcmp(token[0], "driver")) { | |
700 if (get_token(1, 1) < 0) | |
701 goto err_out_parse_error; | |
702 if (!(codec->drv = strdup(token[0]))) { | |
703 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupDriver, strerror(errno)); | |
704 goto err_out; | |
705 } | |
706 } else if (!strcmp(token[0], "dll")) { | |
707 if (get_token(1, 1) < 0) | |
708 goto err_out_parse_error; | |
709 if (!(codec->dll = strdup(token[0]))) { | |
710 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CantStrdupDLL, strerror(errno)); | |
711 goto err_out; | |
712 } | |
713 } else if (!strcmp(token[0], "guid")) { | |
714 if (get_token(11, 11) < 0) | |
715 goto err_out_parse_error; | |
716 codec->guid.f1=strtoul(token[0],&endptr,0); | |
717 if ((*endptr != ',' || *(endptr + 1) != '\0') && | |
718 *endptr != '\0') | |
719 goto err_out_parse_error; | |
720 codec->guid.f2=strtoul(token[1],&endptr,0); | |
721 if ((*endptr != ',' || *(endptr + 1) != '\0') && | |
722 *endptr != '\0') | |
723 goto err_out_parse_error; | |
724 codec->guid.f3=strtoul(token[2],&endptr,0); | |
725 if ((*endptr != ',' || *(endptr + 1) != '\0') && | |
726 *endptr != '\0') | |
727 goto err_out_parse_error; | |
728 for (i = 0; i < 8; i++) { | |
729 codec->guid.f4[i]=strtoul(token[i + 3],&endptr,0); | |
730 if ((*endptr != ',' || *(endptr + 1) != '\0') && | |
731 *endptr != '\0') | |
732 goto err_out_parse_error; | |
733 } | |
734 } else if (!strcmp(token[0], "out")) { | |
735 if (get_token(1, 2) < 0) | |
736 goto err_out_parse_error; | |
737 if (!add_to_inout(token[0], token[1], codec->outfmt, | |
738 codec->outflags)) | |
739 goto err_out_print_linenum; | |
740 } else if (!strcmp(token[0], "in")) { | |
741 if (get_token(1, 2) < 0) | |
742 goto err_out_parse_error; | |
743 if (!add_to_inout(token[0], token[1], codec->infmt, | |
744 codec->inflags)) | |
745 goto err_out_print_linenum; | |
746 } else if (!strcmp(token[0], "flags")) { | |
747 if (get_token(1, 1) < 0) | |
748 goto err_out_parse_error; | |
749 if (!strcmp(token[0], "seekable")) | |
750 codec->flags |= CODECS_FLAG_SEEKABLE; | |
751 else | |
752 if (!strcmp(token[0], "align16")) | |
753 codec->flags |= CODECS_FLAG_ALIGN16; | |
754 else | |
755 goto err_out_parse_error; | |
756 } else if (!strcmp(token[0], "status")) { | |
757 if (get_token(1, 1) < 0) | |
758 goto err_out_parse_error; | |
759 if (!strcasecmp(token[0], "working")) | |
760 codec->status = CODECS_STATUS_WORKING; | |
761 else if (!strcasecmp(token[0], "crashing")) | |
762 codec->status = CODECS_STATUS_NOT_WORKING; | |
763 else if (!strcasecmp(token[0], "untested")) | |
764 codec->status = CODECS_STATUS_UNTESTED; | |
765 else if (!strcasecmp(token[0], "buggy")) | |
766 codec->status = CODECS_STATUS_PROBLEMS; | |
767 else | |
768 goto err_out_parse_error; | |
769 } else if (!strcmp(token[0], "cpuflags")) { | |
770 if (get_token(1, 1) < 0) | |
771 goto err_out_parse_error; | |
772 if (!(codec->cpuflags = get_cpuflags(token[0]))) | |
773 goto err_out_parse_error; | |
774 } else | |
775 goto err_out_parse_error; | |
776 } | |
777 if (!validate_codec(codec, codec_type)) | |
778 goto err_out_not_valid; | |
779 mp_msg(MSGT_CODECCFG,MSGL_INFO,MSGTR_AudioVideoCodecTotals, nr_acodecs, nr_vcodecs); | |
780 if(video_codecs) video_codecs[nr_vcodecs].name = NULL; | |
781 if(audio_codecs) audio_codecs[nr_acodecs].name = NULL; | |
297 | 782 out: |
31077 | 783 free(line); |
784 line=NULL; | |
785 fclose(fp); | |
786 return 1; | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
787 |
328 | 788 err_out_parse_error: |
31077 | 789 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_ParseError); |
361 | 790 err_out_print_linenum: |
31077 | 791 PRINT_LINENUM; |
297 | 792 err_out: |
31077 | 793 codecs_uninit_free(); |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
794 |
31077 | 795 free(line); |
796 line=NULL; | |
797 line_num = 0; | |
798 fclose(fp); | |
799 return 0; | |
328 | 800 err_out_not_valid: |
31077 | 801 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_CodecDefinitionIncorrect); |
802 goto err_out_print_linenum; | |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6103
diff
changeset
|
803 err_out_release_num: |
31077 | 804 mp_msg(MSGT_CODECCFG,MSGL_ERR,MSGTR_OutdatedCodecsConf); |
805 goto err_out_print_linenum; | |
297 | 806 } |
807 | |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
808 static void codecs_free(codecs_t* codecs,int count) { |
31077 | 809 int i; |
810 for ( i = 0; i < count; i++) | |
811 if ( codecs[i].name ) { | |
32511
b39155e98ac3
Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents:
32394
diff
changeset
|
812 free(codecs[i].name); |
b39155e98ac3
Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents:
32394
diff
changeset
|
813 free(codecs[i].info); |
b39155e98ac3
Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents:
32394
diff
changeset
|
814 free(codecs[i].comment); |
b39155e98ac3
Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents:
32394
diff
changeset
|
815 free(codecs[i].dll); |
b39155e98ac3
Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents:
32394
diff
changeset
|
816 free(codecs[i].drv); |
31077 | 817 } |
32511
b39155e98ac3
Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents:
32394
diff
changeset
|
818 free(codecs); |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
819 } |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
820 |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
17120
diff
changeset
|
821 void codecs_uninit_free(void) { |
31077 | 822 if (video_codecs) |
823 codecs_free(video_codecs,nr_vcodecs); | |
824 video_codecs=NULL; | |
825 if (audio_codecs) | |
826 codecs_free(audio_codecs,nr_acodecs); | |
827 audio_codecs=NULL; | |
13807
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
828 } |
b014091b4417
Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>
faust3
parents:
13619
diff
changeset
|
829 |
332 | 830 codecs_t *find_audio_codec(unsigned int fourcc, unsigned int *fourccmap, |
31077 | 831 codecs_t *start, int force) |
328 | 832 { |
31077 | 833 return find_codec(fourcc, fourccmap, start, 1, force); |
328 | 834 } |
835 | |
332 | 836 codecs_t *find_video_codec(unsigned int fourcc, unsigned int *fourccmap, |
31077 | 837 codecs_t *start, int force) |
328 | 838 { |
31077 | 839 return find_codec(fourcc, fourccmap, start, 0, force); |
328 | 840 } |
841 | |
332 | 842 codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap, |
31077 | 843 codecs_t *start, int audioflag, int force) |
328 | 844 { |
31077 | 845 int i, j; |
846 codecs_t *c; | |
328 | 847 |
628 | 848 #if 0 |
31077 | 849 if (start) { |
850 for (/* NOTHING */; start->name; start++) { | |
851 for (j = 0; j < CODECS_MAX_FOURCC; j++) { | |
852 if (start->fourcc[j] == fourcc) { | |
853 if (fourccmap) | |
854 *fourccmap = start->fourccmap[j]; | |
855 return start; | |
856 } | |
857 } | |
858 } | |
859 } else | |
628 | 860 #endif |
31077 | 861 { |
862 if (audioflag) { | |
863 i = nr_acodecs; | |
864 c = audio_codecs; | |
865 } else { | |
866 i = nr_vcodecs; | |
867 c = video_codecs; | |
868 } | |
869 if(!i) return NULL; | |
870 for (/* NOTHING */; i--; c++) { | |
871 if(start && c<=start) continue; | |
872 for (j = 0; j < CODECS_MAX_FOURCC; j++) { | |
873 // FIXME: do NOT hardwire 'null' name here: | |
874 if (c->fourcc[j]==fourcc || !strcmp(c->drv,"null")) { | |
875 if (fourccmap) | |
876 *fourccmap = c->fourccmap[j]; | |
877 return c; | |
878 } | |
879 } | |
880 if (force) return c; | |
881 } | |
882 } | |
883 return NULL; | |
303 | 884 } |
885 | |
25661
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
886 void stringset_init(stringset_t *set) { |
31077 | 887 *set = calloc(1, sizeof(char *)); |
25661
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
888 } |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
889 |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
890 void stringset_free(stringset_t *set) { |
31077 | 891 int count = 0; |
892 while ((*set)[count]) free((*set)[count++]); | |
893 free(*set); | |
894 *set = NULL; | |
7505 | 895 } |
896 | |
25661
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
897 void stringset_add(stringset_t *set, const char *str) { |
31077 | 898 int count = 0; |
899 while ((*set)[count]) count++; | |
900 count++; | |
901 *set = realloc(*set, sizeof(char *) * (count + 1)); | |
902 (*set)[count - 1] = strdup(str); | |
903 (*set)[count] = NULL; | |
25661
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
904 } |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
905 |
293aeec83153
Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with
reimar
parents:
25247
diff
changeset
|
906 int stringset_test(stringset_t *set, const char *str) { |
31077 | 907 stringset_t s; |
908 for (s = *set; *s; s++) | |
909 if (strcmp(*s, str) == 0) | |
910 return 1; | |
911 return 0; | |
5325
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
912 } |
9c326f199060
tagging selected codec to avoid trying the same codec several times
arpi
parents:
5284
diff
changeset
|
913 |
1983 | 914 void list_codecs(int audioflag){ |
31077 | 915 int i; |
916 codecs_t *c; | |
1983 | 917 |
31077 | 918 if (audioflag) { |
919 i = nr_acodecs; | |
920 c = audio_codecs; | |
921 mp_msg(MSGT_CODECCFG,MSGL_INFO,"ac: afm: status: info: [lib/dll]\n"); | |
922 } else { | |
923 i = nr_vcodecs; | |
924 c = video_codecs; | |
925 mp_msg(MSGT_CODECCFG,MSGL_INFO,"vc: vfm: status: info: [lib/dll]\n"); | |
926 } | |
927 if(!i) return; | |
928 for (/* NOTHING */; i--; c++) { | |
929 char* s="unknown "; | |
930 switch(c->status){ | |
931 case CODECS_STATUS_WORKING: s="working ";break; | |
932 case CODECS_STATUS_PROBLEMS: s="problems";break; | |
933 case CODECS_STATUS_NOT_WORKING: s="crashing";break; | |
934 case CODECS_STATUS_UNTESTED: s="untested";break; | |
935 } | |
936 if(c->dll) | |
937 mp_msg(MSGT_CODECCFG,MSGL_INFO,"%-11s %-9s %s %s [%s]\n",c->name,c->drv,s,c->info,c->dll); | |
938 else | |
939 mp_msg(MSGT_CODECCFG,MSGL_INFO,"%-11s %-9s %s %s\n",c->name,c->drv,s,c->info); | |
940 } | |
1983 | 941 } |
942 | |
943 | |
607 | 944 #ifdef CODECS2HTML |
31408 | 945 static void wrapline(FILE *f2,char *s){ |
607 | 946 int c; |
947 if(!s){ | |
948 fprintf(f2,"-"); | |
949 return; | |
950 } | |
951 while((c=*s++)){ | |
952 if(c==',') fprintf(f2,"<br>"); else fputc(c,f2); | |
953 } | |
954 } | |
955 | |
31409 | 956 static void parsehtml(FILE *f1,FILE *f2,codecs_t *codec){ |
31077 | 957 int c,d; |
958 while((c=fgetc(f1))>=0){ | |
959 if(c!='%'){ | |
960 fputc(c,f2); | |
961 continue; | |
962 } | |
963 d=fgetc(f1); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
964 |
31077 | 965 switch(d){ |
966 case '.': | |
967 return; // end of section | |
968 case 'n': | |
969 wrapline(f2,codec->name); break; | |
970 case 'i': | |
971 wrapline(f2,codec->info); break; | |
972 case 'c': | |
973 wrapline(f2,codec->comment); break; | |
974 case 'd': | |
975 wrapline(f2,codec->dll); break; | |
976 case 'D': | |
977 fprintf(f2,"%c",!strcmp(codec->drv,"dshow")?'+':'-'); break; | |
978 case 'F': | |
979 for(d=0;d<CODECS_MAX_FOURCC;d++) | |
980 if(!d || codec->fourcc[d]!=0xFFFFFFFF) | |
981 fprintf(f2,"%s%.4s",d?"<br>":"",(codec->fourcc[d]==0xFFFFFFFF || codec->fourcc[d]<0x20202020)?!d?"-":"":(char*) &codec->fourcc[d]); | |
982 break; | |
983 case 'f': | |
984 for(d=0;d<CODECS_MAX_FOURCC;d++) | |
985 if(codec->fourcc[d]!=0xFFFFFFFF) | |
986 fprintf(f2,"%s0x%X",d?"<br>":"",codec->fourcc[d]); | |
987 break; | |
988 case 'Y': | |
989 for(d=0;d<CODECS_MAX_OUTFMT;d++) | |
990 if(codec->outfmt[d]!=0xFFFFFFFF){ | |
991 for (c=0; fmt_table[c].name; c++) | |
992 if(fmt_table[c].num==codec->outfmt[d]) break; | |
993 if(fmt_table[c].name) | |
994 fprintf(f2,"%s%s",d?"<br>":"",fmt_table[c].name); | |
995 } | |
996 break; | |
997 default: | |
998 fputc(c,f2); | |
999 fputc(d,f2); | |
607 | 1000 } |
31077 | 1001 } |
607 | 1002 } |
1003 | |
1004 void skiphtml(FILE *f1){ | |
31077 | 1005 int c,d; |
1006 while((c=fgetc(f1))>=0){ | |
1007 if(c!='%'){ | |
1008 continue; | |
607 | 1009 } |
31077 | 1010 d=fgetc(f1); |
1011 if(d=='.') return; // end of section | |
1012 } | |
607 | 1013 } |
1014 | |
29115
1e78a310487e
Change type of first argument of the print_int_array function from int to
diego
parents:
28747
diff
changeset
|
1015 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
|
1016 { |
31077 | 1017 printf("{ "); |
1018 while (size--) | |
1019 if(abs(*a)<256) | |
1020 printf("%d%s", *a++, size?", ":""); | |
1021 else | |
1022 printf("0x%X%s", *a++, size?", ":""); | |
1023 printf(" }"); | |
8467
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 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1026 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
|
1027 { |
31077 | 1028 printf("{ "); |
1029 while (size--) | |
1030 if((*a)<10) | |
1031 printf("%d%s", *a++, size?", ":""); | |
1032 else | |
1033 printf("0x%02x%s", *a++, size?", ":""); | |
1034 printf(" }"); | |
8467
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 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1037 static void print_string(const char* s) |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1038 { |
31077 | 1039 if (!s) printf("NULL"); |
1040 else printf("\"%s\"", s); | |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1041 } |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1042 |
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1043 int main(int argc, char* argv[]) |
607 | 1044 { |
31077 | 1045 codecs_t *cl; |
1046 FILE *f1; | |
1047 FILE *f2; | |
1048 int c,d,i; | |
1049 int pos; | |
1050 int section=-1; | |
1051 int nr_codecs; | |
1052 int win32=-1; | |
1053 int dshow=-1; | |
1054 int win32ex=-1; | |
607 | 1055 |
31077 | 1056 /* |
1057 * Take path to codecs.conf from command line, or fall back on | |
1058 * etc/codecs.conf | |
1059 */ | |
1060 if (!(nr_codecs = parse_codec_cfg((argc>1)?argv[1]:"etc/codecs.conf"))) | |
1061 exit(1); | |
31406
0fd1b3f1fe69
Auto-update CODEC_CFG_MIN value to release value in etc/codecs.conf.
reimar
parents:
31159
diff
changeset
|
1062 if (codecs_conf_release < CODEC_CFG_MIN) |
0fd1b3f1fe69
Auto-update CODEC_CFG_MIN value to release value in etc/codecs.conf.
reimar
parents:
31159
diff
changeset
|
1063 exit(1); |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1064 |
31077 | 1065 if (argc > 1) { |
1066 int i, j; | |
1067 const char* nm[2]; | |
1068 codecs_t* cod[2]; | |
1069 int nr[2]; | |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1070 |
31077 | 1071 nm[0] = "builtin_video_codecs"; |
1072 cod[0] = video_codecs; | |
1073 nr[0] = nr_vcodecs; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1074 |
31077 | 1075 nm[1] = "builtin_audio_codecs"; |
1076 cod[1] = audio_codecs; | |
1077 nr[1] = nr_acodecs; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1078 |
31077 | 1079 printf("/* GENERATED FROM %s, DO NOT EDIT! */\n\n",argv[1]); |
31407 | 1080 printf("#include <stddef.h>\n"); |
1081 printf("#include \"codec-cfg.h\"\n\n"); | |
31406
0fd1b3f1fe69
Auto-update CODEC_CFG_MIN value to release value in etc/codecs.conf.
reimar
parents:
31159
diff
changeset
|
1082 printf("#define CODEC_CFG_MIN %i\n\n", codecs_conf_release); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1083 |
31077 | 1084 for (i=0; i<2; i++) { |
1085 printf("const codecs_t %s[] = {\n", nm[i]); | |
1086 for (j = 0; j < nr[i]; j++) { | |
1087 printf("{"); | |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8211
diff
changeset
|
1088 |
31077 | 1089 print_int_array(cod[i][j].fourcc, CODECS_MAX_FOURCC); |
1090 printf(", /* fourcc */\n"); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1091 |
31077 | 1092 print_int_array(cod[i][j].fourccmap, CODECS_MAX_FOURCC); |
1093 printf(", /* fourccmap */\n"); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1094 |
31077 | 1095 print_int_array(cod[i][j].outfmt, CODECS_MAX_OUTFMT); |
1096 printf(", /* outfmt */\n"); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1097 |
31077 | 1098 print_char_array(cod[i][j].outflags, CODECS_MAX_OUTFMT); |
1099 printf(", /* outflags */\n"); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1100 |
31077 | 1101 print_int_array(cod[i][j].infmt, CODECS_MAX_INFMT); |
1102 printf(", /* infmt */\n"); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1103 |
31077 | 1104 print_char_array(cod[i][j].inflags, CODECS_MAX_INFMT); |
1105 printf(", /* inflags */\n"); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1106 |
31077 | 1107 print_string(cod[i][j].name); printf(", /* name */\n"); |
1108 print_string(cod[i][j].info); printf(", /* info */\n"); | |
1109 print_string(cod[i][j].comment); printf(", /* comment */\n"); | |
1110 print_string(cod[i][j].dll); printf(", /* dll */\n"); | |
1111 print_string(cod[i][j].drv); printf(", /* drv */\n"); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1112 |
31077 | 1113 printf("{ 0x%08lx, %hu, %hu,", |
1114 cod[i][j].guid.f1, | |
1115 cod[i][j].guid.f2, | |
1116 cod[i][j].guid.f3); | |
1117 print_char_array(cod[i][j].guid.f4, sizeof(cod[i][j].guid.f4)); | |
1118 printf(" }, /* GUID */\n"); | |
1119 printf("%hd /* flags */, %hd /* status */, %hd /* cpuflags */ }\n", | |
1120 cod[i][j].flags, | |
1121 cod[i][j].status, | |
1122 cod[i][j].cpuflags); | |
1123 if (j < nr[i]) printf(",\n"); | |
607 | 1124 } |
31077 | 1125 printf("};\n\n"); |
1126 } | |
1127 exit(0); | |
1128 } | |
1129 | |
1130 f1=fopen("DOCS/tech/codecs-in.html","rb"); if(!f1) exit(1); | |
1131 f2=fopen("DOCS/codecs-status.html","wb"); if(!f2) exit(1); | |
1132 | |
1133 while((c=fgetc(f1))>=0){ | |
1134 if(c!='%'){ | |
1135 fputc(c,f2); | |
1136 continue; | |
1137 } | |
1138 d=fgetc(f1); | |
1139 if(d>='0' && d<='9'){ | |
1140 // begin section | |
1141 section=d-'0'; | |
1142 //printf("BEGIN %d\n",section); | |
1143 if(section>=5){ | |
1144 // audio | |
1145 cl = audio_codecs; | |
1146 nr_codecs = nr_acodecs; | |
1147 dshow=7;win32=4; | |
1148 } else { | |
1149 // video | |
1150 cl = video_codecs; | |
1151 nr_codecs = nr_vcodecs; | |
1152 dshow=4;win32=2;win32ex=6; | |
1153 } | |
1154 pos=ftell(f1); | |
1155 for(i=0;i<nr_codecs;i++){ | |
1156 fseek(f1,pos,SEEK_SET); | |
1157 switch(section){ | |
1158 case 0: | |
1159 case 5: | |
1160 if(cl[i].status==CODECS_STATUS_WORKING) | |
1161 // if(!(!strcmp(cl[i].drv,"vfw") || !strcmp(cl[i].drv,"dshow") || !strcmp(cl[i].drv,"vfwex") || !strcmp(cl[i].drv,"acm"))) | |
31409 | 1162 parsehtml(f1,f2,&cl[i]); |
31077 | 1163 break; |
8211 | 1164 #if 0 |
31077 | 1165 case 1: |
1166 case 6: | |
1167 if(cl[i].status==CODECS_STATUS_WORKING) | |
1168 if((!strcmp(cl[i].drv,"vfw") || !strcmp(cl[i].drv,"dshow") || !strcmp(cl[i].drv,"vfwex") || !strcmp(cl[i].drv,"acm"))) | |
31409 | 1169 parsehtml(f1,f2,&cl[i]); |
31077 | 1170 break; |
1171 #endif | |
1172 case 2: | |
1173 case 7: | |
1174 if(cl[i].status==CODECS_STATUS_PROBLEMS) | |
31409 | 1175 parsehtml(f1,f2,&cl[i]); |
31077 | 1176 break; |
1177 case 3: | |
1178 case 8: | |
1179 if(cl[i].status==CODECS_STATUS_NOT_WORKING) | |
31409 | 1180 parsehtml(f1,f2,&cl[i]); |
31077 | 1181 break; |
1182 case 4: | |
1183 case 9: | |
1184 if(cl[i].status==CODECS_STATUS_UNTESTED) | |
31409 | 1185 parsehtml(f1,f2,&cl[i]); |
31077 | 1186 break; |
1187 default: | |
1188 printf("Warning! unimplemented section: %d\n",section); | |
607 | 1189 } |
31077 | 1190 } |
1191 fseek(f1,pos,SEEK_SET); | |
1192 skiphtml(f1); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1193 |
31077 | 1194 continue; |
607 | 1195 } |
31077 | 1196 fputc(c,f2); |
1197 fputc(d,f2); | |
1198 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1199 |
31077 | 1200 fclose(f2); |
1201 fclose(f1); | |
1202 return 0; | |
607 | 1203 } |
1204 | |
1205 #endif | |
1206 | |
297 | 1207 #ifdef TESTING |
1208 int main(void) | |
1209 { | |
31077 | 1210 codecs_t *c; |
1211 int i,j, nr_codecs, state; | |
297 | 1212 |
31077 | 1213 if (!(parse_codec_cfg("etc/codecs.conf"))) |
1214 return 0; | |
1215 if (!video_codecs) | |
1216 printf("no videoconfig.\n"); | |
1217 if (!audio_codecs) | |
1218 printf("no audioconfig.\n"); | |
328 | 1219 |
31077 | 1220 printf("videocodecs:\n"); |
1221 c = video_codecs; | |
1222 nr_codecs = nr_vcodecs; | |
1223 state = 0; | |
328 | 1224 next: |
31077 | 1225 if (c) { |
1226 printf("number of %scodecs: %d\n", state==0?"video":"audio", | |
1227 nr_codecs); | |
1228 for(i=0;i<nr_codecs;i++, c++){ | |
1229 printf("\n============== %scodec %02d ===============\n", | |
1230 state==0?"video":"audio",i); | |
1231 printf("name='%s'\n",c->name); | |
1232 printf("info='%s'\n",c->info); | |
1233 printf("comment='%s'\n",c->comment); | |
1234 printf("dll='%s'\n",c->dll); | |
1235 /* printf("flags=%X driver=%d status=%d cpuflags=%d\n", | |
1236 c->flags, c->driver, c->status, c->cpuflags); */ | |
1237 printf("flags=%X status=%d cpuflags=%d\n", | |
1238 c->flags, c->status, c->cpuflags); | |
300 | 1239 |
31077 | 1240 for(j=0;j<CODECS_MAX_FOURCC;j++){ |
1241 if(c->fourcc[j]!=0xFFFFFFFF){ | |
1242 printf("fourcc %02d: %08X (%.4s) ===> %08X (%.4s)\n",j,c->fourcc[j],(char *) &c->fourcc[j],c->fourccmap[j],(char *) &c->fourccmap[j]); | |
1243 } | |
1244 } | |
328 | 1245 |
31077 | 1246 for(j=0;j<CODECS_MAX_OUTFMT;j++){ |
1247 if(c->outfmt[j]!=0xFFFFFFFF){ | |
1248 printf("outfmt %02d: %08X (%.4s) flags: %d\n",j,c->outfmt[j],(char *) &c->outfmt[j],c->outflags[j]); | |
1249 } | |
1250 } | |
300 | 1251 |
31077 | 1252 for(j=0;j<CODECS_MAX_INFMT;j++){ |
1253 if(c->infmt[j]!=0xFFFFFFFF){ | |
1254 printf("infmt %02d: %08X (%.4s) flags: %d\n",j,c->infmt[j],(char *) &c->infmt[j],c->inflags[j]); | |
1255 } | |
1256 } | |
4676 | 1257 |
31077 | 1258 printf("GUID: %08lX %04X %04X",c->guid.f1,c->guid.f2,c->guid.f3); |
1259 for(j=0;j<8;j++) printf(" %02X",c->guid.f4[j]); | |
1260 printf("\n"); | |
300 | 1261 |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29115
diff
changeset
|
1262 |
31077 | 1263 } |
1264 } | |
1265 if (!state) { | |
1266 printf("audiocodecs:\n"); | |
1267 c = audio_codecs; | |
1268 nr_codecs = nr_acodecs; | |
1269 state = 1; | |
1270 goto next; | |
1271 } | |
1272 return 0; | |
297 | 1273 } |
1274 | |
1275 #endif |