pub enum VideoEncoderType {
X264,
Qsv,
VideoToolBox,
}
Expand description
Video encoder type.
Variants§
X264
x264 is a free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format, and is released under the terms of the GNU GPL.
Qsv
Intel Quick Sync Video is Intel’s brand for its dedicated video encoding and decoding hardware core.
VideoToolBox
VideoToolbox is a low-level framework that provides direct access to hardware encoders and decoders.
Trait Implementations§
Source§impl Clone for VideoEncoderType
impl Clone for VideoEncoderType
Source§fn clone(&self) -> VideoEncoderType
fn clone(&self) -> VideoEncoderType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VideoEncoderType
impl Debug for VideoEncoderType
Source§impl<'de> Deserialize<'de> for VideoEncoderType
impl<'de> Deserialize<'de> for VideoEncoderType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for VideoEncoderType
impl FromStr for VideoEncoderType
Source§impl PartialEq for VideoEncoderType
impl PartialEq for VideoEncoderType
Source§impl Serialize for VideoEncoderType
impl Serialize for VideoEncoderType
Source§impl ToString for VideoEncoderType
impl ToString for VideoEncoderType
impl Copy for VideoEncoderType
impl Eq for VideoEncoderType
impl StructuralPartialEq for VideoEncoderType
Auto Trait Implementations§
impl Freeze for VideoEncoderType
impl RefUnwindSafe for VideoEncoderType
impl Send for VideoEncoderType
impl Sync for VideoEncoderType
impl Unpin for VideoEncoderType
impl UnwindSafe for VideoEncoderType
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