2001-04-06 23:20:46 +00:00
|
|
|
#ifndef __CODEC_CFG_H
|
|
|
|
#define __CODEC_CFG_H
|
|
|
|
|
2003-07-24 19:32:59 +00:00
|
|
|
#define CODEC_CFG_MIN 20030724
|
2002-05-26 22:39:38 +00:00
|
|
|
|
2002-01-17 09:20:29 +00:00
|
|
|
#define CODECS_MAX_FOURCC 32
|
2002-02-12 17:33:27 +00:00
|
|
|
#define CODECS_MAX_OUTFMT 16
|
|
|
|
#define CODECS_MAX_INFMT 16
|
2001-04-06 23:20:46 +00:00
|
|
|
|
2001-04-07 21:27:57 +00:00
|
|
|
// Global flags:
|
2001-04-10 20:09:23 +00:00
|
|
|
#define CODECS_FLAG_SEEKABLE (1<<0)
|
2002-06-25 22:26:34 +00:00
|
|
|
#define CODECS_FLAG_ALIGN16 (1<<1)
|
2002-03-25 03:02:57 +00:00
|
|
|
#define CODECS_FLAG_SELECTED (1<<15) /* for internal use */
|
2001-04-06 23:20:46 +00:00
|
|
|
|
2001-04-07 21:27:57 +00:00
|
|
|
// Outfmt flags:
|
2001-04-06 23:56:42 +00:00
|
|
|
#define CODECS_FLAG_FLIP (1<<0)
|
|
|
|
#define CODECS_FLAG_NOFLIP (1<<1)
|
|
|
|
#define CODECS_FLAG_YUVHACK (1<<2)
|
2002-03-21 19:53:31 +00:00
|
|
|
#define CODECS_FLAG_QUERY (1<<3)
|
2002-05-16 21:50:38 +00:00
|
|
|
#define CODECS_FLAG_STATIC (1<<4)
|
2001-04-06 23:56:42 +00:00
|
|
|
|
2002-03-18 01:52:51 +00: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-08 23:42:25 +00:00
|
|
|
|
2001-04-06 23:56:42 +00:00
|
|
|
|
2001-09-02 17:21:22 +00:00
|
|
|
#ifndef GUID_TYPE
|
|
|
|
#define GUID_TYPE
|
2001-04-06 23:20:46 +00:00
|
|
|
typedef struct {
|
2001-04-07 00:51:38 +00:00
|
|
|
unsigned long f1;
|
|
|
|
unsigned short f2;
|
|
|
|
unsigned short f3;
|
|
|
|
unsigned char f4[8];
|
2001-04-06 23:20:46 +00:00
|
|
|
} GUID;
|
2001-09-02 17:21:22 +00:00
|
|
|
#endif
|
|
|
|
|
2001-04-06 23:20:46 +00:00
|
|
|
|
2001-10-20 18:49:08 +00:00
|
|
|
typedef struct codecs_st {
|
2001-04-08 23:42:25 +00: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 17:33:27 +00:00
|
|
|
unsigned int infmt[CODECS_MAX_INFMT];
|
|
|
|
unsigned char inflags[CODECS_MAX_INFMT];
|
2001-04-06 23:20:46 +00:00
|
|
|
char *name;
|
|
|
|
char *info;
|
|
|
|
char *comment;
|
|
|
|
char *dll;
|
2002-08-30 21:44:20 +00:00
|
|
|
char* drv;
|
2001-04-06 23:20:46 +00:00
|
|
|
GUID guid;
|
2002-08-30 21:44:20 +00:00
|
|
|
// short driver;
|
2001-04-08 23:42:25 +00:00
|
|
|
short flags;
|
|
|
|
short status;
|
2001-04-11 20:55:14 +00:00
|
|
|
short cpuflags;
|
2001-04-06 23:20:46 +00:00
|
|
|
} codecs_t;
|
|
|
|
|
2001-12-27 18:38:10 +00:00
|
|
|
int parse_codec_cfg(char *cfgfile);
|
2001-04-10 23:18:01 +00: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);
|
2002-09-26 01:28:32 +00:00
|
|
|
void select_codec(char* codecname,int audioflag);
|
2001-09-27 12:59:35 +00:00
|
|
|
void list_codecs(int audioflag);
|
2002-03-25 03:07:27 +00:00
|
|
|
void codecs_reset_selection(int audioflag);
|
2001-04-06 23:20:46 +00:00
|
|
|
|
|
|
|
#endif
|