comparison libmpcodecs/mpc_info.h @ 5323:a2bd4e930d59

common stuff moved to mpc_info.h
author arpi
date Mon, 25 Mar 2002 02:39:36 +0000
parents
children 28677d779205
comparison
equal deleted inserted replaced
5322:329896ab1989 5323:a2bd4e930d59
1
2 #ifndef MP_CODEC_INFO_T
3 #define MP_CODEC_INFO_T
4 typedef struct mp_codec_info_s
5 {
6 /* codec long name ("Autodesk FLI/FLC Animation decoder" */
7 const char *name;
8 /* short name (same as driver name in codecs.conf) ("dshow") */
9 const char *short_name;
10 /* codec family: -vfm id */
11 const int id;
12 /* interface author/maintainer */
13 const char *maintainer;
14 /* codec author ("Aaron Holtzman <aholtzma@ess.engr.uvic.ca>") */
15 const char *author;
16 /* any additional comments */
17 const char *comment;
18 } mp_codec_info_t;
19
20 #define CONTROL_OK 1
21 #define CONTROL_TRUE 1
22 #define CONTROL_FALSE 0
23 #define CONTROL_UNKNOWN -1
24 #define CONTROL_ERROR -2
25 #define CONTROL_NA -3
26
27 #endif