Function av_lzo1x_decode
pub unsafe extern "C" fn av_lzo1x_decode(
out: *mut c_void,
outlen: *mut i32,
in_: *const c_void,
inlen: *mut i32,
) -> i32
Expand description
@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.