annotate osdep/getch2.h @ 15915:b3924612667a
Update of the x264 encoding guide:
- Reorganized things, options are now divided into "speed vs quality"
and "other" (more or less). subq is now where it belongs.
- subq=6 is documented
- explanation of what 2-pass really does, and why you'd better use it
- mention 3-pass (and the fact that it usually doesn't help)
- documented qcomp
- documented keyint (not like it needed any more explanation, though)
- deblocking parameter tweaking no longer categorized as options that
"affect speed and quality ;)
- updated example cpu requirements for decoding, in codecs.xml
(720x480 @ 1500kbps 50%->35%, for my CPU)
author |
gpoirier |
date |
Mon, 04 Jul 2005 05:37:27 +0000 |
parents |
edfe34c5405d |
children |
11459d1ff17c |
rev |
line source |
1
|
1 /* GyS-TermIO v2.0 (for GySmail v3) (C) 1999 A'rpi/ESP-team */
|
|
2 /* a very small replacement of ncurses library */
|
|
3
|
|
4 /* Screen size. Initialized by load_termcap() and get_screen_size() */
|
|
5 extern int screen_width;
|
|
6 extern int screen_height;
|
|
7
|
|
8 /* Get screen-size using IOCTL call. */
|
|
9 extern void get_screen_size();
|
|
10
|
|
11 /* Load key definitions from the TERMCAP database. 'termtype' can be NULL */
|
|
12 extern int load_termcap(char *termtype);
|
|
13
|
|
14 /* Enable and disable STDIN line-buffering */
|
|
15 extern void getch2_enable();
|
|
16 extern void getch2_disable();
|
|
17
|
|
18 /* Read a character or a special key code (see keycodes.h) */
|
|
19 extern int getch2(int halfdelay_time);
|
|
20
|