MFSetAttribute2UINT32asUINT64 函数 (mfapi.h)
将两个 UINT32 值打包到 UINT64 属性值中。
语法
HRESULT MFSetAttribute2UINT32asUINT64(
[in] IMFAttributes *pAttributes,
[in] REFGUID guidKey,
[in] UINT32 unHigh32,
[in] UINT32 unLow32
);
parameters
[in] pAttributes
指向属性存储的 IMFAttributes 接口的指针。
[in] guidKey
标识要设置的值的 GUID 。 如果此键已存在,则函数将覆盖旧值。
[in] unHigh32
要在 UINT64 值的高阶 32 位中存储的值。
[in] unLow32
要在 UINT64 值的低序 32 位中存储的值。
返回值
如果此函数成功,则返回 S_OK。 否则,将返回 HRESULT 错误代码。
注解
在内部,此函数调用 Pack2UINT32AsUINT64 来创建 64 位值,并调用 IMFAttributes::SetUINT64 来设置 属性。
要求
最低受支持的客户端 | Windows Vista [桌面应用 | UWP 应用] |
最低受支持的服务器 | Windows Server 2008 [桌面应用 | UWP 应用] |
目标平台 | Windows |
标头 | mfapi.h (包括 Mfapi.h) |