Enum ffmpeg_sys_next::AVSubtitleType
source · #[repr(u32)]
pub enum AVSubtitleType {
SUBTITLE_NONE,
SUBTITLE_BITMAP,
SUBTITLE_TEXT,
SUBTITLE_ASS,
}Variants§
SUBTITLE_NONE
SUBTITLE_BITMAP
< A bitmap, pict will be set
SUBTITLE_TEXT
Plain text, the text field must be set by the decoder and is authoritative. ass and pict fields may contain approximations.
SUBTITLE_ASS
Formatted text, the ass field must be set by the decoder and is authoritative. pict and text fields may contain approximations.
Trait Implementations§
source§impl Clone for AVSubtitleType
impl Clone for AVSubtitleType
source§fn clone(&self) -> AVSubtitleType
fn clone(&self) -> AVSubtitleType
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 AVSubtitleType
impl Debug for AVSubtitleType
source§impl Hash for AVSubtitleType
impl Hash for AVSubtitleType
source§impl PartialEq<AVSubtitleType> for AVSubtitleType
impl PartialEq<AVSubtitleType> for AVSubtitleType
source§fn eq(&self, other: &AVSubtitleType) -> bool
fn eq(&self, other: &AVSubtitleType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.