diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-01-12 17:52:41 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-01-12 17:52:41 +0000 |
commit | 517840c65434b42fb8784ad1ce4a0301d5d6c36d (patch) | |
tree | 0665e82179aad38062265448e0b811e48c036002 /libavcodec/lzo.h | |
parent | 1015631b79b7bc40dcae6f8f8d7c5787319dc540 (diff) | |
download | ffmpeg-517840c65434b42fb8784ad1ce4a0301d5d6c36d.tar.gz |
Our own LZO (1X) implementation, under LGPL and optimized for readability.
Tested on CamStudio sample files.
Originally committed as revision 4840 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lzo.h')
-rw-r--r-- | libavcodec/lzo.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libavcodec/lzo.h b/libavcodec/lzo.h new file mode 100644 index 0000000000..3c1388e191 --- /dev/null +++ b/libavcodec/lzo.h @@ -0,0 +1,11 @@ +#ifndef _LZO_H +#define LZO_H + +#define LZO_INPUT_DEPLETED 1 +#define LZO_OUTPUT_FULL 2 +#define LZO_INVALID_BACKPTR 4 +#define LZO_ERROR 8 + +int lzo1x_decode(void *out, int *outlen, void *in, int *inlen); + +#endif |