Mercurial > mplayer.hg
annotate libmpcodecs/mpc_info.h @ 25623:b955a135e3a8
Do not use exit_player in the signal handler, this code just can not
be called from a signal handler.
Instead only make the input system generate quit commands for the first
CTRL+C and otherwise do getch2_disable and exit.
author | reimar |
---|---|
date | Tue, 08 Jan 2008 21:40:44 +0000 |
parents | 3baf6a2283da |
children | 246221f7ba2e |
rev | line source |
---|---|
5323 | 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 /* 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 | |
25535
3baf6a2283da
Add explanatory comments to the #endif part of multiple inclusion guards.
diego
parents:
7180
diff
changeset
|
25 #endif /* MP_CODEC_INFO_T */ |