├── .DS_Store ├── .vscode └── settings.json ├── LICENSE ├── PixelFormatConverter.cpp ├── README.md ├── Third Party License ├── download_NDI_SDK.sh ├── easy-install-rpi-aarch64.sh ├── easy-install-rpi-armhf.sh ├── easy-install-x86_64.sh ├── edid.txt ├── fix-edid.service ├── handle_NDI_Advanced_SDK.sh ├── include ├── .DS_Store ├── PixelFormatConverter.h └── VideoDataStructures.h ├── install-edid.sh ├── install.sh ├── main.cpp ├── preinstall.sh └── v4l2ndi_csi.service /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/.DS_Store -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/LICENSE -------------------------------------------------------------------------------- /PixelFormatConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/PixelFormatConverter.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/README.md -------------------------------------------------------------------------------- /Third Party License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/Third Party License -------------------------------------------------------------------------------- /download_NDI_SDK.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/download_NDI_SDK.sh -------------------------------------------------------------------------------- /easy-install-rpi-aarch64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/easy-install-rpi-aarch64.sh -------------------------------------------------------------------------------- /easy-install-rpi-armhf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/easy-install-rpi-armhf.sh -------------------------------------------------------------------------------- /easy-install-x86_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/easy-install-x86_64.sh -------------------------------------------------------------------------------- /edid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/edid.txt -------------------------------------------------------------------------------- /fix-edid.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/fix-edid.service -------------------------------------------------------------------------------- /handle_NDI_Advanced_SDK.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/handle_NDI_Advanced_SDK.sh -------------------------------------------------------------------------------- /include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/include/.DS_Store -------------------------------------------------------------------------------- /include/PixelFormatConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/include/PixelFormatConverter.h -------------------------------------------------------------------------------- /include/VideoDataStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/include/VideoDataStructures.h -------------------------------------------------------------------------------- /install-edid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/install-edid.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/install.sh -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/main.cpp -------------------------------------------------------------------------------- /preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/preinstall.sh -------------------------------------------------------------------------------- /v4l2ndi_csi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lplassman/V4L2-to-NDI/HEAD/v4l2ndi_csi.service --------------------------------------------------------------------------------