diff options
author | runge <runge> | 2006-05-07 00:50:13 +0000 |
---|---|---|
committer | runge <runge> | 2006-05-07 00:50:13 +0000 |
commit | 279f35495a122c9892198545f83e03c6fc50fa08 (patch) | |
tree | 7ce00691a9f77432cead7a5f4ae702fc62878019 /x11vnc/options.c | |
parent | 0d734ad8967eafab1fb058280a0db04e7470e569 (diff) | |
download | libtdevnc-279f35495a122c9892198545f83e03c6fc50fa08.tar.gz libtdevnc-279f35495a122c9892198545f83e03c6fc50fa08.zip |
x11vnc: support for video4linux webcams & tv-tuners, -24to32 bpp option, -rawfb console.
Diffstat (limited to 'x11vnc/options.c')
-rw-r--r-- | x11vnc/options.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/x11vnc/options.c b/x11vnc/options.c index a4ddee5..b270547 100644 --- a/x11vnc/options.c +++ b/x11vnc/options.c @@ -11,6 +11,7 @@ int debug = 0; char *use_dpy = NULL; /* -display */ char *auth_file = NULL; /* -auth/-xauth */ char *visual_str = NULL; /* -visual */ +int set_visual_str_to_something = 0; char *logfile = NULL; /* -o, -logfile */ int logfile_append = 0; char *flagfile = NULL; /* -flag */ @@ -102,6 +103,7 @@ int flash_cmap = 0; /* follow installed colormaps */ int shift_cmap = 0; /* ncells < 256 and needs shift of pixel values */ int force_indexed_color = 0; /* whether to force indexed color for 8bpp */ int cmap8to24 = 0; /* -8to24 */ +int xform24to32 = 0; /* -24to32 */ char *cmap8to24_str = NULL; int launch_gui = 0; /* -gui */ @@ -110,10 +112,15 @@ int use_iso_level3 = 0; /* ISO_Level3_Shift instead of Mode_switch */ int clear_mods = 0; /* -clear_mods (1) and -clear_keys (2) */ int nofb = 0; /* do not send any fb updates */ char *raw_fb_str = NULL; /* used under -rawfb */ +char *raw_fb_pixfmt = NULL; +char *freqtab = NULL; char *pipeinput_str = NULL; /* -pipeinput [tee,reopen,keycodes:]cmd */ char *pipeinput_opts = NULL; FILE *pipeinput_fh = NULL; int pipeinput_tee = 0; +int pipeinput_int = 0; +int pipeinput_cons_fd = -1; +char *pipeinput_cons_dev = NULL; unsigned long subwin = 0x0; /* -id, -sid */ int subwin_wait_mapped = 0; |