D3D11_1DDI_VIDEODEVICEFUNCS 结构 (d3d10umddi.h)

D3D11_1DDI_VIDEODEVICEFUNCS 结构指定 Direct3D 驱动程序设备对象的视频函数表。 此结构用于 Direct3D 11.1 驱动程序。

驱动程序必须支持用户模式 DDI 的 D3D 11.1 版本。 如果支持 DDI,运行时将调用 PFND3D10DDI_RETRIEVESUBOBJECT 以检索 D3D11_1DDI_VIDEODEVICEFUNCS 视频设备函数。

语法

typedef struct D3D11_1DDI_VIDEODEVICEFUNCS {
  PFND3D11_1DDI_GETVIDEODECODERPROFILECOUNT                 pfnGetVideoDecoderProfileCount;
  PFND3D11_1DDI_GETVIDEODECODERPROFILE                      pfnGetVideoDecoderProfile;
  PFND3D11_1DDI_CHECKVIDEODECODERFORMAT                     pfnCheckVideoDecoderFormat;
  PFND3D11_1DDI_GETVIDEODECODERCONFIGCOUNT                  pfnGetVideoDecoderConfigCount;
  PFND3D11_1DDI_GETVIDEODECODERCONFIG                       pfnGetVideoDecoderConfig;
  PFND3D11_1DDI_GETVIDEODECODERBUFFERTYPECOUNT              pfnGetVideoDecoderBufferTypeCount;
  PFND3D11_1DDI_GETVIDEODECODERBUFFERINFO                   pfnGetVideoDecoderBufferInfo;
  PFND3D11_1DDI_CALCPRIVATEVIDEODECODERSIZE                 pfnCalcPrivateVideoDecoderSize;
  PFND3D11_1DDI_CREATEVIDEODECODER                          pfnCreateVideoDecoder;
  PFND3D11_1DDI_DESTROYVIDEODECODER                         pfnDestroyVideoDecoder;
  PFND3D11_1DDI_VIDEODECODEREXTENSION                       pfnVideoDecoderExtension;
  PFND3D11_1DDI_VIDEODECODERBEGINFRAME                      pfnVideoDecoderBeginFrame;
  PFND3D11_1DDI_VIDEODECODERENDFRAME                        pfnVideoDecoderEndFrame;
  PFND3D11_1DDI_VIDEODECODERSUBMITBUFFERS                   pfnVideoDecoderSubmitBuffers;
  PFND3D11_1DDI_CALCPRIVATEVIDEOPROCESSORENUMSIZE           pfnCalcPrivateVideoProcessorEnumSize;
  PFND3D11_1DDI_CREATEVIDEOPROCESSORENUM                    pfnCreateVideoProcessorEnum;
  PFND3D11_1DDI_DESTROYVIDEOPROCESSORENUM                   pfnDestroyVideoProcessorEnum;
  PFND3D11_1DDI_CHECKVIDEOPROCESSORFORMAT                   pfnCheckVideoProcessorFormat;
  PFND3D11_1DDI_GETVIDEOPROCESSORCAPS                       pfnGetVideoProcessorCaps;
  PFND3D11_1DDI_GETVIDEOPROCESSORRATECONVERSIONCAPS         pfnGetVideoProcessorRateConversionCaps;
  PFND3D11_1DDI_GETVIDEOPROCESSORCUSTOMRATE                 pfnGetVideoProcessorCustomRate;
  PFND3D11_1DDI_GETVIDEOPROCESSORFILTERRANGE                pfnGetVideoProcessorFilterRange;
  PFND3D11_1DDI_CALCPRIVATEVIDEOPROCESSORSIZE               pfnCalcPrivateVideoProcessorSize;
  PFND3D11_1DDI_CREATEVIDEOPROCESSOR                        pfnCreateVideoProcessor;
  PFND3D11_1DDI_DESTROYVIDEOPROCESSOR                       pfnDestroyVideoProcessor;
  PFND3D11_1DDI_VIDEOPROCESSORSETOUTPUTTARGETRECT           pfnVideoProcessorSetOutputTargetRect;
  PFND3D11_1DDI_VIDEOPROCESSORSETOUTPUTBACKGROUNDCOLOR      pfnVideoProcessorSetOutputBackgroundColor;
  PFND3D11_1DDI_VIDEOPROCESSORSETOUTPUTCOLORSPACE           pfnVideoProcessorSetOutputColorSpace;
  PFND3D11_1DDI_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE        pfnVideoProcessorSetOutputAlphaFillMode;
  PFND3D11_1DDI_VIDEOPROCESSORSETOUTPUTCONSTRICTION         pfnVideoProcessorSetOutputConstriction;
  PFND3D11_1DDI_VIDEOPROCESSORSETOUTPUTSTEREOMODE           pfnVideoProcessorSetOutputStereoMode;
  PFND3D11_1DDI_VIDEOPROCESSORSETOUTPUTEXTENSION            pfnVideoProcessorSetOutputExtension;
  PFND3D11_1DDI_VIDEOPROCESSORGETOUTPUTEXTENSION            pfnVideoProcessorGetOutputExtension;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMFRAMEFORMAT          pfnVideoProcessorSetStreamFrameFormat;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMCOLORSPACE           pfnVideoProcessorSetStreamColorSpace;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMOUTPUTRATE           pfnVideoProcessorSetStreamOutputRate;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMSOURCERECT           pfnVideoProcessorSetStreamSourceRect;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMDESTRECT             pfnVideoProcessorSetStreamDestRect;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMALPHA                pfnVideoProcessorSetStreamAlpha;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMPALETTE              pfnVideoProcessorSetStreamPalette;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO     pfnVideoProcessorSetStreamPixelAspectRatio;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMLUMAKEY              pfnVideoProcessorSetStreamLumaKey;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMSTEREOFORMAT         pfnVideoProcessorSetStreamStereoFormat;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMAUTOPROCESSINGMODE   pfnVideoProcessorSetStreamAutoProcessingMode;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMFILTER               pfnVideoProcessorSetStreamFilter;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMEXTENSION            pfnVideoProcessorSetStreamExtension;
  PFND3D11_1DDI_VIDEOPROCESSORGETSTREAMEXTENSION            pfnVideoProcessorGetStreamExtension;
  PFND3D11_1DDI_VIDEOPROCESSORBLT                           pfnVideoProcessorBlt;
  PFND3D11_1DDI_CALCPRIVATEVIDEODECODEROUTPUTVIEWSIZE       pfnCalcPrivateVideoDecoderOutputViewSize;
  PFND3D11_1DDI_CREATEVIDEODECODEROUTPUTVIEW                pfnCreateVideoDecoderOutputView;
  PFND3D11_1DDI_DESTROYVIDEODECODEROUTPUTVIEW               pfnDestroyVideoDecoderOutputView;
  PFND3D11_1DDI_CALCPRIVATEVIDEOPROCESSORINPUTVIEWSIZE      pfnCalcPrivateVideoProcessorInputViewSize;
  PFND3D11_1DDI_CREATEVIDEOPROCESSORINPUTVIEW               pfnCreateVideoProcessorInputView;
  PFND3D11_1DDI_DESTROYVIDEOPROCESSORINPUTVIEW              pfnDestroyVideoProcessorInputView;
  PFND3D11_1DDI_CALCPRIVATEVIDEOPROCESSOROUTPUTVIEWSIZE     pfnCalcPrivateVideoProcessorOutputViewSize;
  PFND3D11_1DDI_CREATEVIDEOPROCESSOROUTPUTVIEW              pfnCreateVideoProcessorOutputView;
  PFND3D11_1DDI_DESTROYVIDEOPROCESSOROUTPUTVIEW             pfnDestroyVideoProcessorOutputView;
  PFND3D11_1DDI_VIDEOPROCESSORINPUTVIEWREADAFTERWRITEHAZARD pfnVideoProcessorInputViewReadAfterWriteHazard;
  PFND3D11_1DDI_GETCONTENTPROTECTIONCAPS                    pfnGetContentProtectionCaps;
  PFND3D11_1DDI_GETCRYPTOKEYEXCHANGETYPE                    pfnGetCryptoKeyExchangeType;
  PFND3D11_1DDI_CALCPRIVATECRYPTOSESSIONSIZE                pfnCalcPrivateCryptoSessionSize;
  PFND3D11_1DDI_CREATECRYPTOSESSION                         pfnCreateCryptoSession;
  PFND3D11_1DDI_DESTROYCRYPTOSESSION                        pfnDestroyCryptoSession;
  PFND3D11_1DDI_GETCERTIFICATESIZE                          pfnGetCertificateSize;
  PFND3D11_1DDI_GETCERTIFICATE                              pfnGetCertificate;
  PFND3D11_1DDI_NEGOTIATECRYPTOSESSIONKEYESCHANGE           pfnNegotiateCryptoSessionKeyExchange;
  PFND3D11_1DDI_ENCRYPTIONBLT                               pfnEncryptionBlt;
  PFND3D11_1DDI_DECRYPTIONBLT                               pfnDecryptionBlt;
  PFND3D11_1DDI_STARTSESSIONKEYREFRESH                      pfnStartSessionKeyRefresh;
  PFND3D11_1DDI_FINISHSESSIONKEYREFRESH                     pfnFinishSessionKeyRefresh;
  PFND3D11_1DDI_GETENCRYPTIONBLTKEY                         pfnGetEncryptionBltKey;
  PFND3D11_1DDI_CALCPRIVATEAUTHENTICATEDCHANNELSIZE         pfnCalcPrivateAuthenticatedChannelSize;
  PFND3D11_1DDI_CREATEAUTHENTICATEDCHANNEL                  pfnCreateAuthenticatedChannel;
  PFND3D11_1DDI_DESTROYAUTHENTICATEDCHANNEL                 pfnDestroyAuthenticatedChannel;
  PFND3D11_1DDI_NEGOTIATEAUTHENTICATEDCHANNELKEYEXCHANGE    pfnNegotiateAuthenticatedChannelKeyExchange;
  PFND3D11_1DDI_QUERYAUTHENTICATEDCHANNEL                   pfnQueryAuthenticatedChannel;
  PFND3D11_1DDI_CONFIGUREAUTHENTICATEDCHANNEL               pfnConfigureAuthenticatedChannel;
  PFND3D11_1DDI_VIDEODECODERGETHANDLE                       pfnVideoDecoderGetHandle;
  PFND3D11_1DDI_CRYPTOSESSIONGETHANDLE                      pfnCryptoSessionGetHandle;
  PFND3D11_1DDI_VIDEOPROCESSORSETSTREAMROTATION             pfnVideoProcessorSetStreamRotation;
  PFND3D11_1DDI_GETCAPTUREHANDLE                            pfnGetCaptureHandle;
} D3D11_1DDI_VIDEODEVICEFUNCS;

成员

pfnGetVideoDecoderProfileCount

驱动程序的 GetVideoDecoderProfileCount 函数的入口点。

pfnGetVideoDecoderProfile

驱动程序的 GetVideoDecoderProfile 函数的入口点。

pfnCheckVideoDecoderFormat

驱动程序的 CheckVideoDecoderFormat 函数的入口点。

pfnGetVideoDecoderConfigCount

驱动程序的 GetVideoDecoderConfigCount 函数的入口点。

pfnGetVideoDecoderConfig

驱动程序的 GetVideoDecoderConfig 函数的入口点。

pfnGetVideoDecoderBufferTypeCount

驱动程序的 GetVideoDecoderBufferTypeCount 函数的入口点。

pfnGetVideoDecoderBufferInfo

驱动程序的 GetVideoDecoderBufferInfo 函数的入口点。

pfnCalcPrivateVideoDecoderSize

驱动程序的 CalcPrivateVideoDecoderSize 函数的入口点。

pfnCreateVideoDecoder

驱动程序的 CreateVideoDecoder 函数的入口点。

pfnDestroyVideoDecoder

驱动程序的 DestroyVideoDecoder 函数的入口点。

pfnVideoDecoderExtension

驱动程序的 VideoDecoderExtension 函数的入口点。

pfnVideoDecoderBeginFrame

驱动程序的 VideoDecoderBeginFrame 函数的入口点。

pfnVideoDecoderEndFrame

驱动程序的 VideoDecoderEndFrame 函数的入口点。

pfnVideoDecoderSubmitBuffers

驱动程序的 VideoDecoderSubmitBuffers 函数的入口点。

pfnCalcPrivateVideoProcessorEnumSize

驱动程序的 CalcPrivateVideoProcessorEnumSize 函数的入口点。

pfnCreateVideoProcessorEnum

驱动程序的 CreateVideoProcessorEnum 函数的入口点。

pfnDestroyVideoProcessorEnum

驱动程序的 DestroyVideoProcessorEnum 函数的入口点。

pfnCheckVideoProcessorFormat

驱动程序的 CheckVideoProcessorFormat 函数的入口点。

pfnGetVideoProcessorCaps

驱动程序的 GetVideoProcessorCaps 函数的入口点。

pfnGetVideoProcessorRateConversionCaps

驱动程序的 GetVideoProcessorRateConversionCaps 函数的入口点。

pfnGetVideoProcessorCustomRate

驱动程序的 GetVideoProcessorCustomRate 函数的 入口点。

pfnGetVideoProcessorFilterRange

驱动程序的 GetVideoProcessorFilterRange 函数的入口点。

pfnCalcPrivateVideoProcessorSize

驱动程序的 CalcPrivateVideoProcessorSize 函数的入口点。

pfnCreateVideoProcessor

驱动程序的 CreateVideoProcessor 函数的入口点。

pfnDestroyVideoProcessor

驱动程序的 DestroyVideoProcessor 函数的入口点。

pfnVideoProcessorSetOutputTargetRect

驱动程序的 VideoProcessorSetOutputTargetRect 函数的入口点。

pfnVideoProcessorSetOutputBackgroundColor

驱动程序的 VideoProcessorSetOutputBackgroundColor 函数的入口点。

pfnVideoProcessorSetOutputColorSpace

驱动程序的 VideoProcessorSetOutputColorSpace 函数的入口点。

pfnVideoProcessorSetOutputAlphaFillMode

驱动程序的 VideoProcessorSetOutputAlphaFillMode 函数的入口点。

pfnVideoProcessorSetOutputConstriction

驱动程序的 VideoProcessorSetOutputConstriction 函数的 入口点。

pfnVideoProcessorSetOutputStereoMode

驱动程序的 VideoProcessorSetOutputStereoMode 函数的入口点。

pfnVideoProcessorSetOutputExtension

驱动程序的 VideoProcessorSetOutputExtension 函数的入口点。

pfnVideoProcessorGetOutputExtension

驱动程序的 VideoProcessorGetOutputExtension 函数的入口点。

pfnVideoProcessorSetStreamFrameFormat

驱动程序的 VideoProcessorSetStreamFrameFormat 函数的入口点。

pfnVideoProcessorSetStreamColorSpace

驱动程序的 VideoProcessorSetStreamColorSpace 函数的入口点。

pfnVideoProcessorSetStreamOutputRate

驱动程序的 VideoProcessorSetStreamOutputRate 函数的入口点。

pfnVideoProcessorSetStreamSourceRect

驱动程序的 VideoProcessorSetStreamSourceRect 函数的入口点。

pfnVideoProcessorSetStreamDestRect

驱动程序的 VideoProcessorSetStreamDestRect 函数的入口点。

pfnVideoProcessorSetStreamAlpha

驱动程序的 VideoProcessorSetStreamAlpha 函数的入口点。

pfnVideoProcessorSetStreamPalette

驱动程序的 VideoProcessorSetStreamPalette 函数的入口点。

pfnVideoProcessorSetStreamPixelAspectRatio

驱动程序的 VideoProcessorSetStreamPixelAspectRatio 函数的入口点。

pfnVideoProcessorSetStreamLumaKey

驱动程序的 VideoProcessorSetStreamLumaKey 函数的入口点。

pfnVideoProcessorSetStreamStereoFormat

驱动程序的 VideoProcessorSetStreamStereoFormat 函数的入口点。

pfnVideoProcessorSetStreamAutoProcessingMode

驱动程序的 VideoProcessorSetStreamAutoProcessingMode 函数的入口点。

pfnVideoProcessorSetStreamFilter

驱动程序的 VideoProcessorSetStreamFilter 函数的入口点。

pfnVideoProcessorSetStreamExtension

驱动程序的 VideoProcessorSetStreamExtension 函数的入口点。

pfnVideoProcessorGetStreamExtension

驱动程序的 VideoProcessorGetStreamExtension 函数的入口点。

pfnVideoProcessorBlt

驱动程序的 VideoProcessorBlt 函数的入口点。

pfnCalcPrivateVideoDecoderOutputViewSize

驱动程序的 CalcPrivateVideoDecoderOutputViewSize 函数的入口点。

pfnCreateVideoDecoderOutputView

驱动程序的 CreateVideoDecoderOutputView 函数的入口点。

pfnDestroyVideoDecoderOutputView

驱动程序的 DestroyVideoDecoderOutputView 函数的入口点。

pfnCalcPrivateVideoProcessorInputViewSize

驱动程序的 CalcPrivateVideoProcessorInputViewSize 函数的入口点。

pfnCreateVideoProcessorInputView

驱动程序的 CreateVideoProcessorInputView 函数的入口点。

pfnDestroyVideoProcessorInputView

驱动程序的 DestroyVideoProcessorInputView 函数的入口点。

pfnCalcPrivateVideoProcessorOutputViewSize

驱动程序的 CalcPrivateVideoProcessorOutputViewSize 函数的入口点。

pfnCreateVideoProcessorOutputView

驱动程序的 CreateVideoProcessorOutputView 函数的入口点。

pfnDestroyVideoProcessorOutputView

驱动程序的 DestroyVideoProcessorOutputView 函数的入口点。

pfnVideoProcessorInputViewReadAfterWriteHazard

驱动程序的 VideoProcessorInputViewReadAfterWriteHazard 函数的入口点。

pfnGetContentProtectionCaps

驱动程序的 GetContentProtectionCaps 函数的入口点。

pfnGetCryptoKeyExchangeType

驱动程序的 GetCryptoKeyExchangeType 函数的入口点。

pfnCalcPrivateCryptoSessionSize

驱动程序的 CalcPrivateCryptoSessionSize 函数的入口点。

pfnCreateCryptoSession

驱动程序的 CreateCryptoSession 函数的入口点。

pfnDestroyCryptoSession

驱动程序的 DestroyCryptoSession 函数的入口点。

pfnGetCertificateSize

驱动程序的 GetCertificateSize 函数的入口点。

pfnGetCertificate

驱动程序的 GetCertificate 函数的入口点。

pfnNegotiateCryptoSessionKeyExchange

驱动程序的 NegotiateCryptoSessionKeyExchange 函数的入口点。

pfnEncryptionBlt

驱动程序的 EncryptionBlt (D3D11_1) 函数的入口点。

pfnDecryptionBlt

驱动程序的 DecryptionBlt (D3D11_1) 函数的 入口点。

pfnStartSessionKeyRefresh

驱动程序的 StartSessionKeyRefresh 函数的入口点。

pfnFinishSessionKeyRefresh

驱动程序的 FinishSessionKeyRefresh 函数的入口点。

pfnGetEncryptionBltKey

驱动程序的 GetEncryptionBltKey 函数的入口点。

pfnCalcPrivateAuthenticatedChannelSize

驱动程序的 CalcPrivateAuthenticatedChannelSize 函数的入口点。

pfnCreateAuthenticatedChannel

驱动程序的 CreateAuthenticatedChannel (D3D11_1) 函数的 入口点。

pfnDestroyAuthenticatedChannel

驱动程序的 DestroyAuthenticatedChannel 函数的入口点。

pfnNegotiateAuthenticatedChannelKeyExchange

驱动程序的 NegotiateAuthenticatedChannelKeyExchange 函数的入口点。

pfnQueryAuthenticatedChannel

驱动程序的 QueryAuthenticatedChannel (D3D11_1) 函数的 入口点。

pfnConfigureAuthenticatedChannel

驱动程序的 ConfigureAuthenticatedChannel (D3D11_1) 函数的 入口点。

pfnVideoDecoderGetHandle

驱动程序的 VideoDecoderGetHandle 函数的入口点。

pfnCryptoSessionGetHandle

驱动程序的 CryptoSessionGetHandle 函数的入口点。

pfnVideoProcessorSetStreamRotation

驱动程序的 VideoProcessorSetStreamRotation 函数的入口点。

pfnGetCaptureHandle

驱动程序的 GetCaptureHandle 函数的入口点。

要求

要求
最低受支持的客户端 Windows 8
最低受支持的服务器 Windows Server 2012
标头 d3d10umddi.h (包括 D3d10umddi.h)