MF_MT_FRAME_SIZE属性

ビデオ フレームの幅と高さ (ピクセル単位)。

データ型

UINT64

解説

上位 32 ビットには幅が含まれており、下位 32 ビットには高さが含まれます。

この属性を設定するには、 MFSetAttributeSize 関数を使用します。 この属性を取得するには、 MFGetAttributeSize 関数を使用します。

この属性の GUID 定数は、mfuuid.lib からエクスポートされます。

// Helper function to set the frame size on a video media type.
inline HRESULT SetFrameSize(IMFMediaType *pType, UINT32 width, UINT32 height)
{
    return MFSetAttributeSize(pType, MF_MT_FRAME_SIZE, width, height);
}

// Helper function to get the frame size from a video media type.
inline HRESULT GetFrameSize(IMFMediaType *pType, UINT32 *pWidth, UINT32 *pHeight)
{
    return MFGetAttributeSize(pType, MF_MT_FRAME_SIZE, pWidth, pHeight);
}

必要条件

要件
サポートされている最小のクライアント
Windows Vista [デスクトップ アプリ |UWP アプリ]
サポートされている最小のサーバー
Windows Server 2008 [デスクトップ アプリ |UWP アプリ]
ヘッダー
Mfapi.h

関連項目

Media Foundation 属性のアルファベット順の一覧

IMFMediaType

メディアの種類の属性