Struct lewton::header::IdentHeader
source · pub struct IdentHeader {
pub audio_channels: u8,
pub audio_sample_rate: u32,
pub bitrate_maximum: i32,
pub bitrate_nominal: i32,
pub bitrate_minimum: i32,
pub blocksize_0: u8,
pub blocksize_1: u8,
/* private fields */
}
Expand description
Representation for the identification header
The identification header is the first of the three headers inside each vorbis stream.
It covers basic information about the stream.
Fields§
§audio_channels: u8
The number of audio channels in the stream
audio_sample_rate: u32
The sample rate of the stream
bitrate_maximum: i32
The maximum bit rate of the stream
Note that this value is only a hint and may be off by a large amount.
bitrate_nominal: i32
The nominal bit rate of the stream
Note that this value is only a hint and may be off by a large amount.
bitrate_minimum: i32
The minimum bit rate of the stream
Note that this value is only a hint and may be off by a large amount.
blocksize_0: u8
§blocksize_1: u8
Auto Trait Implementations§
impl RefUnwindSafe for IdentHeader
impl Send for IdentHeader
impl Sync for IdentHeader
impl Unpin for IdentHeader
impl UnwindSafe for IdentHeader
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more