videoInput icon indicating copy to clipboard operation
videoInput copied to clipboard

A video capture library for windows.

Results 25 videoInput issues
Sort by recently updated
recently updated
newest added

Has anyone seen this? (Windows 10, C++ MFC, 64 bit machine but 32 bit VS 2013) ---- Only with Logitech webcams. I have several other cameras (PTZOptics and several ELP...

The video Capture freezes while trying to Stop pControl. ``` //Check to see if the graph is running, if so stop it. if ((pControl)) { HR = pControl->Pause(); if (FAILED(HR))...

I have added a structure and two functions to be able to list the video sub-types and the sizes supported by the sub-types.

I was experiencing freezes using the Unibrain Fire-i Board BW FireWire camera. After adding logging and testing start/acquire/stop for 24 hours I determined the filter graph as configured is incompatible...

Hello, I need to make a slight tweak to use the device path as the name of a USB camera and not the friendly name. I found where this is...

the method `videoInput::getDeviceIDFromName(char * name)` is implemented incorrectly. It is comparing two pointers (char*) instead of strings. Is order to solve this, simply use the c function `strcmp(char*,char*)` like so:...

when comparing c-type strings in videoInput::getDeviceIDFromName (videoInput.cpp, line 808) you should use strcmp, not operator ==

Hi, Is it possible to build the library with 64 bit support ? I'm on Windows XP 64bit with Visual Studio. Thanks for this library !

At the videoInput::comInit, https://github.com/ofTheo/videoInput/blob/master/videoInputSrcAndDemos/libs/videoInput/videoInput.cpp#L1451 `comUnInit()` does not check whether the previous `CoInitializeEx` call in `comInit()` is failed or succeeded to call `CoUninitialize`. If the `CoInitializeEx` is failed because thread mode...

The pixel depth is always assumed to be 3, which is the reason why in my case (MS LifeCam, only supporting YUY2 formats) setSizeAndSubtype ALWAYS fails, even when findClosestSizeAndSubtypes was...