search for: fastcompress

Displaying 5 results from an estimated 5 matches for "fastcompress".

2014 Mar 17
0
More than 150 MB / second encoding + "nanozip"
...? > > > >> As an aside: the author of LZ4 has also created Zhuff which is > >basically > >LZ4 with an entropy coder. Encoding > >> speeds are slightly slower but decompression is much faster. > >Compresses > >better as well. > >> See: http://fastcompression.blogspot.com/p/zhuff.html > >Very cool ! I tried it and I think it will probably fit my needs. > >I just need to find a Python-Zhuff binding :) > > > >Best regards > > > > > > > > > > > >2014-03-17 1:11 GMT+01:00 <neheb at hushmail.c...
2014 Mar 16
2
More than 150 MB / second encoding ?
Hello, Is there some version of FLAC that allows very very fast encoding (i.e. able to process at least 150 MB / second of .wav input data on a standard computer : laptop computer, Core i5/i7, Windows 7 64 bit, 8 GB RAM) ? (It's ok to have a compression ratio which is a little bit lower than traditionnal FLAC) I'm looking for something which is between FLAC (very good ratio, slower than
2013 Sep 23
28
[PATCH 0/2] add LZ4 kernel decompression support
Linux 3.11 added respective support, so I think we should follow suit. 1: xen: add LZ4 decompression support 2: libxc: add LZ4 decompression support Signed-off-by: Jan Beulich <jbeulich@suse.com>
2012 Jun 23
9
[PATCH 0/5] btrfs: lz4/lz4hc compression
WARNING: This is not compatible with the previous lz4 patchset. If you''re using experimental compression that isn''t in mainline kernels, be prepared to backup and restore or decompress before upgrading, and have backups in case it eats data (which appears not to be a problem any more, but has been during development). These patches add lz4 and lz4hc compression
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...D AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * You can contact the author at : + * - LZ4 homepage : http://fastcompression.blogspot.com/p/lz4.html + * - LZ4 source repository : http://code.google.com/p/lz4/ + */ + +#include "fsys_zfs.h" +#include <string.h> + +static int LZ4_uncompress_unknownOutputSize(const char *source, char *dest, + int isize, int maxOutputSize); + +int +lz4_decompress(vo...