DirectShow过滤器未显示为输入捕获设备

时间:2018-03-11 16:40:12

标签: c++ directshow video-capture input-filter

从捕获源过滤器here的优秀示例开始,我编写了自己的输入捕获设备,可在Graph Studio Next中正常工作,但它在应用程序中未显示为捕获设备(即网络摄像头)喜欢Skype或类似的。

因为我想了解发生了什么,所以我请你帮助我找出那些应用程序需要显示这样的设备。

一些相关代码:

dll.cpp

DEFINE_GUID(CLSID_VirtualCam, 0x8e14549a, 0xdb61, 0x4309, 0xaf, 0xa1, 0x35, 0x78, 0xe9, 0x27, 0xe9, 0x33);

const AMOVIESETUP_MEDIATYPE AMSMediaTypesVideo = 
{
    &MEDIATYPE_Video,
    &MEDIASUBTYPE_NULL
};

const AMOVIESETUP_PIN AMSPinVCam[] =
{
    {
        L"Output",             // Pin string name
        FALSE,                 // Is it rendered
        TRUE,                  // Is it an output
        FALSE,                 // Can we have none
        FALSE,                 // Can we have many
        &CLSID_NULL,           // Connects to filter
        NULL,                  // Connects to pin
        1,                     // Number of types
        &AMSMediaTypesVideo      // Pin Media types
    }
};

const AMOVIESETUP_FILTER AMSFilterVCam =
{
    &CLSID_VirtualCam,  // Filter CLSID
    FILTER_NAME,     // String name
    MERIT_PREFERRED,      // Filter merit
    1,                     // Number pins
    AMSPinVCam             // Pin details
};

CFactoryTemplate g_Templates[] = 
{
    {
        FILTER_NAME,
        &CLSID_VirtualCam,
        CVCam::CreateInstance,
        NULL,
        &AMSFilterVCam
    },
};

Filter.cpp

CVCam::CVCam(LPUNKNOWN lpunk, HRESULT *phr) : CSource(LPCSTR(FILTER_NAME), lpunk, CLSID_VirtualCam)
{
    ASSERT(phr);
    CAutoLock cAutoLock(&m_cStateLock);
    m_paStreams = (CSourceStream **) new CVCamStream*[1];
    m_paStreams[0] = new CVCamStream(phr, this, FILTER_NAME);
}

HRESULT CVCam::QueryInterface(REFIID riid, void **ppv)
{
    if (riid == _uuidof(IAMStreamConfig) || riid == _uuidof(IKsPropertySet))
    {
        HRESULT hr;
        hr = m_paStreams[0]->QueryInterface(riid, ppv);
        if (hr != S_OK) return hr;
    }
    else return CSource::QueryInterface(riid, ppv);

    return S_OK;
}

CVCamStream::CVCamStream(HRESULT *phr, CVCam *pParent, LPCWSTR pPinName) : CSourceStream(LPCSTR(FILTER_NAME),phr, pParent, pPinName), m_pParent(pParent)
{
    hdc = GetDC(NULL);

    Gdiplus::GdiplusStartupInput gdiplusStartupInput;
    ULONG_PTR gdiplusToken;
    GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);

    screen_height = GetSystemMetrics(SM_CYVIRTUALSCREEN);
    screen_width = GetSystemMetrics(SM_CXVIRTUALSCREEN);

    GetMediaType(8, &m_mt);
}

CVCamStream::~CVCamStream()
{
    Gdiplus::GdiplusShutdown(gdiplusToken);
    DeleteDC(hdc);
} 

HRESULT CVCamStream::QueryInterface(REFIID riid, void **ppv)
{   
    if(riid == _uuidof(IAMStreamConfig)) *ppv = (IAMStreamConfig*)this;
    else if(riid == _uuidof(IKsPropertySet)) *ppv = (IKsPropertySet*)this;
    else return CSourceStream::QueryInterface(riid, ppv);

    AddRef();
    return S_OK;
}

我省略了与链接示例完全相同的其他函数,我想这些配置是在这些函数中进行的。

您是否看到我缺乏的任何证据导致滤镜无法被识别为视频捕捉设备?

当然过滤器已注册(我在DirectShow过滤器管理器中看到它)。

1 个答案:

答案 0 :(得分:2)

您所引用的DirectShow输入设备项目不是一个API,它可以将您的类似相机的实现设置为任何支持视频捕获的应用程序。不幸的是。

您开发的视频源仅对使用DirectShow API并且与您的过滤器具有匹配位数的应用程序消费者可见。即使有相当多的应用仍然使用DirectShow,它们的速率往往会随着时间的推移而慢慢下降。例如,新的Skype没有使用DirectShow,Skype for Business只是前Lync的一个新名称,这意味着在视频捕获方面与Skype几乎没有任何共享源代码。

我在这篇文章中有更多的技术细节:Applicability of Virtual DirectShow Sources,帖子中的图片应该说明你的视频源是哪些应用程序" viisble" (绿箱):

另见: