[−][src]Struct ffmpeg_dev::sys::AVHWDeviceContext
This struct aggregates all the (hardware/vendor-specific) "high-level" state, i.e. state that is not tied to a concrete processing configuration. E.g., in an API that supports hardware-accelerated encoding and decoding, this struct will (if possible) wrap the state that is common to both encoding and decoding and from which specific instances of encoders or decoders can be derived.
This struct is reference-counted with the AVBuffer mechanism. The av_hwdevice_ctx_alloc() constructor yields a reference, whose data field points to the actual AVHWDeviceContext. Further objects derived from AVHWDeviceContext (such as AVHWFramesContext, describing a frame pool with specific properties) will hold an internal reference to it. After all the references are released, the AVHWDeviceContext itself will be freed, optionally invoking a user-specified callback for uninitializing the hardware state.
Fields
av_class: *const AVClass
A class for logging. Set by av_hwdevice_ctx_alloc().
internal: *mut AVHWDeviceInternal
Private data used internally by libavutil. Must not be accessed in any way by the caller.
type_: AVHWDeviceType
This field identifies the underlying API used for hardware access.
This field is set when this struct is allocated and never changed afterwards.
hwctx: *mut c_void
The format-specific data, allocated and freed by libavutil along with this context.
Should be cast by the user to the format-specific context defined in the corresponding header (hwcontext_*.h) and filled as described in the documentation before calling av_hwdevice_ctx_init().
After calling av_hwdevice_ctx_init() this struct should not be modified by the caller.
free: Option<unsafe extern "C" fn(ctx: *mut AVHWDeviceContext)>
This field may be set by the caller before calling av_hwdevice_ctx_init().
If non-NULL, this callback will be called when the last reference to this context is unreferenced, immediately before it is freed.
@note when other objects (e.g an AVHWFramesContext) are derived from this struct, this callback will be invoked after all such child objects are fully uninitialized and their respective destructors invoked.
user_opaque: *mut c_void
Arbitrary user data, to be used e.g. by the free() callback.
Trait Implementations
impl Clone for AVHWDeviceContext
[src]
fn clone(&self) -> AVHWDeviceContext
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for AVHWDeviceContext
[src]
impl Debug for AVHWDeviceContext
[src]
Auto Trait Implementations
impl !Send for AVHWDeviceContext
impl !Sync for AVHWDeviceContext
impl Unpin for AVHWDeviceContext
impl UnwindSafe for AVHWDeviceContext
impl RefUnwindSafe for AVHWDeviceContext
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,