123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifndef AVUTIL_LZO_H
- #define AVUTIL_LZO_H
- #include <stdint.h>
- #define AV_LZO_INPUT_DEPLETED 1
- #define AV_LZO_OUTPUT_FULL 2
- #define AV_LZO_INVALID_BACKPTR 4
- #define AV_LZO_ERROR 8
- #define AV_LZO_INPUT_PADDING 8
- #define AV_LZO_OUTPUT_PADDING 12
- int av_lzo1x_decode(void *out, int *outlen, const void *in, int *inlen);
- #endif
|