共用方式為


IMFExtendedCameraControl::GetFlags 方法 (mfidl.h)

查詢擷取裝置上的屬性旗標。

Syntax

ULONGLONG GetFlags();

傳回值

ULONGLONG 對應至屬性旗標。 支援的屬性和旗標定義在 ksmedia.h 中定義的頭檔中,做為具有命名慣例的常數 KSCAMERA_EXTENDEDPROP_。 如需詳細資訊,請參閱 KSPROPERTYSETID_ExtendedCameraControl

備註

呼叫 IMFExtendedCameraControl::SetFlags,在擷取裝置上設定屬性旗標。 設定屬性旗標之前,您可以呼叫 IMFExtendedCameraControl::GetCapabilities 來檢查支援的功能。 下列範例示範 KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON功能的查詢 支援。

if (FAILED(m_cameraController->GetExtendedCameraControl(MF_CAPTURE_ENGINE_MEDIASOURCE,
    KSPROPERTY_CAMERACONTROL_EXTENDED_TORCHMODE,
    cameraControl.put())))
{
    // Return false to indicate that the Torch Mode control is not available.
    return false;
}

ULONGLONG capabilities = cameraControl->GetCapabilities();

// Check if the torch can be turned on.
if (capabilities & KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON)
{
    // Check if the torch is off.
    if ((cameraControl->GetFlags() & KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON) == 0)
    {
        // Torch is off. Tell the camera to turn it on.
        check_hresult(cameraControl->SetFlags(KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON));
        // Write the changed settings to the driver.
        check_hresult(cameraControl->CommitSettings());
    }
}

規格需求

需求
最低支援的用戶端 Windows 10 組建 20348
最低支援的伺服器 Windows 10 組建 20348
標頭 mfidl.h