CBaseControlVideo.GetTargetRect 方法
[與此頁面相關的功能 DirectShow是舊版功能。 它已被 MediaPlayer、 IMFMediaEngine和 Media Foundation 中的音訊/視訊擷取取代。 這些功能已針對Windows 10和Windows 11進行優化。 Microsoft 強烈建議新程式碼盡可能使用 MediaPlayer、 IMFMediaEngine 和 音訊/視訊擷取 ,而不是 DirectShow。 Microsoft 建議使用舊版 API 的現有程式碼盡可能重寫為使用新的 API。
方法會 GetTargetRect
擷取目的地矩形。 這是內部協助程式成員函式。
語法
virtual HRESULT GetTargetRect(
RECT *pTargetRect
) = 0;
參數
-
pTargetRect
-
目的地矩形的指標。
傳回值
傳回 HRESULT 值。
備註
這個成員函式必須在衍生類別中覆寫,才能傳回影片轉譯器所持有的目標矩形。 它會從下列 CBaseControlVideo 成員函式呼叫。
- CBaseControlVideo::GetDestinationPosition
- CBaseControlVideo::p ut_DestinationLeft
- CBaseControlVideo::get_DestinationLeft
- CBaseControlVideo::p ut_DestinationWidth
- CBaseControlVideo::get_DestinationWidth
- CBaseControlVideo::p ut_DestinationTop
- CBaseControlVideo::get_DestinationTop
- CBaseControlVideo::p ut_DestinationHeight
- CBaseControlVideo::get_DestinationHeight
下列範例示範衍生類別中這個函式的實作。
// Return the current destination rectangle.
HRESULT CVideoText::GetTargetRect(RECT *pTargetRect)
{
ASSERT(pTargetRect);
m_pRenderer->m_DrawImage.GetTargetRect(pTargetRect);
return NOERROR;
}
在此範例中,CVideoText 是衍生自 CBaseControlVideo的類別,m_pRenderer保存衍生自 CBaseVideoRenderer之類別的物件,以及衍生類別中定義的m_DrawImage資料成員,會保存 CDrawImage 物件。
規格需求
需求 | 值 |
---|---|
標頭 |
|
程式庫 |
|