├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Library ├── EGAVDevice.h ├── EGAVHID.h ├── EGAVResult.cpp ├── EGAVResult.h ├── ElgatoUVCDevice.cpp ├── ElgatoUVCDevice.h ├── HDMIInfoFramesAPI.h ├── mac │ ├── EGAVHIDImplementation.cpp │ └── EGAVHIDImplementation.h └── win │ ├── EGAVHIDImplementation.cpp │ └── EGAVHIDImplementation.h ├── SampleCode ├── DriverInterface.cpp ├── DriverInterface.h └── main.cpp └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/LICENSE -------------------------------------------------------------------------------- /Library/EGAVDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/EGAVDevice.h -------------------------------------------------------------------------------- /Library/EGAVHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/EGAVHID.h -------------------------------------------------------------------------------- /Library/EGAVResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/EGAVResult.cpp -------------------------------------------------------------------------------- /Library/EGAVResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/EGAVResult.h -------------------------------------------------------------------------------- /Library/ElgatoUVCDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/ElgatoUVCDevice.cpp -------------------------------------------------------------------------------- /Library/ElgatoUVCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/ElgatoUVCDevice.h -------------------------------------------------------------------------------- /Library/HDMIInfoFramesAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/HDMIInfoFramesAPI.h -------------------------------------------------------------------------------- /Library/mac/EGAVHIDImplementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/mac/EGAVHIDImplementation.cpp -------------------------------------------------------------------------------- /Library/mac/EGAVHIDImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/mac/EGAVHIDImplementation.h -------------------------------------------------------------------------------- /Library/win/EGAVHIDImplementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/win/EGAVHIDImplementation.cpp -------------------------------------------------------------------------------- /Library/win/EGAVHIDImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/Library/win/EGAVHIDImplementation.h -------------------------------------------------------------------------------- /SampleCode/DriverInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/SampleCode/DriverInterface.cpp -------------------------------------------------------------------------------- /SampleCode/DriverInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/SampleCode/DriverInterface.h -------------------------------------------------------------------------------- /SampleCode/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/SampleCode/main.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elgatosf/capture-device-support/HEAD/readme.md --------------------------------------------------------------------------------