pub struct FormatOptions {
    pub prebuild_seek_index: bool,
    pub seek_index_fill_rate: u16,
    pub enable_gapless: bool,
}
Expand description

FormatOptions is a common set of options that all demuxers use.

Fields

prebuild_seek_index: bool

If a FormatReader requires a seek index, but the container does not provide one, build the seek index during instantiation instead of building it progressively. Default: false.

seek_index_fill_rate: u16

If a seek index needs to be built, this value determines how often in seconds of decoded content an entry is added to the index. Default: 20.

Note: This is a CPU vs. memory trade-off. A high value will increase the amount of IO required during a seek, whereas a low value will require more memory. The default chosen is a good compromise for casual playback of music, podcasts, movies, etc. However, for highly-interactive applications, this value should be decreased.

enable_gapless: bool

Enable support for gapless playback. Default: false.

When enabled, the reader will provide trim information in packets that may be used by decoders to trim any encoder delay or padding.

When enabled, this option will also alter the value and interpretation of timestamps and durations such that they are relative to the non-trimmed region.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.