├── .gitignore ├── DeckLink.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── DeckLink Debug.xcscheme ├── DeckLink ├── CMFormatDescription+DeckLink.h ├── CMFormatDescription+DeckLink.mm ├── DeckLink.h ├── DeckLinkAPI │ ├── DeckLinkAPI.h │ ├── DeckLinkAPIConfiguration.h │ ├── DeckLinkAPIDeckControl.h │ ├── DeckLinkAPIDiscovery.h │ ├── DeckLinkAPIDispatch.cpp │ ├── DeckLinkAPIModes.h │ ├── DeckLinkAPIStreaming.h │ ├── DeckLinkAPITypes.h │ └── DeckLinkAPIVersion.h ├── DeckLinkAudioConnection+Internal.h ├── DeckLinkAudioConnection+Internal.mm ├── DeckLinkAudioConnection.h ├── DeckLinkAudioConnection.m ├── DeckLinkDevice+Capture.h ├── DeckLinkDevice+Capture.mm ├── DeckLinkDevice+Devices.h ├── DeckLinkDevice+Devices.mm ├── DeckLinkDevice+Internal.h ├── DeckLinkDevice+Playback.h ├── DeckLinkDevice+Playback.mm ├── DeckLinkDevice+Status.h ├── DeckLinkDevice+Status.mm ├── DeckLinkDevice.h ├── DeckLinkDevice.mm ├── DeckLinkDeviceBrowser.h ├── DeckLinkDeviceBrowser.mm ├── DeckLinkDeviceBrowserInternalCallback.h ├── DeckLinkDeviceBrowserInternalCallback.mm ├── DeckLinkDeviceIODirection.h ├── DeckLinkDeviceInternalInputCallback.h ├── DeckLinkDeviceInternalInputCallback.mm ├── DeckLinkDeviceInternalOutputCallback.h ├── DeckLinkDeviceInternalOutputCallback.mm ├── DeckLinkInformation.h ├── DeckLinkInformation.mm ├── DeckLinkKeying.h ├── DeckLinkKeying.m ├── DeckLinkPixelBufferFrame.cpp ├── DeckLinkPixelBufferFrame.h ├── DeckLinkVideoConnection+Internal.h ├── DeckLinkVideoConnection+Internal.mm ├── DeckLinkVideoConnection.h ├── DeckLinkVideoConnection.m └── Info.plist ├── DeckLinkTests ├── DeckLink_001_APITests.m ├── DeckLink_011_InformationTests.m ├── DeckLink_021_DeviceBrowserTests.m ├── DeckLink_031_FormatDescriptionTests.mm ├── DeckLink_041_Capture.m ├── DeckLink_042_Playback.m └── Info.plist └── LICENSE.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/.gitignore -------------------------------------------------------------------------------- /DeckLink.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DeckLink.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DeckLink.xcodeproj/xcshareddata/xcschemes/DeckLink Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink.xcodeproj/xcshareddata/xcschemes/DeckLink Debug.xcscheme -------------------------------------------------------------------------------- /DeckLink/CMFormatDescription+DeckLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/CMFormatDescription+DeckLink.h -------------------------------------------------------------------------------- /DeckLink/CMFormatDescription+DeckLink.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/CMFormatDescription+DeckLink.mm -------------------------------------------------------------------------------- /DeckLink/DeckLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLink.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAPI/DeckLinkAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAPI/DeckLinkAPI.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAPI/DeckLinkAPIConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAPI/DeckLinkAPIConfiguration.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAPI/DeckLinkAPIDeckControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAPI/DeckLinkAPIDeckControl.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAPI/DeckLinkAPIDiscovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAPI/DeckLinkAPIDiscovery.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAPI/DeckLinkAPIDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAPI/DeckLinkAPIDispatch.cpp -------------------------------------------------------------------------------- /DeckLink/DeckLinkAPI/DeckLinkAPIModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAPI/DeckLinkAPIModes.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAPI/DeckLinkAPIStreaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAPI/DeckLinkAPIStreaming.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAPI/DeckLinkAPITypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAPI/DeckLinkAPITypes.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAPI/DeckLinkAPIVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAPI/DeckLinkAPIVersion.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAudioConnection+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAudioConnection+Internal.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAudioConnection+Internal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAudioConnection+Internal.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkAudioConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAudioConnection.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkAudioConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkAudioConnection.m -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice+Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice+Capture.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice+Capture.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice+Capture.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice+Devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice+Devices.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice+Devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice+Devices.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice+Internal.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice+Playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice+Playback.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice+Playback.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice+Playback.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice+Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice+Status.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice+Status.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice+Status.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDevice.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDevice.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkDeviceBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDeviceBrowser.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDeviceBrowser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDeviceBrowser.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkDeviceBrowserInternalCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDeviceBrowserInternalCallback.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDeviceBrowserInternalCallback.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDeviceBrowserInternalCallback.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkDeviceIODirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDeviceIODirection.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDeviceInternalInputCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDeviceInternalInputCallback.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDeviceInternalInputCallback.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDeviceInternalInputCallback.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkDeviceInternalOutputCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDeviceInternalOutputCallback.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkDeviceInternalOutputCallback.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkDeviceInternalOutputCallback.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkInformation.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkInformation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkInformation.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkKeying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkKeying.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkKeying.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkKeying.m -------------------------------------------------------------------------------- /DeckLink/DeckLinkPixelBufferFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkPixelBufferFrame.cpp -------------------------------------------------------------------------------- /DeckLink/DeckLinkPixelBufferFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkPixelBufferFrame.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkVideoConnection+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkVideoConnection+Internal.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkVideoConnection+Internal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkVideoConnection+Internal.mm -------------------------------------------------------------------------------- /DeckLink/DeckLinkVideoConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkVideoConnection.h -------------------------------------------------------------------------------- /DeckLink/DeckLinkVideoConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/DeckLinkVideoConnection.m -------------------------------------------------------------------------------- /DeckLink/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLink/Info.plist -------------------------------------------------------------------------------- /DeckLinkTests/DeckLink_001_APITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLinkTests/DeckLink_001_APITests.m -------------------------------------------------------------------------------- /DeckLinkTests/DeckLink_011_InformationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLinkTests/DeckLink_011_InformationTests.m -------------------------------------------------------------------------------- /DeckLinkTests/DeckLink_021_DeviceBrowserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLinkTests/DeckLink_021_DeviceBrowserTests.m -------------------------------------------------------------------------------- /DeckLinkTests/DeckLink_031_FormatDescriptionTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLinkTests/DeckLink_031_FormatDescriptionTests.mm -------------------------------------------------------------------------------- /DeckLinkTests/DeckLink_041_Capture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLinkTests/DeckLink_041_Capture.m -------------------------------------------------------------------------------- /DeckLinkTests/DeckLink_042_Playback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLinkTests/DeckLink_042_Playback.m -------------------------------------------------------------------------------- /DeckLinkTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/DeckLinkTests/Info.plist -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boinx/DeckLink/HEAD/LICENSE.txt --------------------------------------------------------------------------------