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