search for: compression_level

Displaying 20 results from an estimated 43 matches for "compression_level".

2011 Jul 11
1
save.image compression_level argument
Hi, in "save.image", it would be nice if there was a "compression_level" argument that is passed along to "save". Or is there a reason for disabling the "compression_level" option for saving workspaces, but enabling it for manually saving individual objects? Thanks, Andreas
2014 Jun 18
1
Please help me understand what values of FFMPEG's "compression_level" preset generate subset FLAC stream and what not-subset?
Please help me understand what values of FFMPEG's "compression_level" preset generate subset FLAC stream and what not-subset? Default value of compression_level for FFMPEG's FLAC encoder is 5. FLAC specific encoder parameters: Encoder flac [FLAC (Free Lossless Audio Codec)]: Threading capabilities: no Supported sample formats: s16 s32 FLAC encode...
2002 Sep 16
2
privsep versus compression
...-w -r openssh-3.2.3p1/session.c openssh/session.c --- openssh-3.2.3p1/session.c 2002-05-13 02:48:58.000000000 +0200 +++ openssh/session.c 2002-09-04 08:45:10.000000000 +0200 [...] @@ -165,8 +252,8 @@ Session *s; char *command; int success, type, screen_flag; - int compression_level = 0, enable_compression_after_reply = 0; - u_int proto_len, data_len, dlen; + int enable_compression_after_reply = 0; + u_int proto_len, data_len, dlen, compression_level = 0; s = session_new(); s->authctxt = authctxt; @@ -192,6 +279,10 @@...
2001 Oct 11
0
[patch] option to prevent connection timeout
...e; + goto parse_int; + case oNumberOfPasswordPrompts: intptr = &options->number_of_password_prompts; goto parse_int; @@ -767,6 +772,7 @@ options->strict_host_key_checking = -1; options->compression = -1; options->keepalives = -1; + options->idle = -1; options->compression_level = -1; options->port = -1; options->connection_attempts = -1; @@ -859,6 +865,8 @@ options->compression = 0; if (options->keepalives == -1) options->keepalives = 1; + if (options->idle == -1) + options->idle = 0; if (options->compression_level == -1) options-...
2011 Feb 23
4
The L Word
...a search term). I encounter it in strange places, most recently in the "save" documentation. save(..., list = character(0L), > file = stop("'file' must be specified"), > ascii = FALSE, version = NULL, envir = parent.frame(), > compress = !ascii, compression_level, > eval.promises = TRUE, precheck = TRUE) > I remember that you can also find it when you step inside an apply function: > sapply(1:10, function(x)browser()) > Called from: FUN(1:10[[1L]], ...) > I apologize for being vague, it's just something that I would like to unders...
2001 Mar 14
1
[PATCH] Added Null packet keepalive option
...2001. see: ** ** http://aa.usno.navy.mil/AA/faq/docs/millennium.html ** -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -------------- next part -------------- --- readconf.h 2001/03/11 01:49:20 1.21 +++ readconf.h 2001/03/14 19:11:15 @@ -61,6 +61,10 @@ int compression_level; /* Compression level 1 (fast) to 9 * (best). */ int keepalives; /* Set SO_KEEPALIVE. */ + time_t noop_msg_frequency; /* Number of seconds between + * SSH_MSG_NONE packets to keep + * firewall connections from + * timing out */ LogLevel log_level; /* Level for loggin...
2001 Aug 24
2
[PATCH] SO_KEEPALIVE for port forwards
...e_flag; + case oNumberOfPasswordPrompts: intptr = &options->number_of_password_prompts; goto parse_int; @@ -738,6 +743,7 @@ options->strict_host_key_checking = -1; options->compression = -1; options->keepalives = -1; + options->keepalives_forward = -1; options->compression_level = -1; options->port = -1; options->connection_attempts = -1; @@ -825,6 +831,8 @@ options->compression = 0; if (options->keepalives == -1) options->keepalives = 1; + if (options->keepalives_forward == -1) + options->keepalives_forward = 0; if (options->compress...
2001 Sep 26
1
[PATCH] random SSH_MSG_IGNORE packets
...&options->number_of_password_prompts; goto parse_int; @@ -738,6 +776,8 @@ options->strict_host_key_checking = -1; options->compression = -1; options->keepalives = -1; + options->bogus_traffic_interval_max = -1; + options->bogus_traffic_interval_min = -1; options->compression_level = -1; options->port = -1; options->connection_attempts = -1; @@ -825,6 +865,10 @@ options->compression = 0; if (options->keepalives == -1) options->keepalives = 1; + if (options->bogus_traffic_interval_max == -1) + options->bogus_traffic_interval_max = 0; + if (opt...
2000 Mar 03
7
[PATCH] Add a Maximum Idle Time (1.2.2)
...oto parse_int; + case oNumberOfPasswordPrompts: intptr = &options->number_of_password_prompts; goto parse_int; @@ -610,6 +616,7 @@ options->strict_host_key_checking = -1; options->compression = -1; options->keepalives = -1; + options->trans_inter = -1; options->compression_level = -1; options->port = -1; options->connection_attempts = -1; @@ -677,6 +684,8 @@ options->compression = 0; if (options->keepalives == -1) options->keepalives = 1; + if (options->trans_inter == -1) + options->trans_inter = 0; if (options->compression_level == -...
2013 May 02
1
R CMD building SPEEDY
Hello every one: I get following warning when building my R package with R-3.0.0. building 'SPEEDY.tar.gz' Warning in utils::tar(filepath, pkgname, compression = "gzip", compression_level = 9L, : number of items to replace is not a multiple of replacement length thanks Michael I have no idea for this, can you help me. Best regard ---------------------------------------------------------------------------- -------------------- $BG$!!0&DA(B/ Ren Aizhen ren@bi.cs.titech.ac...
2001 Oct 24
2
disable features
...auth_sock_cleanup_proc(authctxt->pw); +#endif #ifdef KRB4 if (options.kerberos_ticket_cleanup) krb4_cleanup_proc(authctxt); @@ -181,9 +185,15 @@ { Session *s; char *command; - int success, type, plen, screen_flag; + int success, type, plen; + u_int dlen; +#ifdef WITH_COMPRESSION int compression_level = 0, enable_compression_after_reply = 0; - u_int proto_len, data_len, dlen; +#endif +#ifdef WITH_X11FWD + u_int proto_len, data_len; + int screen_flag; +#endif s = session_new(); s->authctxt = authctxt; @@ -202,6 +212,7 @@ /* Process the packet. */ switch (type) { case SSH_CMSG_RE...
2003 Apr 04
5
Anti-idle in OpenSSH client?
Heya, Most of the windows ssh clients (putty, securecrt) have anti-idle features. They offer either a null packet or protocol no-op or user defined string to be sent over every x seconds. Is this possible or planned with the OpenSSH client? Our draconian firewall admins have started timing out ssh sessions. Yes I'm aware I could hack up a port forwarding dumb traffic process, but was
2016 Aug 02
2
fallen too far behind, removing
...tes 3 streams instead of 1 here) #!/bin/sh -e su vlc -c "FFREPORT=file=/home/vlc/`date +%Y-%m-%d-%H-%M-%S`-mp3.log screen -A -m -d -S ffMP3 /home/vlc/ffmpeg/latest/ffmpeg -f s16le -ar 44100 -ac 2 -timeout 2000000 -i http://localhost:8500/source -reconnect_at_eof -reconnect_streamed -b:a 192k -compression_level 0 -ac 2 -ar 44100 -af "volume=3dB" -f mp3 -ice_name 'LiveFM @ 192' icecast://source:pass at localhost :8500/LiveFM_320" icecast.xml <icecast> <limits> <clients>1000</clients> <sources>3</sources> <threadpool...
2014 Jan 06
2
Exact FLAC subset constraints
...> satisfies all restrictions from first question) to be subset? >> >> Is variable block size stream (if blocksize satisfies all restrictions >> from first question) be subset? >> >> The third question: >> >> Is FLAC files compressed by FFMPEG with "-compression_level 12" switch >> are subset?
2002 May 22
0
[PATCH] connect() timeout
...e, linenum); + if ((value = convtime(arg)) == -1) + fatal("%.200s line %d: Invalid time argument.", filename, linenum); + if (*intptr == -1) + *intptr = value; + break; + case oForwardAgent: intptr = &options->forward_agent; parse_flag: @@ -775,6 +790,7 @@ options->compression_level = -1; options->port = -1; options->connection_attempts = -1; + options->connection_timeout = -1; options->number_of_password_prompts = -1; options->cipher = -1; options->ciphers = NULL; --- openssh-3.2.2p1/readconf.h.ORIG Tue Mar 5 02:53:05 2002 +++ openssh-3.2.2p1/read...
2016 Aug 25
0
--skip-compress option not selectively skipping files
..." sent 156,439,778 bytes received 110 bytes 62,575,955.20 bytes/sec total size is 156,374,300 speedup is 1.00 Which I believe indicates that *no* files are compressed when the first file read has a suffix in the skip list. Looking at the set_compression function in token.c, I see that the compression_level variable is set to 0 when a file with a suffix in the skip list is encountered, but that variable appears to only be read once during the initial execution of send_deflated_token. Am I misunderstanding the intent of the --skip-compress option? Thank you for your consideration, Kit --------------...
2013 Apr 11
0
No subject
...hould stream MUST have constant (fixed) block size (if blocksize satisfies all restrictions from first question) to be subset? Is variable block size stream (if blocksize satisfies all restrictions from first question) be subset? The third question: Is FLAC files compressed by FFMPEG with "-compression_level 12" switch are subset?
2014 Jan 03
1
Exact FLAC subset constraints
I'm misleading about FLAC subset constraints... Please help me understand exact FLAC subset limitation.
2006 Feb 04
2
[PATCH] allow user to update changed key in known_hosts
...;options->compression; goto parse_flag; @@ -979,6 +985,7 @@ options->batch_mode = -1; options->check_host_ip = -1; options->strict_host_key_checking = -1; + options->offending_key_override = -1; options->compression = -1; options->tcp_keep_alive = -1; options->compression_level = -1; @@ -1073,6 +1080,8 @@ options->check_host_ip = 1; if (options->strict_host_key_checking == -1) options->strict_host_key_checking = 2; /* 2 is default */ + if (options->offending_key_override == -1) + options->offending_key_override = 0; if (options->compression =...
2002 Jan 26
5
[PATCH] Connect timeout
...96,11 @@ /* don't panic, but count bad options */ return -1; /* NOTREACHED */ + + case oConnectTimeout: + intptr = &options->connection_timeout; + goto parse_int; + case oForwardAgent: intptr = &options->forward_agent; parse_flag: @@ -775,6 +782,7 @@ options->compression_level = -1; options->port = -1; options->connection_attempts = -1; + options->connection_timeout = -1; options->number_of_password_prompts = -1; options->cipher = -1; options->ciphers = NULL; --- readconf.h.OK Wed Oct 3 19:39:39 2001 +++ readconf.h Sat Jan 26 21:44:35 2002 @@...