Mercurial > libavcodec.hg
comparison lzo.h @ 3060:a2f611d6c34d libavcodec
faster copy functions for lzo decoder that also need padding
author | reimar |
---|---|
date | Sun, 22 Jan 2006 19:10:12 +0000 |
parents | d37065d8aeff |
children | c537a97eec66 |
comparison
equal
deleted
inserted
replaced
3059:61b4cc042988 | 3060:a2f611d6c34d |
---|---|
4 #define LZO_INPUT_DEPLETED 1 | 4 #define LZO_INPUT_DEPLETED 1 |
5 #define LZO_OUTPUT_FULL 2 | 5 #define LZO_OUTPUT_FULL 2 |
6 #define LZO_INVALID_BACKPTR 4 | 6 #define LZO_INVALID_BACKPTR 4 |
7 #define LZO_ERROR 8 | 7 #define LZO_ERROR 8 |
8 | 8 |
9 #define LZO_INPUT_PADDING 4 | |
10 #define LZO_OUTPUT_PADDING 12 | |
11 | |
9 int lzo1x_decode(void *out, int *outlen, void *in, int *inlen); | 12 int lzo1x_decode(void *out, int *outlen, void *in, int *inlen); |
10 | 13 |
11 #endif | 14 #endif |