[][src]Function flac_sys::FLAC__stream_encoder_set_streamable_subset

pub unsafe extern "C" fn FLAC__stream_encoder_set_streamable_subset(
    encoder: *mut FLAC__StreamEncoder,
    value: FLAC__bool
) -> FLAC__bool

Set the Subset flag. If \c true, the encoder will comply with the Subset and will check the settings during FLAC__stream_encoder_init_*() to see if all settings comply. If \c false, the settings may take advantage of the full range that the format allows.

Make sure you know what it entails before setting this to \c false.

\default \c true \param encoder An encoder instance to set. \param value Flag value (see above). \assert \code encoder != NULL \endcode \retval FLAC__bool \c false if the encoder is already initialized, else \c true.