[][src]Struct ffmpeg_dev::sys::AVStreamInternal

#[repr(C)]
pub struct AVStreamInternal {
    pub reorder: c_int,
    pub bsfcs: *mut *mut AVBSFContext,
    pub nb_bsfcs: c_int,
    pub bitstream_checked: c_int,
    pub avctx: *mut AVCodecContext,
    pub avctx_inited: c_int,
    pub orig_codec_id: AVCodecID,
    pub extract_extradata: AVStreamInternal__bindgen_ty_1,
    pub need_context_update: c_int,
    pub priv_pts: *mut FFFrac,
}

Fields

reorder: c_int

Set to 1 if the codec allows reordering, so pts can be different from dts.

bsfcs: *mut *mut AVBSFContext

bitstream filters to run on stream

  • encoding: Set by muxer using ff_stream_add_bitstream_filter
  • decoding: unused
nb_bsfcs: c_intbitstream_checked: c_int

Whether or not check_bitstream should still be run on each packet

avctx: *mut AVCodecContext

The codec context used by avformat_find_stream_info, the parser, etc.

avctx_inited: c_int

1 if avctx has been initialized with the values from the codec parameters

orig_codec_id: AVCodecIDextract_extradata: AVStreamInternal__bindgen_ty_1need_context_update: c_int

Whether the internal avctx needs to be updated from codecpar (after a late change to codecpar)

priv_pts: *mut FFFrac

Trait Implementations

impl Clone for AVStreamInternal[src]

impl Copy for AVStreamInternal[src]

impl Debug for AVStreamInternal[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]