#[repr(C)]pub struct AVBitStreamFilter {
pub name: *const c_char,
pub codec_ids: *const AVCodecID,
pub priv_class: *const AVClass,
}Fields§
§name: *const c_char§codec_ids: *const AVCodecIDA 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 AVClassA 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§
Source§impl Clone for AVBitStreamFilter
impl Clone for AVBitStreamFilter
Source§fn clone(&self) -> AVBitStreamFilter
fn clone(&self) -> AVBitStreamFilter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AVBitStreamFilter
Source§impl Debug for AVBitStreamFilter
impl Debug for AVBitStreamFilter
impl Eq for AVBitStreamFilter
Source§impl PartialEq for AVBitStreamFilter
impl PartialEq for AVBitStreamFilter
impl StructuralPartialEq for AVBitStreamFilter
Auto Trait Implementations§
impl !Send for AVBitStreamFilter
impl !Sync for AVBitStreamFilter
impl Freeze for AVBitStreamFilter
impl RefUnwindSafe for AVBitStreamFilter
impl Unpin for AVBitStreamFilter
impl UnsafeUnpin 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