[−][src]Struct ffmpeg_next::filter::context::Context
Implementations
impl<'a> Context<'a>[src]
pub unsafe fn wrap(ptr: *mut AVFilterContext) -> Self[src]
pub unsafe fn as_ptr(&self) -> *const AVFilterContext[src]
pub unsafe fn as_mut_ptr(&mut self) -> *mut AVFilterContext[src]
impl<'a> Context<'a>[src]
pub fn source(&'a mut self) -> Source<'a>[src]
pub fn sink(&'a mut self) -> Sink<'a>[src]
pub fn set_pixel_format(&mut self, value: Pixel)[src]
pub fn set_sample_format(&mut self, value: Sample)[src]
pub fn set_sample_rate(&mut self, value: u32)[src]
pub fn set_channel_layout(&mut self, value: ChannelLayout)[src]
Trait Implementations
impl<'a> Settable for Context<'a>[src]
fn set<T: 'static>(&mut self, name: &str, value: &T) -> Result<(), Error>[src]
fn set_str(&mut self, name: &str, value: &str) -> Result<(), Error>[src]
fn set_int(&mut self, name: &str, value: i64) -> Result<(), Error>[src]
fn set_double(&mut self, name: &str, value: f64) -> Result<(), Error>[src]
fn set_rational<T: Into<Rational>>(
&mut self,
name: &str,
value: T
) -> Result<(), Error>[src]
&mut self,
name: &str,
value: T
) -> Result<(), Error>
fn set_image_size(&mut self, name: &str, w: u32, h: u32) -> Result<(), Error>[src]
fn set_pixel_format(&mut self, name: &str, format: Pixel) -> Result<(), Error>[src]
fn set_sample_format(&mut self, name: &str, format: Sample) -> Result<(), Error>[src]
fn set_channel_layout(
&mut self,
name: &str,
layout: ChannelLayout
) -> Result<(), Error>[src]
&mut self,
name: &str,
layout: ChannelLayout
) -> Result<(), Error>
impl<'a> Target for Context<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for Context<'a>
impl<'a> !Send for Context<'a>
impl<'a> !Sync for Context<'a>
impl<'a> Unpin for Context<'a>
impl<'a> UnwindSafe for Context<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,