2001-04-07 01:20:46 +02:00
|
|
|
#ifndef __CODEC_CFG_H
|
|
|
|
#define __CODEC_CFG_H
|
|
|
|
|
2002-06-26 00:26:34 +02:00
|
|
|
#define CODEC_CFG_MIN 20020626
|
2002-05-27 00:39:38 +02:00
|
|
|
|
2002-01-17 10:20:29 +01:00
|
|
|
#define CODECS_MAX_FOURCC 32
|
2002-02-12 18:33:27 +01:00
|
|
|
#define CODECS_MAX_OUTFMT 16
|
|
|
|
#define CODECS_MAX_INFMT 16
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2001-04-07 23:27:57 +02:00
|
|
|
// Global flags:
|
2001-04-10 22:09:23 +02:00
|
|
|
#define CODECS_FLAG_SEEKABLE (1<<0)
|
2002-06-26 00:26:34 +02:00
|
|
|
#define CODECS_FLAG_ALIGN16 (1<<1)
|
2002-03-25 04:02:57 +01:00
|
|
|
#define CODECS_FLAG_SELECTED (1<<15) /* for internal use */
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2001-04-07 23:27:57 +02:00
|
|
|
// Outfmt flags:
|
2001-04-07 01:56:42 +02:00
|
|
|
#define CODECS_FLAG_FLIP (1<<0)
|
|
|
|
#define CODECS_FLAG_NOFLIP (1<<1)
|
|
|
|
#define CODECS_FLAG_YUVHACK (1<<2)
|
2002-03-21 20:53:31 +01:00
|
|
|
#define CODECS_FLAG_QUERY (1<<3)
|
2002-05-16 23:50:38 +02:00
|
|
|
#define CODECS_FLAG_STATIC (1<<4)
|
2001-04-07 01:56:42 +02:00
|
|
|
|
2002-03-18 02:52:51 +01:00
|
|
|
#define CODECS_STATUS__MIN 0
|
|
|
|
#define CODECS_STATUS_NOT_WORKING -1
|
|
|
|
#define CODECS_STATUS_PROBLEMS 0
|
|
|
|
#define CODECS_STATUS_WORKING 1
|
|
|
|
#define CODECS_STATUS_UNTESTED 2
|
|
|
|
#define CODECS_STATUS__MAX 2
|
2001-04-09 01:42:25 +02:00
|
|
|
|
2001-07-29 04:08:27 +02:00
|
|
|
// Codec family/driver:
|
|
|
|
#define AFM_MPEG 1
|
|
|
|
#define AFM_PCM 2
|
|
|
|
#define AFM_AC3 3
|
|
|
|
#define AFM_ACM 4
|
|
|
|
#define AFM_ALAW 5
|
|
|
|
#define AFM_GSM 6
|
|
|
|
#define AFM_DSHOW 7
|
|
|
|
#define AFM_DVDPCM 8
|
2001-08-15 13:50:55 +02:00
|
|
|
#define AFM_HWAC3 9
|
2001-09-01 21:44:49 +02:00
|
|
|
#define AFM_VORBIS 10
|
2001-09-21 23:40:16 +02:00
|
|
|
#define AFM_FFMPEG 11
|
2001-10-23 14:03:41 +02:00
|
|
|
#define AFM_MAD 12
|
2001-12-27 06:09:43 +01:00
|
|
|
#define AFM_MSADPCM 13
|
2001-12-09 17:20:03 +01:00
|
|
|
#define AFM_A52 14
|
|
|
|
#define AFM_G72X 15
|
2001-12-27 06:09:43 +01:00
|
|
|
#define AFM_IMAADPCM 16
|
2002-02-25 03:48:37 +01:00
|
|
|
#define AFM_DK4ADPCM 17
|
|
|
|
#define AFM_DK3ADPCM 18
|
2002-02-01 06:33:46 +01:00
|
|
|
#define AFM_ROQAUDIO 19
|
2002-03-19 00:30:04 +01:00
|
|
|
#define AFM_AAC 20
|
2002-06-08 22:51:50 +02:00
|
|
|
#define AFM_REAL 21
|
2001-07-29 04:08:27 +02:00
|
|
|
|
|
|
|
#define VFM_MPEG 1
|
|
|
|
#define VFM_VFW 2
|
|
|
|
#define VFM_ODIVX 3
|
|
|
|
#define VFM_DSHOW 4
|
|
|
|
#define VFM_FFMPEG 5
|
|
|
|
#define VFM_VFWEX 6
|
|
|
|
#define VFM_DIVX4 7
|
2001-08-12 01:11:16 +02:00
|
|
|
#define VFM_RAW 8
|
2002-03-19 08:07:06 +01:00
|
|
|
#define VFM_MSRLE 9
|
2001-10-22 21:04:09 +02:00
|
|
|
#define VFM_XANIM 10
|
2001-11-11 14:35:00 +01:00
|
|
|
#define VFM_MSVIDC 11
|
2001-11-28 02:35:55 +01:00
|
|
|
#define VFM_FLI 12
|
2001-12-21 17:39:54 +01:00
|
|
|
#define VFM_CINEPAK 13
|
2001-12-23 23:20:46 +01:00
|
|
|
#define VFM_QTRLE 14
|
2001-12-27 22:32:17 +01:00
|
|
|
#define VFM_NUV 15
|
2002-01-04 06:57:00 +01:00
|
|
|
#define VFM_CYUV 16
|
2002-01-18 06:43:48 +01:00
|
|
|
#define VFM_QTSMC 17
|
2002-01-22 06:39:34 +01:00
|
|
|
#define VFM_DUCKTM1 18
|
2002-02-01 06:33:46 +01:00
|
|
|
#define VFM_ROQVIDEO 19
|
2002-02-09 21:05:49 +01:00
|
|
|
#define VFM_QTRPZA 20
|
2002-02-11 10:15:59 +01:00
|
|
|
#define VFM_MPNG 21
|
2002-03-10 23:49:18 +01:00
|
|
|
#define VFM_IJPG 22
|
2002-03-21 02:21:49 +01:00
|
|
|
#define VFM_HUFFYUV 23
|
2002-03-22 23:12:09 +01:00
|
|
|
#define VFM_ZLIB 24
|
2002-04-03 21:09:55 +02:00
|
|
|
#define VFM_MPEGPES 25
|
2002-06-08 22:51:50 +02:00
|
|
|
#define VFM_REAL 26
|
2002-06-23 01:09:40 +02:00
|
|
|
#define VFM_SVQ1 27
|
2002-07-10 22:56:57 +02:00
|
|
|
#define VFM_XVID 28
|
2001-04-07 01:56:42 +02:00
|
|
|
|
2001-09-02 19:21:22 +02:00
|
|
|
#ifndef GUID_TYPE
|
|
|
|
#define GUID_TYPE
|
2001-04-07 01:20:46 +02:00
|
|
|
typedef struct {
|
2001-04-07 02:51:38 +02:00
|
|
|
unsigned long f1;
|
|
|
|
unsigned short f2;
|
|
|
|
unsigned short f3;
|
|
|
|
unsigned char f4[8];
|
2001-04-07 01:20:46 +02:00
|
|
|
} GUID;
|
2001-09-02 19:21:22 +02:00
|
|
|
#endif
|
|
|
|
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2001-10-20 20:49:08 +02:00
|
|
|
typedef struct codecs_st {
|
2001-04-09 01:42:25 +02:00
|
|
|
unsigned int fourcc[CODECS_MAX_FOURCC];
|
|
|
|
unsigned int fourccmap[CODECS_MAX_FOURCC];
|
|
|
|
unsigned int outfmt[CODECS_MAX_OUTFMT];
|
|
|
|
unsigned char outflags[CODECS_MAX_OUTFMT];
|
2002-02-12 18:33:27 +01:00
|
|
|
unsigned int infmt[CODECS_MAX_INFMT];
|
|
|
|
unsigned char inflags[CODECS_MAX_INFMT];
|
2001-04-07 01:20:46 +02:00
|
|
|
char *name;
|
|
|
|
char *info;
|
|
|
|
char *comment;
|
|
|
|
char *dll;
|
|
|
|
GUID guid;
|
2001-04-09 01:42:25 +02:00
|
|
|
short driver;
|
|
|
|
short flags;
|
|
|
|
short status;
|
2001-04-11 22:55:14 +02:00
|
|
|
short cpuflags;
|
2001-12-23 12:58:57 +01:00
|
|
|
short priority;
|
2001-04-07 01:20:46 +02:00
|
|
|
} codecs_t;
|
|
|
|
|
2001-12-27 19:38:10 +01:00
|
|
|
int parse_codec_cfg(char *cfgfile);
|
2001-04-11 01:18:01 +02:00
|
|
|
codecs_t* find_video_codec(unsigned int fourcc, unsigned int *fourccmap, codecs_t *start);
|
|
|
|
codecs_t* find_audio_codec(unsigned int fourcc, unsigned int *fourccmap, codecs_t *start);
|
|
|
|
codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap,codecs_t *start,int audioflag);
|
2001-09-27 14:59:35 +02:00
|
|
|
void list_codecs(int audioflag);
|
2002-03-25 04:07:27 +01:00
|
|
|
void codecs_reset_selection(int audioflag);
|
2001-04-07 01:20:46 +02:00
|
|
|
|
|
|
|
#endif
|