是什么导致pMoniker

是什么导致pMoniker

捕获设备有效,但是我无法将其绑定(bind)。 800703E8通常表示过滤器未注册。赢10-64

        if (SUCCEEDED(hr))
            {
                char tempDevicePathUTF8[256];
                memset(tempDevicePathUTF8,0,256);
                tempDevicePathUTF8[0] = 0;
                WideCharToMultiByte(CP_UTF8, 0, varName.bstrVal, -1,
                                    tempDevicePathUTF8,
                                    sizeof(tempDevicePathUTF8), NULL,
                                    NULL);
                if (strncmp(tempDevicePathUTF8,
                            (const char*) deviceUniqueIdUTF8,
                            deviceUniqueIdUTF8Length) == 0)
                {
                    // We have found the requested device
                    deviceFound = true;
                    hr = pM->BindToObject(0, 0, IID_IBaseFilter,
                                          (void**) &captureFilter);
                    if FAILED(hr)
                    {
                        WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture,
                                     _id, "Failed to bind to the selected capture device %d",hr);
                    }

                    if (productUniqueIdUTF8
                        && productUniqueIdUTF8Length > 0) // Get the device name
                    {

                        GetProductId(deviceUniqueIdUTF8,
                                     productUniqueIdUTF8,
                                     productUniqueIdUTF8Length);
                    }

                }
            }

这是webrtc中常见的捕获步骤,可以在大多数计算机中很好地执行,但是这一特定操作不能。

最佳答案

0x800700C1ERROR_BAD_EXE_FORMAT,它指示捕获设备有问题(即使您认为它是有效的)。一个典型的问题是,该设备已为32位应用程序正确注册,但没有为64位应用程序注册(反之亦然)。无论哪种方式,这都是特定DirectShow筛选器的COM注册问题。

关于c++ - 是什么导致pMoniker-> BindToObject返回800700c1,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39928338/

10-12 02:08