comparison lzo.h @ 3034:d37065d8aeff libavcodec

Our own LZO (1X) implementation, under LGPL and optimized for readability. Tested on CamStudio sample files.
author reimar
date Thu, 12 Jan 2006 17:52:41 +0000
parents
children a2f611d6c34d
comparison
equal deleted inserted replaced
3033:e8599ab02b38 3034:d37065d8aeff
1 #ifndef _LZO_H
2 #define LZO_H
3
4 #define LZO_INPUT_DEPLETED 1
5 #define LZO_OUTPUT_FULL 2
6 #define LZO_INVALID_BACKPTR 4
7 #define LZO_ERROR 8
8
9 int lzo1x_decode(void *out, int *outlen, void *in, int *inlen);
10
11 #endif