Struct AVBitStreamFilter
#[repr(C)]pub struct AVBitStreamFilter {
pub name: *const i8,
pub codec_ids: *const u32,
pub priv_class: *const AVClass,
}
Fields§
§name: *const i8
§codec_ids: *const u32
A list of codec ids supported by the filter, terminated by AV_CODEC_ID_NONE. May be NULL, in that case the bitstream filter works with any codec id.
priv_class: *const AVClass
A class for the private data, used to declare bitstream filter private AVOptions. This field is NULL for bitstream filters that do not declare any options.
If this field is non-NULL, the first member of the filter private data must be a pointer to AVClass, which will be set by libavcodec generic code to this class.
Trait Implementations§
§impl Clone for AVBitStreamFilter
impl Clone for AVBitStreamFilter
§fn clone(&self) -> AVBitStreamFilter
fn clone(&self) -> AVBitStreamFilter
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 more§impl Debug for AVBitStreamFilter
impl Debug for AVBitStreamFilter
impl Copy for AVBitStreamFilter
Auto Trait Implementations§
impl Freeze for AVBitStreamFilter
impl RefUnwindSafe for AVBitStreamFilter
impl !Send for AVBitStreamFilter
impl !Sync for AVBitStreamFilter
impl Unpin for AVBitStreamFilter
impl UnwindSafe for AVBitStreamFilter
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