Mercurial > mplayer.hg
annotate osdep/getch2.h @ 34404:95f802285711
Allow compilation with Libav
Some CPP Macros and codec ids are not (yet) available in libav, so use
them only if they are actually defined. This doesn't work for code ids,
as they are defined as enums. Therefore, #ifdefs tests for the presence
of the respective codec.
This approach should also allow to compile mplayer against earlier
versions of FFmpeg.
author | siretart |
---|---|
date | Tue, 03 Jan 2012 15:51:26 +0000 |
parents | 44837471a711 |
children |
rev | line source |
---|---|
28744 | 1 /* |
2 * GyS-TermIO v2.0 (for GySmail v3) | |
3 * a very small replacement of ncurses library | |
4 * | |
28767 | 5 * copyright (C) 1999 A'rpi/ESP-team |
6 * | |
28744 | 7 * This file is part of MPlayer. |
8 * | |
9 * MPlayer is free software; you can redistribute it and/or modify | |
10 * it under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or | |
12 * (at your option) any later version. | |
13 * | |
14 * MPlayer is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License along | |
20 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
22 */ | |
1 | 23 |
26029 | 24 #ifndef MPLAYER_GETCH2_H |
25 #define MPLAYER_GETCH2_H | |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
24129
diff
changeset
|
26 |
30668
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
27 #include "config.h" |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
28 |
1 | 29 /* Screen size. Initialized by load_termcap() and get_screen_size() */ |
30 extern int screen_width; | |
31 extern int screen_height; | |
32 | |
17240
11459d1ff17c
Use termcap "erase to end of line" character code instead of using spaces
ods15
parents:
9380
diff
changeset
|
33 /* Termcap code to erase to end of line */ |
11459d1ff17c
Use termcap "erase to end of line" character code instead of using spaces
ods15
parents:
9380
diff
changeset
|
34 extern char * erase_to_end_of_line; |
11459d1ff17c
Use termcap "erase to end of line" character code instead of using spaces
ods15
parents:
9380
diff
changeset
|
35 |
1 | 36 /* Get screen-size using IOCTL call. */ |
28051 | 37 void get_screen_size(void); |
1 | 38 |
39 /* Load key definitions from the TERMCAP database. 'termtype' can be NULL */ | |
28051 | 40 int load_termcap(char *termtype); |
1 | 41 |
42 /* Enable and disable STDIN line-buffering */ | |
28051 | 43 void getch2_enable(void); |
44 void getch2_disable(void); | |
1 | 45 |
46 /* Read a character or a special key code (see keycodes.h) */ | |
28051 | 47 void getch2(void); |
1 | 48 |
30668
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
49 #ifdef CONFIG_ICONV |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
50 /** |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
51 * \brief gets the name of the system's terminal character set |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
52 * \return a malloced string indicating the system charset |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
53 * |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
54 * Be warned that this function on many systems is in no way thread-safe |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
55 * since it modifies global data |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
56 */ |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
57 char *get_term_charset(void); |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
58 #endif |
46e7233f1faa
Properly declare get_term_charset() instead of forward declaring it.
diego
parents:
28767
diff
changeset
|
59 |
30669 | 60 #if defined(__MINGW32__) || defined(__OS2__) |
26016 | 61 /* slave cmd function for Windows and OS/2 */ |
28051 | 62 int mp_input_slave_cmd_func(int fd,char* dest,int size); |
26016 | 63 #define USE_SELECT 0 |
64 #define MP_INPUT_SLAVE_CMD_FUNC mp_input_slave_cmd_func | |
65 #else | |
66 #define USE_SELECT 1 | |
67 #define MP_INPUT_SLAVE_CMD_FUNC NULL | |
68 #endif | |
69 | |
26029 | 70 #endif /* MPLAYER_GETCH2_H */ |