pub unsafe extern "C" fn blosc_set_splitmode(splitmode: c_int)
Expand description

Set the split mode.

This function can take the next values: BLOSC_FORWARD_COMPAT_SPLIT BLOSC_AUTO_SPLIT BLOSC_NEVER_SPLIT BLOSC_ALWAYS_SPLIT

BLOSC_FORWARD_COMPAT offers reasonably forward compatibility, BLOSC_AUTO_SPLIT is for nearly optimal results (based on heuristics), BLOSC_NEVER_SPLIT and BLOSC_ALWAYS_SPLIT are for the user experimenting when trying to get best compression ratios and/or speed.

If not called, the default mode is BLOSC_FORWARD_COMPAT_SPLIT.

This function should always succeed.