]> git.sesse.net Git - ffmpeg/blob - libavcodec/lzo.h
Separate header file installation from the general install target.
[ffmpeg] / libavcodec / lzo.h
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 #define LZO_INPUT_PADDING 4
10 #define LZO_OUTPUT_PADDING 12
11
12 int lzo1x_decode(void *out, int *outlen, void *in, int *inlen);
13
14 #endif