Mercurial > mplayer.hg
annotate codec-cfg.h @ 4624:080882dddb2e
fixedsize video samples fixed (dvntsc-qt.mov)
author | arpi |
---|---|
date | Sun, 10 Feb 2002 00:45:56 +0000 |
parents | b1fe5f58cd82 |
children | 04880518728d |
rev | line source |
---|---|
297 | 1 #ifndef __CODEC_CFG_H |
2 #define __CODEC_CFG_H | |
3 | |
4216 | 4 #define CODECS_MAX_FOURCC 32 |
5 #define CODECS_MAX_OUTFMT 32 | |
297 | 6 |
303 | 7 // Global flags: |
328 | 8 #define CODECS_FLAG_SEEKABLE (1<<0) |
297 | 9 |
303 | 10 // Outfmt flags: |
299 | 11 #define CODECS_FLAG_FLIP (1<<0) |
12 #define CODECS_FLAG_NOFLIP (1<<1) | |
13 #define CODECS_FLAG_YUVHACK (1<<2) | |
14 | |
316 | 15 #define CODECS_STATUS_NOT_WORKING 0 |
16 #define CODECS_STATUS_UNTESTED -1 | |
17 #define CODECS_STATUS_PROBLEMS 1 | |
18 #define CODECS_STATUS_WORKING 2 | |
19 | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
20 // Codec family/driver: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
21 #define AFM_MPEG 1 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
22 #define AFM_PCM 2 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
23 #define AFM_AC3 3 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
24 #define AFM_ACM 4 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
25 #define AFM_ALAW 5 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
26 #define AFM_GSM 6 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
27 #define AFM_DSHOW 7 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
28 #define AFM_DVDPCM 8 |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1488
diff
changeset
|
29 #define AFM_HWAC3 9 |
1828 | 30 #define AFM_VORBIS 10 |
1929 | 31 #define AFM_FFMPEG 11 |
2415 | 32 #define AFM_MAD 12 |
3787 | 33 #define AFM_MSADPCM 13 |
3400 | 34 #define AFM_A52 14 |
35 #define AFM_G72X 15 | |
3787 | 36 #define AFM_IMAADPCM 16 |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3826
diff
changeset
|
37 #define AFM_FOX61ADPCM 17 |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3826
diff
changeset
|
38 #define AFM_FOX62ADPCM 18 |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4301
diff
changeset
|
39 #define AFM_ROQAUDIO 19 |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
40 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
41 #define VFM_MPEG 1 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
42 #define VFM_VFW 2 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
43 #define VFM_ODIVX 3 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
44 #define VFM_DSHOW 4 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
45 #define VFM_FFMPEG 5 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
46 #define VFM_VFWEX 6 |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
408
diff
changeset
|
47 #define VFM_DIVX4 7 |
1488 | 48 #define VFM_RAW 8 |
1948 | 49 #define VFM_RLE 9 |
2379 | 50 #define VFM_XANIM 10 |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2422
diff
changeset
|
51 #define VFM_MSVIDC 11 |
3172 | 52 #define VFM_FLI 12 |
3643
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3400
diff
changeset
|
53 #define VFM_CINEPAK 13 |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3667
diff
changeset
|
54 #define VFM_QTRLE 14 |
3804
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3798
diff
changeset
|
55 #define VFM_NUV 15 |
3969 | 56 #define VFM_CYUV 16 |
4227 | 57 #define VFM_QTSMC 17 |
4301
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
58 #define VFM_DUCKTM1 18 |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4301
diff
changeset
|
59 #define VFM_ROQVIDEO 19 |
4615
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4450
diff
changeset
|
60 #define VFM_QTRPZA 20 |
299 | 61 |
1836 | 62 #ifndef GUID_TYPE |
63 #define GUID_TYPE | |
297 | 64 typedef struct { |
300 | 65 unsigned long f1; |
66 unsigned short f2; | |
67 unsigned short f3; | |
68 unsigned char f4[8]; | |
297 | 69 } GUID; |
1836 | 70 #endif |
71 | |
297 | 72 |
2310 | 73 typedef struct codecs_st { |
316 | 74 unsigned int fourcc[CODECS_MAX_FOURCC]; |
75 unsigned int fourccmap[CODECS_MAX_FOURCC]; | |
76 unsigned int outfmt[CODECS_MAX_OUTFMT]; | |
77 unsigned char outflags[CODECS_MAX_OUTFMT]; | |
297 | 78 char *name; |
79 char *info; | |
80 char *comment; | |
316 | 81 char *dll; |
82 GUID guid; | |
297 | 83 short driver; |
84 short flags; | |
316 | 85 short status; |
361 | 86 short cpuflags; |
3667
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3643
diff
changeset
|
87 short priority; |
297 | 88 } codecs_t; |
89 | |
3798
d1e3ad5bcd8f
fixed few segfaults, make parse_codec_cfg() return int
iive
parents:
3787
diff
changeset
|
90 int parse_codec_cfg(char *cfgfile); |
332 | 91 codecs_t* find_video_codec(unsigned int fourcc, unsigned int *fourccmap, codecs_t *start); |
92 codecs_t* find_audio_codec(unsigned int fourcc, unsigned int *fourccmap, codecs_t *start); | |
93 codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap,codecs_t *start,int audioflag); | |
1983 | 94 void list_codecs(int audioflag); |
297 | 95 |
96 #endif |