[][src]Struct winapi::um::d3d11::ID3D11VideoDevice

#[repr(C)]
pub struct ID3D11VideoDevice { pub lpVtbl: *const ID3D11VideoDeviceVtbl, }

Fields

lpVtbl: *const ID3D11VideoDeviceVtbl

Methods

impl ID3D11VideoDevice[src]

pub unsafe fn CreateVideoDecoder(
    &self,
    pVideoDesc: *const D3D11_VIDEO_DECODER_DESC,
    pConfig: *const D3D11_VIDEO_DECODER_CONFIG,
    ppDecoder: *mut *mut ID3D11VideoDecoder
) -> HRESULT
[src]

pub unsafe fn CreateVideoProcessor(
    &self,
    pEnum: *mut ID3D11VideoProcessorEnumerator,
    RateConversionIndex: UINT,
    ppVideoProcessor: *mut *mut ID3D11VideoProcessor
) -> HRESULT
[src]

pub unsafe fn CreateAuthenticatedChannel(
    &self,
    ChannelType: D3D11_AUTHENTICATED_CHANNEL_TYPE,
    ppAuthenticatedChannel: *mut *mut ID3D11AuthenticatedChannel
) -> HRESULT
[src]

pub unsafe fn CreateCryptoSession(
    &self,
    pCryptoType: *const GUID,
    pDecoderProfile: *const GUID,
    pKeyExchangeType: *const GUID,
    ppCryptoSession: *mut *mut ID3D11CryptoSession
) -> HRESULT
[src]

pub unsafe fn CreateVideoDecoderOutputView(
    &self,
    pResource: *mut ID3D11Resource,
    pDesc: *const D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC,
    ppVDOVView: *mut *mut ID3D11VideoDecoderOutputView
) -> HRESULT
[src]

pub unsafe fn CreateVideoProcessorInputView(
    &self,
    pResource: *mut ID3D11Resource,
    pEnum: *mut ID3D11VideoProcessorEnumerator,
    pDesc: *const D3D11_VIDEO_PROCESSOR_INPUT_VIEW_DESC,
    ppVPIView: *mut *mut ID3D11VideoProcessorInputView
) -> HRESULT
[src]

pub unsafe fn CreateVideoProcessorOutputView(
    &self,
    pResource: *mut ID3D11Resource,
    pEnum: *mut ID3D11VideoProcessorEnumerator,
    pDesc: *const D3D11_VIDEO_PROCESSOR_OUTPUT_VIEW_DESC,
    ppVPOView: *mut *mut ID3D11VideoProcessorOutputView
) -> HRESULT
[src]

pub unsafe fn CreateVideoProcessorEnumerator(
    &self,
    pDesc: *const D3D11_VIDEO_PROCESSOR_CONTENT_DESC,
    ppEnum: *mut *mut ID3D11VideoProcessorEnumerator
) -> HRESULT
[src]

pub unsafe fn GetVideoDecoderProfileCount(&self) -> UINT[src]

pub unsafe fn GetVideoDecoderProfile(
    &self,
    Index: UINT,
    pDecoderProfile: *mut GUID
) -> HRESULT
[src]

pub unsafe fn CheckVideoDecoderFormat(
    &self,
    pDecoderProfile: *const GUID,
    Format: DXGI_FORMAT,
    pSupported: *mut BOOL
) -> HRESULT
[src]

pub unsafe fn GetVideoDecoderConfigCount(
    &self,
    pDesc: *const D3D11_VIDEO_DECODER_DESC,
    pCount: *mut UINT
) -> HRESULT
[src]

pub unsafe fn GetVideoDecoderConfig(
    &self,
    pDesc: *const D3D11_VIDEO_DECODER_DESC,
    Index: UINT,
    pConfig: *mut D3D11_VIDEO_DECODER_CONFIG
) -> HRESULT
[src]

pub unsafe fn GetContentProtectionCaps(
    &self,
    pCryptoType: *const GUID,
    pDecoderProfile: *const GUID,
    pCaps: *mut D3D11_VIDEO_CONTENT_PROTECTION_CAPS
) -> HRESULT
[src]

pub unsafe fn CheckCryptoKeyExchange(
    &self,
    pCryptoType: *const GUID,
    pDecoderProfile: *const GUID,
    Index: UINT,
    pKeyExchangeType: *mut GUID
) -> HRESULT
[src]

pub unsafe fn SetPrivateData(
    &self,
    guid: REFGUID,
    DataSize: UINT,
    pData: *const c_void
) -> HRESULT
[src]

pub unsafe fn SetPrivateDataInterface(
    &self,
    guid: REFGUID,
    pData: *const IUnknown
) -> HRESULT
[src]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Interface for ID3D11VideoDevice[src]

impl Deref for ID3D11VideoDevice[src]

type Target = IUnknown

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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