Mercurial > mplayer.hg
annotate libmpcodecs/mpc_info.h @ 25960:5804605d4341
Fix typo.
author | cehoyos |
---|---|
date | Wed, 13 Feb 2008 19:21:39 +0000 |
parents | 246221f7ba2e |
children | 4129c8cfa742 |
rev | line source |
---|---|
25869
246221f7ba2e
Consistently use uppercase filename as multiple inclusion guard.
diego
parents:
25535
diff
changeset
|
1 #ifndef MPC_INFO_H |
246221f7ba2e
Consistently use uppercase filename as multiple inclusion guard.
diego
parents:
25535
diff
changeset
|
2 #define MPC_INFO_H |
5323 | 3 |
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 /* interface author/maintainer */ | |
11 const char *maintainer; | |
12 /* codec author ("Aaron Holtzman <aholtzma@ess.engr.uvic.ca>") */ | |
13 const char *author; | |
14 /* any additional comments */ | |
15 const char *comment; | |
16 } mp_codec_info_t; | |
17 | |
18 #define CONTROL_OK 1 | |
19 #define CONTROL_TRUE 1 | |
20 #define CONTROL_FALSE 0 | |
21 #define CONTROL_UNKNOWN -1 | |
22 #define CONTROL_ERROR -2 | |
23 #define CONTROL_NA -3 | |
24 | |
25869
246221f7ba2e
Consistently use uppercase filename as multiple inclusion guard.
diego
parents:
25535
diff
changeset
|
25 #endif /* MPC_INFO_H */ |