├── .gitignore ├── Makefile ├── README.md └── capturev4l2.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.jpg 3 | capturev4l2 4 | .vscode/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/capturev4l2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/capturev4l2/HEAD/README.md -------------------------------------------------------------------------------- /capturev4l2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhanstudio/capturev4l2/HEAD/capturev4l2.cpp --------------------------------------------------------------------------------