av_lzo1x_decode

@brief Decodes LZO 1x compressed data. @param out output buffer @param outlen size of output buffer, number of bytes left are returned here @param in input buffer @param inlen size of input buffer, number of bytes left are returned here @return 0 on success, otherwise a combination of the error flags above

Make sure all buffers are appropriately padded, in must provide AV_LZO_INPUT_PADDING, out must provide AV_LZO_OUTPUT_PADDING additional bytes.

extern (C) @nogc nothrow
int
av_lzo1x_decode
(
void* out_
,
int* outlen
,
const(void)* in_
,
int* inlen
)

Meta