From 517840c65434b42fb8784ad1ce4a0301d5d6c36d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Thu, 12 Jan 2006 17:52:41 +0000 Subject: 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 --- libavcodec/lzo.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 libavcodec/lzo.h (limited to 'libavcodec/lzo.h') diff --git a/libavcodec/lzo.h b/libavcodec/lzo.h new file mode 100644 index 0000000..3c1388e --- /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 -- cgit v1.1