2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_CODEC_CFG_H
|
|
|
|
#define MPLAYER_CODEC_CFG_H
|
2001-04-06 23:20:46 +00:00
|
|
|
|
2007-04-07 16:14:51 +00:00
|
|
|
#define CODEC_CFG_MIN 20070407
|
2002-05-26 22:39:38 +00:00
|
|
|
|
2008-07-30 03:27:17 +00:00
|
|
|
#define CODECS_MAX_FOURCC 92
|
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)
|
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
|
|
|
|
2004-04-30 16:56:00 +00:00
|
|
|
#if !defined(GUID_TYPE) && !defined(GUID_DEFINED)
|
2004-10-09 07:38:45 +00:00
|
|
|
#define GUID_TYPE 1
|
|
|
|
#define GUID_DEFINED 1
|
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;
|
|
|
|
|
2006-07-09 17:45:36 +00:00
|
|
|
int parse_codec_cfg(const char *cfgfile);
|
2005-08-30 23:56:24 +00:00
|
|
|
codecs_t* find_video_codec(unsigned int fourcc, unsigned int *fourccmap,
|
|
|
|
codecs_t *start, int force);
|
|
|
|
codecs_t* find_audio_codec(unsigned int fourcc, unsigned int *fourccmap,
|
|
|
|
codecs_t *start, int force);
|
|
|
|
codecs_t* find_codec(unsigned int fourcc, unsigned int *fourccmap,
|
|
|
|
codecs_t *start, int audioflag, int force);
|
2001-09-27 12:59:35 +00:00
|
|
|
void list_codecs(int audioflag);
|
2006-02-09 14:08:03 +00:00
|
|
|
void codecs_uninit_free(void);
|
2001-04-06 23:20:46 +00:00
|
|
|
|
2008-01-12 14:05:46 +00:00
|
|
|
typedef char ** stringset_t;
|
|
|
|
void stringset_init(stringset_t *set);
|
|
|
|
void stringset_free(stringset_t *set);
|
|
|
|
void stringset_add(stringset_t *set, const char *str);
|
|
|
|
int stringset_test(stringset_t *set, const char *str);
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_CODEC_CFG_H */
|