├── Makefile ├── README.md ├── test.c ├── v4l2loopback.c └── vm_dump_test ├── .cproject ├── .project ├── Makefile ├── Makefile_o ├── MediaSample.hpp ├── V4l2Capture.cpp ├── V4l2Capture.d ├── V4l2Capture.hpp ├── V4l2CaptureInterface.cpp ├── V4l2CaptureInterface.d ├── V4l2CaptureInterface.h ├── debugging.hpp ├── libzxwcapture.a ├── main.cpp ├── main.d ├── uvcvideo.h ├── vm.c └── yuy2_dump.bin /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/README.md -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/test.c -------------------------------------------------------------------------------- /v4l2loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/v4l2loopback.c -------------------------------------------------------------------------------- /vm_dump_test/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/.cproject -------------------------------------------------------------------------------- /vm_dump_test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/.project -------------------------------------------------------------------------------- /vm_dump_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/Makefile -------------------------------------------------------------------------------- /vm_dump_test/Makefile_o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/Makefile_o -------------------------------------------------------------------------------- /vm_dump_test/MediaSample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/MediaSample.hpp -------------------------------------------------------------------------------- /vm_dump_test/V4l2Capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/V4l2Capture.cpp -------------------------------------------------------------------------------- /vm_dump_test/V4l2Capture.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/V4l2Capture.d -------------------------------------------------------------------------------- /vm_dump_test/V4l2Capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/V4l2Capture.hpp -------------------------------------------------------------------------------- /vm_dump_test/V4l2CaptureInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/V4l2CaptureInterface.cpp -------------------------------------------------------------------------------- /vm_dump_test/V4l2CaptureInterface.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/V4l2CaptureInterface.d -------------------------------------------------------------------------------- /vm_dump_test/V4l2CaptureInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/V4l2CaptureInterface.h -------------------------------------------------------------------------------- /vm_dump_test/debugging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/debugging.hpp -------------------------------------------------------------------------------- /vm_dump_test/libzxwcapture.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/libzxwcapture.a -------------------------------------------------------------------------------- /vm_dump_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/main.cpp -------------------------------------------------------------------------------- /vm_dump_test/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/main.d -------------------------------------------------------------------------------- /vm_dump_test/uvcvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/uvcvideo.h -------------------------------------------------------------------------------- /vm_dump_test/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icefreedom/v4l2virtualdevice_android/HEAD/vm_dump_test/vm.c -------------------------------------------------------------------------------- /vm_dump_test/yuy2_dump.bin: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------