atributo MF_MT_FRAME_SIZE
Largura e altura de um quadro de vídeo, em pixels.
Tipo de dados
UINT64
Comentários
Os 32 bits superiores contêm a largura e os 32 bits inferiores contêm a altura.
Para definir esse atributo, use a função MFSetAttributeSize . Para obter esse atributo, use a função MFGetAttributeSize .
A constante GUID para esse atributo é exportada de mfuuid.lib.
Exemplos
// 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);
}
Requisitos
Requisito | Valor |
---|---|
Cliente mínimo com suporte |
Windows Vista [aplicativos da área de trabalho | Aplicativos UWP] |
Servidor mínimo com suporte |
Windows Server 2008 [aplicativos da área de trabalho | Aplicativos UWP] |
Cabeçalho |
|
Confira também