source:
vbox/trunk/src/libs/ffmpeg-20060710/libavcodec/lzo.h@
9441
Last change on this file since 9441 was 5776, checked in by , 17 years ago | |
---|---|
File size: 267 bytes |
Line | |
---|---|
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 |
Note:
See TracBrowser
for help on using the repository browser.