[][src]Struct windows_media_transcoding_bindings::windows::media::transcoding::IMediaTranscoder

#[repr(transparent)]pub struct IMediaTranscoder { /* fields omitted */ }

Implementations

impl IMediaTranscoder[src]

pub fn set_trim_start_time<'a, T0__: Into<Param<'a, TimeSpan>>>(
    &self,
    value: T0__
) -> Result<()>
[src]

pub fn trim_start_time(&self) -> Result<TimeSpan>[src]

pub fn set_trim_stop_time<'a, T0__: Into<Param<'a, TimeSpan>>>(
    &self,
    value: T0__
) -> Result<()>
[src]

pub fn trim_stop_time(&self) -> Result<TimeSpan>[src]

pub fn set_always_reencode(&self, value: bool) -> Result<()>[src]

pub fn always_reencode(&self) -> Result<bool>[src]

pub fn set_hardware_acceleration_enabled(&self, value: bool) -> Result<()>[src]

pub fn hardware_acceleration_enabled(&self) -> Result<bool>[src]

pub fn add_audio_effect<'a, T0__: Into<Param<'a, HString>>>(
    &self,
    activatable_class_id: T0__
) -> Result<()>
[src]

pub fn add_audio_effect_with_settings<'a, T0__: Into<Param<'a, HString>>, T2__: Into<Param<'a, IPropertySet>>>(
    &self,
    activatable_class_id: T0__,
    effect_required: bool,
    configuration: T2__
) -> Result<()>
[src]

pub fn add_video_effect<'a, T0__: Into<Param<'a, HString>>>(
    &self,
    activatable_class_id: T0__
) -> Result<()>
[src]

pub fn add_video_effect_with_settings<'a, T0__: Into<Param<'a, HString>>, T2__: Into<Param<'a, IPropertySet>>>(
    &self,
    activatable_class_id: T0__,
    effect_required: bool,
    configuration: T2__
) -> Result<()>
[src]

pub fn clear_effects(&self) -> Result<()>[src]

pub fn prepare_file_transcode_async<'a, T0__: Into<Param<'a, IStorageFile>>, T1__: Into<Param<'a, IStorageFile>>, T2__: Into<Param<'a, MediaEncodingProfile>>>(
    &self,
    source: T0__,
    destination: T1__,
    profile: T2__
) -> Result<IAsyncOperation<PrepareTranscodeResult>>
[src]

pub fn prepare_stream_transcode_async<'a, T0__: Into<Param<'a, IRandomAccessStream>>, T1__: Into<Param<'a, IRandomAccessStream>>, T2__: Into<Param<'a, MediaEncodingProfile>>>(
    &self,
    source: T0__,
    destination: T1__,
    profile: T2__
) -> Result<IAsyncOperation<PrepareTranscodeResult>>
[src]

Trait Implementations

impl AbiTransferable for IMediaTranscoder[src]

type Abi = RawComPtr<Self>

impl Clone for IMediaTranscoder[src]

impl ComInterface for IMediaTranscoder[src]

type VTable = abi_IMediaTranscoder

impl Debug for IMediaTranscoder[src]

impl Default for IMediaTranscoder[src]

impl<'_> From<&'_ IMediaTranscoder> for Object[src]

impl<'_> From<&'_ MediaTranscoder> for IMediaTranscoder[src]

impl From<IMediaTranscoder> for Object[src]

impl From<MediaTranscoder> for IMediaTranscoder[src]

impl PartialEq<IMediaTranscoder> for IMediaTranscoder[src]

impl RuntimeType for IMediaTranscoder[src]

Auto Trait Implementations

impl RefUnwindSafe for IMediaTranscoder

impl !Send for IMediaTranscoder

impl !Sync for IMediaTranscoder

impl Unpin for IMediaTranscoder

impl UnwindSafe for IMediaTranscoder

Blanket Implementations

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

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

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

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 = Infallible

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.