OS4 DepotLogo by Nickman 
(anonymous IP: 18.221.53.209,2193) 
 HomeRecentStatsSearchSubmitUploadsMirrorsContactInfoDisclaimerConfigAdmin
 Menu

 Features
   Crashlogs
   Bug tracker
   Locale browser
 

 Categories

   o Audio (343)
   o Datatype (51)
   o Demo (203)
   o Development (596)
   o Document (22)
   o Driver (97)
   o Emulation (147)
   o Game (1004)
   o Graphics (497)
   o Library (115)
   o Network (232)
   o Office (66)
   o Utility (923)
   o Video (69)

Total files: 4365

Full index file
Recent index file

 Links

  Amigans.net
  OpenAmiga
  Aminet
  IntuitionBase


Support the site


 Readme for:  Development » Library » Misc » liblzo.lha

Liblzo

Description: a realtime data compression library.
Download: liblzo.lha       (TIPS: Use the right click menu if your browser takes you back here all the time)
Size: 492kb
Version: 2.08
Date: 03 Oct 2014
Author: Markus F.X.J. Oberhumer
Submitter: Fredrik Wikström
Email: fredrik/a500 org
Homepage: http://www.oberhumer.com/opensource/lzo/
Category: development/library/misc
Replaces: development/library/misc/liblzo.lha
License: GPL
Distribute: yes
Min OS Version: 4.0
FileID: 8985
 
Comments: 0
Snapshots: 0
Videos: 0
Downloads: 163  (Current version)
253  (Accumulated)
Votes: 0 (0/0)  (30 days/7 days)

Show comments Show snapshots Show videos Show content Show crashlogs Replace file 
Installation:

Copy SDK/#? ALL SDK:
MakeLink SOFT SDK:local/newlib/lib/liblzo2.so liblzo2.so.2

 ============================================================================
 LZO -- a real-time data compression library
 ============================================================================

 Author  : Markus Franz Xaver Johannes Oberhumer
           <markus()oberhumer.com>
           http://www.oberhumer.com/opensource/lzo/
 Version : 2.08
 Date    : 29 Jun 2014


 Abstract
 --------
 LZO is a portable lossless data compression library written in ANSI C.
 It offers pretty fast compression and very fast decompression.
 Decompression requires no memory.

 In addition there are slower compression levels achieving a quite
 competitive compression ratio while still decompressing at
 this very high speed.

 The LZO algorithms and implementations are copyrighted OpenSource
 distributed under the GNU General Public License.


 Introduction
 ------------
 LZO is a data compression library which is suitable for data
 de-/compression in real-time. This means it favours speed
 over compression ratio.

 The acronym LZO is standing for Lempel-Ziv-Oberhumer.

 LZO is written in ANSI C. Both the source code and the compressed
 data format are designed to be portable across platforms.

 LZO implements a number of algorithms with the following features:

 - Decompression is simple and *very* fast.
 - Requires no memory for decompression.
 - Compression is pretty fast.
 - Requires 64 KiB of memory for compression.
 - Allows you to dial up extra compression at a speed cost in the
   compressor. The speed of the decompressor is not reduced.
 - Includes compression levels for generating pre-compressed
   data which achieve a quite competitive compression ratio.
 - There is also a compression level which needs only 8 KiB for compression.
 - Algorithm is thread safe.
 - Algorithm is lossless.

 LZO supports overlapping compression and in-place decompression.



Copyright © 2004-2024 by Björn Hagström All Rights Reserved