Skip to main content

Loader

Struct Loader 

Source
pub struct Loader { /* private fields */ }
Expand description

A loaded oneVPL implementation library plus its resolved Stage 1 entry points.

Owns the libloading::Library (kept mapped for as long as any Session built from it is alive — every fn pointer field is only ever called through &self/&Session methods, never after both are dropped).

Implementations§

Source§

impl Loader

Source

pub fn open() -> Result<Self, VplError>

Open the first working implementation library: ONEVPL_SEARCH_PATH (if set, a single directory) is tried first for each candidate name, then each candidate’s bare name (OS default search order). Returns VplError::NotFound if nothing loads, or VplError::MissingSymbol if a candidate loads but is missing one of this crate’s required entry points (wrong/incompatible DLL).

§Errors

See variants above.

Source

pub fn create_session(self, impl_hint: mfxIMPL) -> Result<Session, VplError>

MFXInitEx — create a session against impl_hint (typically crate::consts::MFX_IMPL_HARDWARE). Consumes self: a Session owns its Loader for the rest of its lifetime (every later call resolves through the same loaded library).

§Errors

VplError::Status when MFXInitEx returns a negative mfxStatus.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.